This document lists the exploratory data analysis, model build and analysis for Coasting on Couches, the term project for MGT 6203 Spring semester. Whilst the project document and slides/ presentation list a more human-readable version, this document combines some exposition with a lot of code to generate graphs, to put it simply.
The document will be shared as a Shiny app and in the raw RMd format.
Please run the following chunk to ensure all the necessary libraries are installed/ present should you wish to execute the chunks at your end. (Idea taken from this blogpost)
@XY, ZZ, WL: Please include this citation in our report: Hlavac, Marek (2022). stargazer: Well-Formatted Regression and Summary Statistics Tables. R package version 5.2.3. https://CRAN.R-project.org/package=stargazer
We had downloaded data from InsideAirbnb.com to the data folder. This will be available on our GitHub repo.
The data is in four parts (each city has all five elements): 1. listing: These are the actual Airbnb listings. The columns are defined here. This is set of 74 variables pertaining to a specific listing. 2. review: List of reviews per row in the listing table. 3. calendar: Price of a particular listing on a particular date, along with min-max nights for hire 4. neighbourhoods: List of neighbourhoods screened in the city 5. map: GeoJson shapefile showing district boundaries.
We will read all the data into dataset variables.
#Singapore
listing.sin <- read.csv("./data/SIN_listings.csv")
reviews.sin <- read.csv("./data/SIN_reviews.csv")
calendar.sin <- read.csv("./data/SIN_calendar.csv")
neighbourhoods.sin <- read.csv("./data/SIN_neighbourhoods.csv")
map.sin <- geojson_read("./data/SIN_neighbourhoods.geojson")
#Taipei
listing.tpe <- read.csv("./data/TPE_listings.csv")
reviews.tpe <- read.csv("./data/TPE_reviews.csv")
calendar.tpe <- read.csv("./data/TPE_calendar.csv")
neighbourhoods.tpe <- read.csv("./data/TPE_neighbourhoods.csv")
map.tpe <- geojson_read("./data/TPE_neighbourhoods.geojson")
#Tokyo
listing.nrt <- read.csv("./data/NRT_listings.csv")
reviews.nrt <- read.csv("./data/NRT_reviews.csv")
calendar.nrt <- read.csv("./data/NRT_calendar.csv")
neighbourhoods.nrt <- read.csv("./data/NRT_neighbourhoods.csv")
map.nrt <- geojson_read("./data/NRT_neighbourhoods.geojson")
#Hong Kong
listing.hkg <- read.csv("./data/HKG_listings.csv")
reviews.hkg <- read.csv("./data/HKG_reviews.csv")
calendar.hkg <- read.csv("./data/HKG_calendar.csv")
neighbourhoods.hkg <- read.csv("./data/HKG_neighbourhoods.csv")
map.hkg <- geojson_read("./data/HKG_neighbourhoods.geojson")
We first see the number of listings per city.
cities <- c("Singapore", "Tokyo", "Taipei", "Hong Kong")
no_of_listings <- c(nrow(listing.sin), nrow(listing.nrt), nrow(listing.tpe), nrow(listing.hkg))
no_of_listings.fig <- plot_ly(
x = cities,
y = no_of_listings,
type = "bar",
text = no_of_listings
)
no_of_listings.fig <- no_of_listings.fig %>% layout(title ="No of Listings Per City", yaxis = list(title="No of Listings"))
no_of_listings.fig
Clearly, Tokyo has the largest number of listings followed by Hong Kong, Taipei and then Singapore.
Let us also consider heatmaps of where the listings are in each city by neighbourhood. Admittedly, the InsideAirbnb website has a map for each city (here’s one for Taipei), but this does not show by district. At a later stage, this can be enhanced to see by variable or time-series.
generate_choropleth_by_city <- function (listing, map, city_name)
{
listings_by_neighbourhood <- listing %>%
count(neighbourhood_cleansed)
# neighbourhoods_zero <- neighbourhoods %>%
# filter(!neighbourhood %in% listings_by_neighbourhood$neighbourhood) %>%
# mutate(n = 0) %>%
# select(neighbourhood, n)
# listings_by_neighbourhood <- union(listings_by_neighbourhood, neighbourhoods_zero)
# print(listings_by_neighbourhood)
g <- list (
fitbounds = "locations",
visible = FALSE
)
fig <- plot_ly()
fig <- fig %>% add_trace(
type="choropleth",
geojson=map,
locations=listings_by_neighbourhood$neighbourhood_cleansed,
z=listings_by_neighbourhood$n,
colorscale="jet",
featureidkey="properties.neighbourhood"
)
fig <- fig %>% layout(
geo = g
)
fig <- fig %>% colorbar(title = "No of listings")
fig <- fig %>% layout(
title = paste0("Listings by Neighbourhood - ", city_name)
)
fig
}
generate_choropleth_by_city(listing.sin, map.sin, "Singapore")
generate_choropleth_by_city(listing.nrt, map.nrt, "Tokyo")
generate_choropleth_by_city(listing.hkg, map.hkg, "Hong Kong")
generate_choropleth_by_city(listing.tpe, map.tpe, "Taipei")
We could also see this as barcharts.
bar_charts_by_neighbourhood <- function (listing, city_name, neighbourhoods)
{
listings_by_neighbourhood <- listing %>%
count(neighbourhood_cleansed) %>%
# rename(neighbourhood = neighbourhood_cleansed)
arrange(desc(n))
# print(listings_by_neighbourhood)
neighbourhoods_zero <- neighbourhoods %>%
filter(!neighbourhood %in% listings_by_neighbourhood$neighbourhood_cleansed) %>%
rename(neighbourhood_cleansed = neighbourhood) %>%
mutate(n = 0) %>%
select(neighbourhood_cleansed, n)
print(neighbourhoods_zero)
listings_by_neighbourhood <- union(listings_by_neighbourhood, neighbourhoods_zero)
# print(listings_by_neighbourhood)
fig<- plot_ly(y=listings_by_neighbourhood$neighbourhood_cleansed, x=listings_by_neighbourhood$n, type="bar", orientation="h") %>%
layout(yaxis=list(categoryorder = "total ascending"), title=paste("Listings per neighbourhood in", city_name))
fig
}
bar_charts_by_neighbourhood(listing.sin, "Singapore", neighbourhoods.sin)
## neighbourhood_cleansed n
## 1 Marina East 0
## 2 Straits View 0
## 3 Changi 0
## 4 Changi Bay 0
## 5 Paya Lebar 0
## 6 North-Eastern Islands 0
## 7 Seletar 0
## 8 Simpang 0
## 9 Boon Lay 0
## 10 Tengah 0
## 11 Western Islands 0
bar_charts_by_neighbourhood(listing.nrt, "Tokyo", neighbourhoods.nrt)
## neighbourhood_cleansed n
## 1 Aogashima Mura 0
## 2 Fussa Shi 0
## 3 Hachijo Machi 0
## 4 Higashiyamato Shi 0
## 5 Hinode Machi 0
## 6 Hinohara Mura 0
## 7 Inagi Shi 0
## 8 Kiyose Shi 0
## 9 Kozushima Mura 0
## 10 Mikurajima Mura 0
## 11 Miyake Mura 0
## 12 Mizuho Machi 0
## 13 Niijima Mura 0
## 14 Ogasawara Mura 0
## 15 Oshima Machi 0
## 16 Toshima Mura 0
bar_charts_by_neighbourhood(listing.hkg, "Hong Kong", neighbourhoods.hkg)
## [1] neighbourhood_cleansed n
## <0 rows> (or 0-length row.names)
bar_charts_by_neighbourhood(listing.tpe, "Taipei", neighbourhoods.tpe)
## [1] neighbourhood_cleansed n
## <0 rows> (or 0-length row.names)
The majority of listings in Taipei, Tokyo and Hong Kong are in tourist-heavy districts. While the top district in Tokyo is Shinjuku, that in Hong Kong is Yau Tsim Mong, Kowloon’s core urban area formed by the combination of Yau Ma Tei, Tsim Sha Tsui and Mong Kok. Taipei’s top district is Zhongzheng district (“中正區”), consisting of historic sites and cultural performances.
In contrast to the other three cities, the top district in Singapore is the high-end residential condo district, Kallang. Not tourist heavy, but close to the downtown’s many attractions. The tourist-heavy Geylang, Downtown Core and Outram districts appear after Kallang.
Taipei and Hong Kong have listings in all districts. But 11 districts in Singapore (mostly military installations or the airport) and 16 districts in Tokyo do not have any listings.
There’s a column called amenities in the dataset that appears to list all the self-reported amenities in the listing as a single comma-separated list. Let’s try to see this further.
For instance, here’s the longest list of amenities among Singapore listings.
listing_amenities.sin <- listing.sin %>%
mutate(amenities = str_replace(amenities, "\\[","")) %>%
mutate(amenities = str_replace(amenities, "\\]","")) %>%
mutate(amenities = str_replace_all(amenities, "\"","")) %>%
mutate(amenities = str_replace_all(amenities, ", " ,",")) %>%
mutate(amenities_list = as.list(strsplit(amenities, ","))) %>%
mutate(no_of_am = lengths(amenities_list)) %>%
mutate(Wifi = as.numeric(grepl('Wifi', amenities, fixed = TRUE))) %>%
mutate(Shampoo = as.numeric(grepl('Shampoo', amenities, fixed = TRUE))) %>%
mutate(Kitchen = as.numeric(grepl('Kitchen', amenities, fixed = TRUE)))
# listing_amenities.sin %>% select(amenities, Wifi, Shampoo, Kitchen, Patio)
max_amenities.sin <- listing_amenities.sin %>%
select(amenities, no_of_am) %>%
group_by() %>%
slice(which.max(no_of_am))
amenities_list_string <- as.list(strsplit(as.character(max_amenities.sin["amenities"]), ","))
amenities_list_string
## [[1]]
## [1] "Toaster" "Sound system"
## [3] "Safe" "Indoor fireplace"
## [5] "Backyard" "Hangers"
## [7] "Bed linens" "Hot water kettle"
## [9] "Freezer" "Coffee maker"
## [11] "Washer" "Cooking basics"
## [13] "Bathtub" "Hair dryer"
## [15] "Clothing storage" "Oven"
## [17] "Outdoor furniture" "Paid parking on premises"
## [19] "High chair" "Children\\u2019s books and toys"
## [21] "Dedicated workspace" "Crib"
## [23] "Dining table" "Free parking on premises"
## [25] "Pool" "Cleaning products"
## [27] "Wine glasses" "Cleaning before checkout"
## [29] "Game console" "Long term stays allowed"
## [31] "Drying rack for clothing" "Outdoor dining area"
## [33] "Private entrance" "Elevator"
## [35] "Patio or balcony" "Refrigerator"
## [37] "Dryer" "Microwave"
## [39] "Baby bath" "Gym"
## [41] "Wifi" "Children\\u2019s dinnerware"
## [43] "Smoke alarm" "Board games"
## [45] "Luggage dropoff allowed" "Shampoo"
## [47] "Breakfast" "Extra pillows and blankets"
## [49] "Heating" "Conditioner"
## [51] "Cable TV" "Hot tub"
## [53] "Hot water" "Stove"
## [55] "Body soap" "BBQ grill"
## [57] "Iron" "Essentials"
## [59] "Babysitter recommendations" "Pack \\u2019n play/Travel crib"
## [61] "Kitchen" "Changing table"
## [63] "First aid kit" "Dishes and silverware"
## [65] "Air conditioning" "Shower gel"
## [67] "TV with standard cable" "Fire extinguisher"
#"Shampoo,Kitchen,Long term stays allowed,Washer,Smart lock,Hair dryer,Dryer,Wifi,Hot water,TV,Air conditioning,Smoke alarm,Fire extinguisher"
Apropos nothing, we will use the following amenities as dummy variables for price: > “Shampoo,Kitchen,Long term stays allowed,Washer,Hair dryer,Wifi,Hot water,TV,Air conditioning”
Similarly, let us also further analyse the column host_verifications to see if we can generate dummy variables from there as well.
listing_host_verf.sin <- listing.sin %>%
mutate(host_verifications = str_replace(host_verifications, "\\[","")) %>%
mutate(host_verifications = str_replace(host_verifications, "\\]","")) %>%
mutate(host_verifications = str_replace_all(host_verifications, "\"","")) %>%
mutate(host_verifications = str_replace_all(host_verifications, ", " ,",")) %>%
mutate(host_verifications_list = as.list(strsplit(host_verifications, ","))) %>%
mutate(no_of_vf = lengths(host_verifications_list))
max_verf.sin <- listing_host_verf.sin %>%
select(host_verifications, no_of_vf) %>%
group_by() %>%
slice(which.max(no_of_vf))
host_verf_list_string <- as.list(strsplit(as.character(max_verf.sin["host_verifications"]), ","))
host_verf_list_string
## [[1]]
## [1] "'email'" "'phone'"
## [3] "'facebook'" "'google'"
## [5] "'reviews'" "'jumio'"
## [7] "'offline_government_id'" "'selfie'"
## [9] "'government_id'" "'identity_manual'"
## [11] "'work_email'"
Let’s take this list to generate dummy variables. > [‘email’, ‘phone’, ‘facebook’, ‘reviews’, ‘manual_offline’, ‘jumio’, ‘offline_government_id’, ‘government_id’, ‘work_email’]
Let’s generalise these two bits for all cities and create dummy variables for each one of them.
wrangle_amenities_hostvf <- function (listing)
{
listing <- listing %>%
mutate(amenities = str_replace(amenities, "\\[","")) %>%
mutate(amenities = str_replace(amenities, "\\]","")) %>%
mutate(amenities = str_replace_all(amenities, "\"","")) %>%
mutate(amenities = str_replace_all(amenities, ", " ,",")) %>%
mutate(amenities_list = as.list(strsplit(amenities, ","))) %>%
mutate(no_of_am = lengths(amenities_list)) %>%
mutate(Amenities_Wifi = as.numeric(grepl('Wifi', amenities, fixed = TRUE))) %>%
mutate(Amenities_Shampoo = as.numeric(grepl('Shampoo', amenities, fixed = TRUE))) %>%
mutate(Amenities_Kitchen = as.numeric(grepl('Kitchen', amenities, fixed = TRUE))) %>%
mutate(Amenities_Long_Term = as.numeric(grepl('Long term stays', amenities, fixed = TRUE))) %>%
mutate(Amenities_Washer = as.numeric(grepl('Washer', amenities, fixed = TRUE))) %>%
mutate(Amenities_HairDryer = as.numeric(grepl('Hair dryer', amenities, fixed = TRUE))) %>%
mutate(Amenities_HotWater = as.numeric(grepl('Hot water', amenities, fixed = TRUE))) %>%
mutate(Amenities_TV = as.numeric(grepl('TV', amenities, fixed = TRUE))) %>%
mutate(Amenities_AC = as.numeric(grepl('Air conditioning', amenities, fixed = TRUE))) %>%
mutate(host_verifications = str_replace(host_verifications, "\\[","")) %>%
mutate(host_verifications = str_replace(host_verifications, "\\]","")) %>%
mutate(host_verifications = str_replace_all(host_verifications, "\"","")) %>%
mutate(host_verifications = str_replace_all(host_verifications, ", " ,",")) %>%
mutate(host_verifications_list = as.list(strsplit(host_verifications, ","))) %>%
mutate(hv_email = as.numeric(grepl('email', host_verifications, fixed = TRUE))) %>%
mutate(hv_phone = as.numeric(grepl('phone', host_verifications, fixed = TRUE))) %>%
mutate(hv_facebook = as.numeric(grepl('facebook', host_verifications, fixed = TRUE))) %>%
mutate(hv_reviews = as.numeric(grepl('reviews', host_verifications, fixed = TRUE))) %>%
mutate(hv_manual_offline = as.numeric(grepl('manual_offline', host_verifications, fixed = TRUE))) %>%
mutate(hv_manual_jumio = as.numeric(grepl('jumio', host_verifications, fixed = TRUE))) %>%
mutate(hv_manual_off_gov = as.numeric(grepl('offline_government_id', host_verifications, fixed = TRUE))) %>%
mutate(hv_manual_gov = as.numeric(grepl('government_id', host_verifications, fixed = TRUE))) %>%
mutate(hv_manual_work_email = as.numeric(grepl('work_email', host_verifications, fixed = TRUE))) %>%
mutate(no_of_vf = lengths(host_verifications_list))
}
listing.sin <- wrangle_amenities_hostvf(listing.sin)
listing.nrt <- wrangle_amenities_hostvf(listing.nrt)
listing.tpe <- wrangle_amenities_hostvf(listing.tpe)
listing.hkg <- wrangle_amenities_hostvf(listing.hkg)
This is a function that wrangles AirBnb data into an analysable chunk. Because we will be doing the same for multiple cities, we will do a function out of this. The function is based on top of code shared in the lecture for Module 2. The obvious additions are the id column, neighbourhoods and dummy variables for amenities and host verification.
wrangle_airbnb_dataset <- function (raw_listing_full)
{
listing.raw <- raw_listing_full %>%
select(id, price,number_of_reviews,beds,bathrooms,accommodates,reviews_per_month, property_type, room_type, review_scores_rating, neighbourhood_cleansed, host_response_time, host_response_rate, host_acceptance_rate, host_is_superhost, latitude, longitude, amenities, last_review, no_of_am, Amenities_Wifi, Amenities_Shampoo, Amenities_Kitchen, Amenities_Long_Term, Amenities_Washer, Amenities_HairDryer, Amenities_HotWater, Amenities_TV,Amenities_AC, host_verifications, hv_email,hv_phone, hv_facebook, hv_reviews, hv_manual_offline, hv_manual_jumio,hv_manual_off_gov, hv_manual_gov, hv_manual_work_email, no_of_vf) %>%
rename(Reviews = number_of_reviews) %>%
rename(Beds = beds) %>%
rename(Baths = bathrooms) %>%
rename(Capacity = accommodates) %>%
rename(Monthly_Reviews = reviews_per_month) %>%
rename(Property_Type = property_type) %>%
rename(Room_Type = room_type) %>%
rename(Price = price) %>%
rename(Rating = review_scores_rating) %>%
rename(Neighbourhood = neighbourhood_cleansed) %>%
rename(host_Superhost = host_is_superhost)
listing.raw <- listing.raw %>%
mutate(Price = str_replace(Price, "[$]", "")) %>%
mutate(Price = str_replace(Price, "[,]", "")) %>%
mutate(Price = as.numeric(Price)) %>%
mutate(host_response_rate = str_replace(host_response_rate, "[%]", "")) %>%
mutate(host_response_rate = as.numeric(host_response_rate)/100) %>%
mutate(host_acceptance_rate = str_replace(host_acceptance_rate, "[%]", "")) %>%
mutate(host_acceptance_rate = as.numeric(host_acceptance_rate)/100) %>%
mutate(host_Superhost = ifelse(host_Superhost =="f", 0, 1)) %>%
mutate(host_response_rate = factor(host_response_rate, levels = c("within a few hours", "within a day", "a few days or more"))) %>%
mutate(host_response_hours = ifelse(host_response_rate == "within a few hours"),1,0) %>%
mutate(host_response_day = ifelse(host_response_rate == "within a day"),1,0) %>%
mutate(host_response_few_days = ifelse(host_response_rate == "a few days or more"),1,0) %>%
mutate(last_review = as.Date(last_review)) %>%
mutate(Days_since_last_review = as.numeric(difftime(as.Date("2021-12-31"), last_review, units="days"))) %>%
mutate(Room_Type = factor(Room_Type, levels = c("Shared room", "Private room", "Entire home/apt"))) %>%
mutate(Capacity_Sqr = Capacity * Capacity) %>%
mutate(Beds_Sqr = Beds * Beds) %>%
mutate(Baths_Sqr = Baths * Baths) %>%
mutate(ln_Price = log(1+Price)) %>%
mutate(ln_Beds = log(1+Beds)) %>%
mutate(ln_Baths = log(1+Baths)) %>%
mutate(ln_Capacity = log(1+Capacity)) %>%
mutate(ln_Rating = log(1+Rating)) %>%
mutate(Shared_ind = ifelse(Room_Type == "Shared room",1,0)) %>%
mutate(House_ind = ifelse(Room_Type == "Entire home/apt",1,0)) %>%
mutate(Private_ind = ifelse(Room_Type == "Private room",1,0)) %>%
mutate(Capacity_x_Shared_ind = Shared_ind * Capacity) %>%
mutate(H_Cap = House_ind * Capacity) %>%
mutate(P_Cap = Private_ind * Capacity) %>%
mutate(ln_Capacity_x_Shared_ind = Shared_ind * ln_Capacity) %>%
mutate(ln_Capacity_x_House_ind = House_ind * ln_Capacity) %>%
mutate(ln_Capacity_x_Private_ind = Private_ind * ln_Capacity) %>%
filter(!is.na(Price))
return(listing.raw)
}
list.sin <- wrangle_airbnb_dataset(listing.sin)
## Warning in mask$eval_all_mutate(quo): NAs introduced by coercion
## Warning in mask$eval_all_mutate(quo): NAs introduced by coercion
list.nrt <- wrangle_airbnb_dataset(listing.nrt)
## Warning in mask$eval_all_mutate(quo): NAs introduced by coercion
## Warning in mask$eval_all_mutate(quo): NAs introduced by coercion
## Warning in mask$eval_all_mutate(quo): NAs introduced by coercion
list.tpe <- wrangle_airbnb_dataset(listing.tpe)
## Warning in mask$eval_all_mutate(quo): NAs introduced by coercion
## Warning in mask$eval_all_mutate(quo): NAs introduced by coercion
list.hkg <- wrangle_airbnb_dataset(listing.hkg)
## Warning in mask$eval_all_mutate(quo): NAs introduced by coercion
## Warning in mask$eval_all_mutate(quo): NAs introduced by coercion
There’s value in understanding how many reviews a property has received in the last 12 months. We check this by wrangling the review dataset.
count_reviews <- function(listings, reviews, from_date, to_date)
{
reviews_grouped <- reviews %>%
mutate(date = as.Date(date)) %>%
filter(between(date, as.Date(from_date), as.Date(to_date))) %>%
group_by(listing_id) %>%
summarise(reviews_since_2019 = n()) %>%
mutate(bookings_since_2019 = reviews_since_2019*2) %>%
rename(id = listing_id)
listings <- left_join(listings, reviews_grouped, by="id")
return(listings)
}
start_date = "2019-1-1"
end_date = "2021-12-31"
list.sin <-count_reviews(list.sin, reviews.sin,start_date, end_date)
list.hkg <- count_reviews(list.hkg, reviews.sin,start_date, end_date)
list.tpe <- count_reviews(list.tpe, reviews.sin,start_date, end_date)
list.nrt <- count_reviews(list.nrt, reviews.sin,start_date, end_date)
list_after_2019.sin <- list.sin %>% filter(!is.na(reviews_since_2019))
list_after_2019.tpe <- list.tpe %>% filter(!is.na(reviews_since_2019))
list_after_2019.nrt <- list.nrt %>% filter(!is.na(reviews_since_2019))
list_after_2019.hkg <- list.hkg %>% filter(!is.na(reviews_since_2019))
We now attempt to check on variables for each city.
data_exploration <- function (listing)
{
plot_str(listing, type="r")
introduce(listing)
plot_intro(listing)
plot_missing(listing)
plot_bar(listing)
pca_df <- na.omit(list.sin[, c("Price", "Room_Type", "Reviews", "Beds", "Capacity", "Monthly_Reviews", "host_Superhost", "Rating","Days_since_last_review")])#, "host_response_rate", "host_response_hours", "host_acceptance_rate","host_response_day", "host_response_few_days")])
plot_qq(pca_df)
plot_prcomp(pca_df, variance_cap = 0.9, nrow = 2L, ncol=2L)
}
data_exploration(list.sin)
## 4 columns ignored with more than 50 categories.
## Property_Type: 51 categories
## amenities: 2815 categories
## last_review: 962 categories
## host_verifications: 140 categories
Taipei
data_exploration(list.tpe)
## 4 columns ignored with more than 50 categories.
## Property_Type: 58 categories
## amenities: 3376 categories
## last_review: 1050 categories
## host_verifications: 158 categories
Hong Kong
data_exploration(list.hkg)
## 4 columns ignored with more than 50 categories.
## Property_Type: 69 categories
## amenities: 3846 categories
## last_review: 1125 categories
## host_verifications: 150 categories
Tokyo
data_exploration(list.nrt)
## 4 columns ignored with more than 50 categories.
## Property_Type: 64 categories
## amenities: 7467 categories
## last_review: 987 categories
## host_verifications: 192 categories
We will now check out outliers in our data for various parameters, filtering for listings that have seen at least one booking since 1 Jan 2019, starting with Singapore data.
generate_price_boxplot <- function (listing.clean, city, comparison_col = "")
{
# png(file = "./graphs/boxplot.png")
if (comparison_col == "")
{
boxplot(listing.clean$Price, data = listing.clean, ylab="Price", main=paste("Boxplot: Price for", city))
}
else
boxplot(listing.clean$Price ~ listing.clean[[comparison_col]], data = listing.clean, ylab="Price", xlab=comparison_col, main=paste("Boxplot: Price vs", comparison_col, "for", city))
# dev.off()
}
generate_price_boxplot(list_after_2019.sin, "Singapore") #, sin_listing.clean$)
generate_price_boxplot(list_after_2019.sin, "Singapore", "Room_Type") #, sin_listing.clean$)
generate_price_boxplot(list_after_2019.sin, "Singapore", "Property_Type") #, sin_listing.clean$)
generate_price_boxplot(list_after_2019.sin, "Singapore", "Capacity") #, sin_listing.clean$)
generate_price_boxplot(list_after_2019.sin, "Singapore", "Beds") #, sin_listing.clean$)
generate_price_boxplot(list_after_2019.sin, "Singapore", "Neighbourhood") #, sin_listing.clean$)
generate_price_boxplot(list_after_2019.sin, "Singapore", "Reviews") #, sin_listing.clean$)
Seems like a single boat in Bukit Merah area (possibly next to the marina at Keppel Bay) has a very high price, at $2500/ night. Let’s look that one up more closely.
list_after_2019.sin %>% arrange(desc(Price))
## id Price Reviews Beds Baths Capacity Monthly_Reviews
## 1 20247516 2500 55 4 NA 5 1.05
## 2 22912163 1356 1 3 NA 5 0.08
## 3 21462227 1284 2 4 NA 8 0.04
## 4 29526074 1126 1 4 NA 4 0.04
## 5 29836188 1015 43 3 NA 6 1.14
## 6 37169326 1000 2 4 NA 8 0.07
## 7 37257081 1000 1 4 NA 8 0.03
## 8 18585234 999 7 1 NA 2 0.13
## 9 51564284 967 1 2 NA 6 0.35
## 10 21670282 961 21 4 NA 7 0.44
## 11 53408171 950 1 4 NA 6 1.00
## 12 24212593 942 7 2 NA 4 0.17
## 13 22990457 883 6 2 NA 3 0.13
## 14 12992216 813 31 3 NA 6 0.45
## 15 32906878 789 3 3 NA 5 0.12
## 16 29548114 770 1 1 NA 2 0.03
## 17 22798533 769 8 4 NA 7 0.17
## 18 19953933 766 11 4 NA 7 0.21
## 19 30385269 729 1 3 NA 5 0.04
## 20 32533341 695 1 4 NA 6 0.03
## 21 38889119 688 4 3 NA 4 0.15
## 22 35359778 681 11 2 NA 6 0.36
## 23 31580959 679 1 3 NA 6 0.03
## 24 52518915 670 1 1 NA 2 1.00
## 25 19595827 662 20 3 NA 5 0.39
## 26 49409523 658 1 1 NA 2 1.00
## 27 29554536 651 14 1 NA 2 0.37
## 28 41694541 650 1 2 NA 2 0.10
## 29 33060127 644 1 3 NA 6 0.03
## 30 41160705 643 4 1 NA 3 0.17
## 31 43174323 636 2 3 NA 4 0.13
## 32 26791029 630 5 4 NA 6 0.13
## 33 41202185 629 1 1 NA 1 0.04
## 34 35917914 620 1 3 NA 6 0.04
## 35 36252767 620 1 4 NA 6 0.03
## 36 19369423 616 19 3 NA 5 0.39
## 37 24950322 613 6 3 NA 4 0.15
## 38 35483354 612 2 3 NA 6 0.07
## 39 31725137 610 5 3 NA 6 0.15
## 40 36156663 610 1 4 NA 7 0.04
## 41 41089548 610 1 4 NA 7 0.04
## 42 7769781 584 29 2 NA 1 0.38
## 43 48725792 583 2 1 NA 2 2.00
## 44 41138711 572 1 NA NA 2 0.12
## 45 40439164 569 23 2 NA 5 1.38
## 46 16985394 560 2 16 NA 16 0.04
## 47 51122424 559 3 1 NA 2 2.73
## 48 48232774 556 14 2 NA 5 1.41
## 49 30385249 555 8 2 NA 4 0.24
## 50 51122058 554 10 1 NA 2 2.26
## 51 39406409 550 1 3 NA 5 0.04
## 52 38951604 545 3 2 NA 8 0.12
## 53 47211647 545 10 2 NA 5 1.04
## 54 22912035 538 2 1 NA 2 0.04
## 55 33112617 537 66 4 NA 8 1.96
## 56 23094299 530 7 3 NA 5 0.15
## 57 41568582 520 1 3 NA 4 0.04
## 58 35788859 519 43 5 NA 12 1.40
## 59 35788857 505 47 5 NA 12 1.54
## 60 47912755 504 1 1 NA 2 0.16
## 61 19184001 500 3 3 NA 6 0.06
## 62 21937326 500 25 1 NA 1 0.51
## 63 20096441 496 10 3 NA 5 0.22
## 64 20177941 493 14 3 NA 5 0.27
## 65 24618190 485 1 4 NA 8 0.08
## 66 40789842 484 1 3 NA 6 0.35
## 67 31851838 480 66 3 NA 8 1.88
## 68 37313724 475 1 2 NA 5 0.20
## 69 18081902 473 9 NA NA 2 0.17
## 70 20806898 473 5 NA NA 2 0.10
## 71 45961358 472 1 3 NA 5 0.33
## 72 31726026 471 3 2 NA 5 0.09
## 73 32821167 470 2 2 NA 5 0.06
## 74 36285346 470 1 3 NA 5 0.27
## 75 36008984 465 1 3 NA 5 0.28
## 76 20156054 462 6 3 NA 5 0.12
## 77 8721639 461 20 2 NA 6 0.30
## 78 19895150 461 4 3 NA 7 0.07
## 79 38862445 461 6 2 NA 4 0.22
## 80 31423642 460 1 2 NA 5 0.04
## 81 22454647 457 97 3 NA 6 2.02
## 82 33111884 457 57 3 NA 4 1.69
## 83 52062009 456 1 1 NA 2 0.57
## 84 40543696 450 4 9 NA 16 0.17
## 85 52062197 450 1 1 NA 2 0.42
## 86 41032597 445 10 1 NA 2 0.41
## 87 29525240 443 2 1 NA 2 0.06
## 88 8914905 441 1 7 NA 7 0.03
## 89 25877353 432 5 3 NA 6 0.14
## 90 23084195 431 2 3 NA 6 0.06
## 91 36852543 431 1 3 NA 6 0.04
## 92 53679344 430 1 1 NA 3 1.00
## 93 46075495 428 1 4 NA 6 0.28
## 94 51257283 428 7 3 NA 8 2.14
## 95 35786305 422 39 4 NA 9 1.27
## 96 23658989 420 1 2 NA 4 0.03
## 97 33111200 420 50 2 NA 4 1.48
## 98 33112624 420 57 5 NA 8 1.69
## 99 33112676 420 53 5 NA 8 1.58
## 100 11581560 417 10 1 NA 2 0.23
## 101 20084815 416 20 1 NA 2 0.40
## 102 41032965 416 1 1 NA 2 0.04
## 103 4683314 410 26 4 NA 5 0.31
## 104 24660198 407 21 2 NA 4 0.49
## 105 45902566 407 1 1 NA 2 0.07
## 106 36618900 402 6 3 NA 6 0.22
## 107 1210268 400 45 4 NA 5 0.46
## 108 8061522 400 21 3 NA 6 0.28
## 109 8432015 400 35 4 NA 5 0.46
## 110 19184003 400 1 1 NA 4 0.04
## 111 26405063 400 7 4 NA 5 0.17
## 112 18166182 399 4 2 NA 6 0.07
## 113 15918822 394 4 1 NA 2 0.23
## 114 42104603 392 1 1 NA 2 0.04
## 115 35786308 391 46 5 NA 9 1.50
## 116 43175252 389 1 1 NA 2 0.08
## 117 35786311 385 43 4 NA 9 1.40
## 118 35786312 385 53 5 NA 9 1.73
## 119 43416835 385 7 3 NA 8 0.89
## 120 43520895 385 7 3 NA 8 0.91
## 121 43915791 385 9 3 NA 8 0.82
## 122 46669109 380 1 3 NA 6 0.10
## 123 22092656 378 2 2 NA 4 0.05
## 124 25711980 378 1 2 NA 4 0.03
## 125 30385453 376 7 1 NA 2 0.20
## 126 19367655 375 9 1 NA 3 0.19
## 127 35483358 375 1 1 NA 2 0.03
## 128 45537334 370 1 1 NA 2 0.09
## 129 45779393 368 2 1 NA 2 1.40
## 130 23446208 366 120 3 NA 8 2.62
## 131 26370803 365 10 1 NA 2 0.25
## 132 6481052 364 35 NA NA 3 0.44
## 133 15919067 364 9 1 NA 2 0.16
## 134 23403996 364 8 2 NA 3 0.18
## 135 33112080 360 53 4 NA 8 1.58
## 136 37334803 360 2 3 NA 6 0.07
## 137 37587133 360 1 3 NA 6 0.03
## 138 53317236 360 1 1 NA 2 0.94
## 139 34237286 359 4 14 NA 14 0.13
## 140 24238015 357 19 1 NA 2 0.45
## 141 32245578 357 8 5 NA 6 0.25
## 142 31960343 356 11 1 NA 2 0.35
## 143 15919162 355 1 1 NA 2 0.09
## 144 4026199 350 35 3 NA 4 0.40
## 145 28748709 350 92 7 NA 16 2.35
## 146 35185817 350 1 2 NA 4 0.08
## 147 33110734 349 46 2 NA 4 1.37
## 148 35483332 347 3 2 NA 5 0.11
## 149 25985995 345 2 2 NA 4 0.06
## 150 31527262 344 217 1 NA 2 6.24
## 151 23947783 342 30 1 NA 2 0.66
## 152 47296851 338 10 1 NA 2 0.88
## 153 15725449 337 5 3 NA 6 0.08
## 154 46361416 337 2 3 NA 6 0.15
## 155 51717188 337 1 3 NA 5 0.35
## 156 28536238 336 15 1 NA 3 0.94
## 157 33111029 331 45 2 NA 4 1.35
## 158 33888989 331 15 1 NA 3 0.53
## 159 37916346 331 25 1 NA 2 0.92
## 160 24276647 328 73 2 NA 4 1.64
## 161 25892078 328 78 3 NA 4 1.81
## 162 26217724 328 23 1 NA 4 0.55
## 163 32031648 328 8 3 NA 6 0.23
## 164 53317101 326 1 2 NA 3 0.73
## 165 21416445 324 14 1 NA 2 0.29
## 166 43956550 323 1 1 NA 3 0.08
## 167 4450681 320 16 2 NA 3 0.19
## 168 19849029 320 2 3 NA 6 0.41
## 169 20098734 320 1 3 NA 6 0.13
## 170 27342137 320 7 2 NA 3 0.17
## 171 31960810 320 7 1 NA 2 0.20
## 172 23672746 319 9 3 NA 4 0.23
## 173 25926356 314 1 1 NA 2 0.03
## 174 30024441 314 39 2 NA 4 1.07
## 175 51005693 314 1 2 NA 4 0.38
## 176 36009935 313 1 1 NA 3 0.04
## 177 19595322 312 13 1 NA 2 0.25
## 178 15977143 311 2 2 NA 4 0.03
## 179 30578632 307 3 5 NA 6 0.09
## 180 41481981 307 43 2 NA 4 1.88
## 181 41482560 307 39 2 NA 4 1.85
## 182 8277151 305 174 1 NA 3 2.28
## 183 40680808 303 1 2 NA 3 0.04
## 184 819034 300 40 2 NA 4 0.37
## 185 9269981 300 7 16 NA 16 0.10
## 186 19184011 300 7 1 NA 3 0.19
## 187 19184013 300 4 1 NA 3 0.11
## 188 19184500 300 13 2 NA 3 0.28
## 189 19184501 300 10 2 NA 3 0.20
## 190 19184502 300 21 1 NA 3 0.39
## 191 19184503 300 21 1 NA 3 0.39
## 192 43055185 300 1 1 NA 2 0.05
## 193 45474953 300 1 1 NA 2 0.08
## 194 53175494 300 1 1 NA 2 1.00
## 195 15274648 299 11 2 NA 2 0.19
## 196 39338786 295 6 1 NA 2 0.23
## 197 40765066 295 7 3 NA 4 0.31
## 198 1229614 290 39 1 NA 2 0.40
## 199 32320934 290 41 5 NA 6 1.20
## 200 33621601 290 1 1 NA 3 0.86
## 201 34727793 290 15 1 NA 2 0.49
## 202 13283938 288 65 4 NA 6 0.96
## 203 47039804 288 1 3 NA 6 0.08
## 204 50433019 288 7 2 NA 5 2.50
## 205 28944421 287 11 1 NA 2 0.31
## 206 32621960 286 2 2 NA 4 0.06
## 207 1233249 284 36 2 NA 3 0.37
## 208 20234954 281 13 1 NA 3 0.28
## 209 29917321 280 5 3 NA 6 0.14
## 210 33111387 280 60 3 NA 6 1.78
## 211 33111749 280 49 3 NA 6 1.46
## 212 33111805 280 75 3 NA 6 2.23
## 213 16110969 279 10 10 NA 10 0.17
## 214 14131949 278 15 1 NA 2 0.29
## 215 16832754 276 16 2 NA 3 0.27
## 216 41460941 274 2 1 NA 2 0.35
## 217 32345618 273 10 1 NA 2 0.33
## 218 31959810 270 6 1 NA 2 0.22
## 219 43922476 270 2 2 NA 3 0.17
## 220 47296644 270 5 1 NA 2 0.47
## 221 40456301 269 3 8 NA 8 0.12
## 222 40571566 269 1 8 NA 8 0.04
## 223 41033173 269 3 8 NA 8 0.12
## 224 40514546 268 1 3 NA 6 0.04
## 225 40517115 268 6 3 NA 8 0.24
## 226 46096669 268 8 2 NA 4 0.57
## 227 51648295 267 1 1 NA 2 1.00
## 228 47014450 266 1 2 NA 4 0.09
## 229 47295777 266 4 1 NA 2 0.37
## 230 48402783 266 7 2 NA 5 0.72
## 231 43313813 262 1 1 NA 2 0.06
## 232 39014610 261 2 2 NA 3 0.16
## 233 1833950 260 28 1 NA 2 0.29
## 234 4138944 260 59 1 NA 2 0.68
## 235 24070730 260 17 1 NA 2 0.39
## 236 25748458 260 7 1 NA 2 0.16
## 237 29525299 260 4 1 NA 1 0.11
## 238 29525951 260 18 1 NA 1 0.48
## 239 36747812 260 3 1 NA 2 0.10
## 240 21063861 259 83 2 NA 4 1.61
## 241 43694447 259 10 2 NA 5 0.60
## 242 52018734 259 2 2 NA 5 1.87
## 243 39641568 258 56 1 NA 2 2.18
## 244 47558087 258 9 2 NA 5 1.00
## 245 47927882 258 3 NA NA 2 1.17
## 246 31812483 257 20 1 NA 2 0.58
## 247 15796599 256 2 2 NA 3 0.07
## 248 40734196 256 1 2 NA 3 0.04
## 249 24704585 255 46 1 NA 4 1.05
## 250 43792252 255 25 2 NA 4 1.36
## 251 46698429 255 1 4 NA 6 0.10
## 252 24000970 253 1 3 NA 6 0.04
## 253 24001023 253 4 3 NA 6 0.10
## 254 24003066 253 2 3 NA 6 0.05
## 255 17929054 252 3 2 NA 4 0.12
## 256 42956618 251 1 2 NA 4 0.09
## 257 47295315 251 20 1 NA 2 1.86
## 258 756267 250 70 1 NA 2 0.64
## 259 8508225 250 32 2 NA 3 0.43
## 260 33112577 250 57 4 NA 8 1.70
## 261 34052336 250 3 2 NA 3 0.10
## 262 34951369 250 1 4 NA 3 1.00
## 263 41611248 250 1 1 NA 1 0.75
## 264 44224101 250 1 1 NA 2 1.00
## 265 35818917 249 33 1 NA 2 1.46
## 266 40458494 248 1 6 NA 6 0.04
## 267 40762561 248 1 4 NA 9 0.04
## 268 41326546 246 2 10 NA 10 0.09
## 269 10466406 245 6 2 NA 6 0.08
## 270 17110437 245 1 2 NA 6 0.04
## 271 43521009 245 14 2 NA 5 0.77
## 272 43915749 245 16 2 NA 5 1.34
## 273 31295956 244 2 1 NA 2 0.06
## 274 37713213 244 1 1 NA 1 0.04
## 275 40941821 244 12 3 NA 6 0.53
## 276 15711027 243 1 2 NA 4 0.28
## 277 42081657 241 14 2 NA 4 0.62
## 278 17929053 240 8 2 NA 3 0.22
## 279 21605333 240 54 1 NA 2 1.10
## 280 21888054 240 46 1 NA 2 1.07
## 281 19648215 239 6 1 NA 3 0.12
## 282 32385687 239 11 1 NA 2 0.34
## 283 40314128 238 1 1 NA 2 0.04
## 284 22577896 235 10 NA NA 2 0.22
## 285 24609199 235 2 1 NA 2 0.05
## 286 34073545 235 12 2 NA 4 0.38
## 287 44069414 235 1 3 NA 4 0.06
## 288 33108041 234 68 2 NA 4 2.01
## 289 6824319 233 9 4 NA 6 0.12
## 290 21420790 232 7 1 NA 1 0.14
## 291 39589304 232 3 3 NA 3 0.12
## 292 47945986 231 7 1 NA 2 0.72
## 293 21791154 230 2 1 NA 2 0.06
## 294 51217722 230 3 2 NA 3 0.63
## 295 16057988 229 35 4 NA 6 0.65
## 296 35747289 229 4 8 NA 8 0.14
## 297 40873825 229 1 2 NA 4 0.04
## 298 5446857 228 3 1 NA 3 0.06
## 299 40458674 228 1 4 NA 9 0.04
## 300 40745871 228 2 1 NA 3 0.08
## 301 40921448 228 2 1 NA 3 0.08
## 302 41076836 228 1 1 NA 2 1.00
## 303 41077161 228 1 1 NA 2 0.04
## 304 46385525 228 1 2 NA 4 0.08
## 305 46385713 228 6 2 NA 4 0.49
## 306 47295577 227 1 2 NA 2 0.17
## 307 48723619 226 5 2 NA 6 0.56
## 308 16213115 225 18 10 NA 10 0.30
## 309 21428446 223 59 1 NA 2 1.23
## 310 37853876 223 75 1 NA 2 2.79
## 311 51898390 223 1 2 NA 4 0.58
## 312 29020376 221 29 1 NA 2 0.84
## 313 41439350 221 2 1 NA 1 0.09
## 314 24241421 220 1 3 NA 7 0.08
## 315 24883137 220 36 2 NA 6 0.84
## 316 25888807 220 23 2 NA 4 0.59
## 317 33782992 220 35 3 NA 6 1.10
## 318 40048607 220 4 5 NA 6 0.16
## 319 43684773 220 9 2 NA 6 0.48
## 320 50335040 220 1 1 NA 2 0.32
## 321 16936558 219 89 3 NA 4 1.49
## 322 46865144 219 4 2 NA 4 0.38
## 323 41439736 218 2 2 NA 2 0.63
## 324 38986386 217 3 1 NA 2 0.12
## 325 32388223 216 12 1 NA 2 0.37
## 326 23673101 215 30 1 NA 2 0.66
## 327 34138136 215 13 4 NA 7 0.40
## 328 34804905 215 8 4 NA 7 0.31
## 329 16140165 214 28 2 NA 6 0.49
## 330 24447655 214 3 1 NA 2 0.08
## 331 43629592 214 22 4 NA 6 1.22
## 332 48176330 214 2 1 NA 2 2.00
## 333 27003693 213 2 2 NA 4 0.08
## 334 29522642 213 5 3 NA 5 0.14
## 335 37579558 213 2 1 NA 4 0.09
## 336 8705956 211 10 1 NA 3 0.14
## 337 32370549 211 8 1 NA 2 0.25
## 338 35818699 211 87 1 NA 2 3.29
## 339 15589669 210 4 5 NA 6 0.07
## 340 50278378 210 2 1 NA 2 0.87
## 341 15454153 209 19 3 NA 5 0.33
## 342 37999599 209 18 1 NA 2 0.66
## 343 29858416 208 13 1 NA 2 0.35
## 344 21416331 207 48 1 NA 1 0.98
## 345 43737197 206 1 1 NA 2 0.05
## 346 46423926 206 3 1 NA 3 0.25
## 347 24254508 205 3 2 NA 5 0.08
## 348 26176258 205 16 2 NA 4 0.38
## 349 34318004 205 21 1 NA 4 0.67
## 350 39119453 205 3 1 NA 4 0.13
## 351 32317824 204 8 3 NA 6 0.23
## 352 33050985 204 6 3 NA 6 0.19
## 353 22745179 203 143 1 NA 3 2.99
## 354 38305984 203 1 1 NA 2 0.04
## 355 47014803 202 1 2 NA 4 0.12
## 356 40875632 201 2 1 NA 2 2.00
## 357 41940620 201 1 2 NA 4 0.06
## 358 1024986 200 255 1 NA 2 2.57
## 359 4979889 200 22 1 NA 2 0.26
## 360 5448209 200 7 1 NA 3 0.10
## 361 8017511 200 34 5 NA 7 0.49
## 362 11660178 200 6 2 NA 4 0.17
## 363 15687109 200 6 1 NA 2 0.22
## 364 16149684 200 1 2 NA 4 0.04
## 365 23934649 200 69 5 NA 6 1.52
## 366 24874562 200 7 2 NA 4 0.26
## 367 32309635 200 1 2 NA 4 0.04
## 368 39689162 200 3 1 NA 2 0.12
## 369 39825497 200 1 4 NA 4 0.04
## 370 40544662 200 2 4 NA 9 0.08
## 371 41314524 200 62 3 NA 4 2.66
## 372 48687013 200 2 2 NA 4 0.21
## 373 53244978 200 1 NA NA 2 1.00
## 374 22021293 199 95 1 NA 2 1.93
## 375 34236901 199 12 8 NA 8 0.38
## 376 37907711 199 177 3 NA 4 6.23
## 377 46385269 199 3 2 NA 4 0.28
## 378 13243736 198 49 3 NA 4 0.79
## 379 21415749 198 206 1 NA 1 4.24
## 380 28729429 198 1 2 NA 4 0.04
## 381 40453611 198 5 6 NA 8 0.21
## 382 40457664 198 3 2 NA 6 0.13
## 383 40599966 198 1 2 NA 6 0.04
## 384 40688832 198 1 1 NA 3 0.04
## 385 40925829 198 2 2 NA 2 0.08
## 386 40927431 198 1 5 NA 9 0.05
## 387 40973763 198 1 1 NA 6 0.04
## 388 41325962 198 1 4 NA 2 0.04
## 389 41326499 198 1 4 NA 9 0.05
## 390 41328031 198 1 1 NA 9 0.05
## 391 41328115 198 1 2 NA 6 0.05
## 392 42079535 198 120 1 NA 2 5.25
## 393 4499317 196 124 1 NA 2 1.43
## 394 46475469 196 1 NA NA 4 0.08
## 395 23063409 195 2 1 NA 2 0.25
## 396 45583200 195 2 2 NA 2 0.17
## 397 46424078 195 4 1 NA 2 0.31
## 398 39641470 194 2 1 NA 2 1.22
## 399 51360828 194 1 2 NA 4 0.26
## 400 35818082 193 36 1 NA 2 1.20
## 401 37059139 193 21 1 NA 4 0.72
## 402 51076382 193 23 1 NA 2 4.63
## 403 48033436 192 7 1 NA 2 1.41
## 404 49048346 192 6 1 NA 1 0.98
## 405 51931632 192 1 1 NA 2 1.00
## 406 32318162 191 1 2 NA 4 0.03
## 407 15364548 190 57 3 NA 5 0.90
## 408 22282038 190 18 1 NA 2 0.37
## 409 25561906 190 31 2 NA 4 0.72
## 410 27253602 190 20 1 NA 2 0.54
## 411 41601807 190 1 2 NA 4 0.13
## 412 41788641 190 5 2 NA 4 0.22
## 413 11723491 189 9 4 NA 5 0.13
## 414 29068591 189 1 6 NA 6 0.03
## 415 30165301 189 2 2 NA 4 0.51
## 416 33953077 189 2 2 NA 4 0.09
## 417 37063111 189 14 1 NA 4 0.70
## 418 39716810 189 11 1 NA 4 0.56
## 419 53388036 189 1 1 NA 3 1.00
## 420 7666349 188 7 2 NA 2 0.10
## 421 22090557 188 1 2 NA 2 0.03
## 422 42078904 188 203 1 NA 2 9.12
## 423 35634164 186 32 1 NA 4 1.07
## 424 24704584 185 7 2 NA 4 0.16
## 425 27405538 185 20 1 NA 4 0.49
## 426 32003564 185 2 2 NA 4 0.06
## 427 34919150 185 12 1 NA 2 0.38
## 428 40340084 185 8 2 NA 5 0.34
## 429 43598832 185 2 1 NA 4 0.11
## 430 49063480 185 2 2 NA 5 0.23
## 431 51946794 185 1 1 NA 2 0.53
## 432 27078318 183 32 2 NA 4 0.77
## 433 29579499 182 43 1 NA 2 1.15
## 434 43120799 182 1 1 NA 2 0.27
## 435 21854687 181 51 1 NA 2 1.05
## 436 52503873 181 1 2 NA 5 0.94
## 437 4541183 180 226 1 NA 2 2.62
## 438 6287204 180 11 2 NA 4 0.15
## 439 8200542 180 190 4 NA 5 2.48
## 440 11679463 180 8 1 NA 3 0.21
## 441 13967760 180 1 1 NA 3 0.13
## 442 18395154 180 127 1 NA 2 2.26
## 443 21854697 180 25 1 NA 2 0.51
## 444 24701064 180 28 2 NA 4 0.65
## 445 25250570 180 15 2 NA 4 0.35
## 446 28198324 180 2 1 NA 2 0.06
## 447 33982757 180 28 2 NA 3 0.98
## 448 34030772 180 1 2 NA 2 0.04
## 449 34243743 180 1 1 NA 1 0.03
## 450 37067343 180 13 1 NA 4 0.47
## 451 39657837 180 3 2 NA 4 0.12
## 452 40966385 180 1 6 NA 4 0.04
## 453 51863280 180 2 1 NA 4 1.28
## 454 71609 179 20 3 NA 6 0.16
## 455 4412603 179 66 1 NA 8 0.76
## 456 17927897 179 8 1 NA 2 0.16
## 457 26309079 179 41 1 NA 2 1.00
## 458 29525417 179 1 3 NA 5 0.03
## 459 30188702 179 6 3 NA 5 0.17
## 460 37060879 179 6 1 NA 2 0.27
## 461 37721714 179 2 1 NA 2 0.07
## 462 39641124 179 3 1 NA 2 0.17
## 463 40692679 179 1 2 NA 3 0.13
## 464 36516629 178 11 1 NA 3 0.38
## 465 49863259 177 3 1 NA 2 0.43
## 466 53196067 177 1 1 NA 2 1.00
## 467 21820005 176 69 1 NA 1 1.41
## 468 42985510 176 14 3 NA 4 0.66
## 469 47911419 175 11 1 NA 2 1.03
## 470 40597192 174 1 2 NA 2 0.04
## 471 23952436 173 7 2 NA 4 0.17
## 472 29580481 173 8 1 NA 2 0.22
## 473 35635103 173 46 2 NA 4 1.53
## 474 36970328 173 13 1 NA 2 0.45
## 475 39731410 172 2 2 NA 4 0.08
## 476 41070234 172 2 1 NA 2 0.09
## 477 47423038 172 1 2 NA 4 0.12
## 478 26931333 171 36 1 NA 2 0.88
## 479 34579286 171 45 1 NA 2 1.47
## 480 38134989 171 56 1 NA 2 2.12
## 481 23952242 170 9 2 NA 4 0.25
## 482 23952623 170 3 2 NA 4 0.08
## 483 28359844 170 106 2 NA 4 2.65
## 484 31424549 170 2 1 NA 2 0.17
## 485 46491972 170 3 1 NA 4 0.28
## 486 25385698 169 2 1 NA 2 0.07
## 487 33388955 169 78 3 NA 2 2.56
## 488 5889741 168 212 3 NA 3 2.60
## 489 8038199 168 167 1 NA 2 2.26
## 490 13717530 168 24 1 NA 1 0.62
## 491 20019928 168 7 1 NA 2 0.14
## 492 25083771 168 8 2 NA 6 0.19
## 493 25981021 168 13 1 NA 4 0.30
## 494 37062341 168 14 1 NA 4 0.51
## 495 39091992 168 22 2 NA 6 1.08
## 496 9269260 165 9 8 NA 8 0.13
## 497 9269848 165 4 7 NA 7 0.07
## 498 29860691 165 3 2 NA 4 0.10
## 499 34526007 165 45 2 NA 2 1.46
## 500 38682873 165 2 2 NA 4 0.10
## 501 38916143 165 9 2 NA 2 0.38
## 502 47945703 165 4 1 NA 2 0.49
## 503 21854678 164 57 1 NA 2 1.16
## 504 23329869 164 3 1 NA 16 0.08
## 505 35483317 164 1 1 NA 2 0.03
## 506 4973227 163 119 1 NA 2 1.43
## 507 38986709 163 5 1 NA 2 0.21
## 508 39009057 163 4 2 NA 4 0.15
## 509 41019742 163 2 NA NA 2 0.08
## 510 43954242 163 5 2 NA 4 0.39
## 511 47461911 163 1 1 NA 4 0.24
## 512 47911042 163 72 1 NA 2 7.40
## 513 40681844 162 3 1 NA 2 0.22
## 514 47945578 162 1 1 NA 1 0.13
## 515 49100433 162 34 1 NA 2 4.16
## 516 53717759 162 1 1 NA 4 1.00
## 517 17928170 161 96 1 NA 2 1.71
## 518 19834053 160 5 1 NA 2 0.10
## 519 21804950 160 41 1 NA 2 0.82
## 520 29581373 160 27 1 NA 2 0.72
## 521 32114293 160 27 1 NA 2 0.77
## 522 33232136 160 25 1 NA 2 0.75
## 523 34949534 160 1 1 NA 2 0.04
## 524 39308924 160 30 3 NA 5 1.13
## 525 43358921 160 2 1 NA 3 0.11
## 526 43359021 160 1 1 NA 3 0.05
## 527 46473224 160 1 1 NA 1 0.09
## 528 51880948 160 3 1 NA 3 0.87
## 529 52247503 160 1 1 NA 2 0.33
## 530 53174972 160 1 1 NA 3 1.00
## 531 16620686 159 113 2 NA 6 1.97
## 532 28747912 159 103 3 NA 8 2.62
## 533 40974363 159 2 1 NA 1 0.09
## 534 41015331 159 16 1 NA 2 0.66
## 535 45537007 159 1 2 NA 4 0.13
## 536 17917998 158 67 1 NA 5 1.18
## 537 29552643 158 23 1 NA 2 0.62
## 538 29665981 158 3 2 NA 4 0.08
## 539 33436577 158 24 1 NA 3 0.73
## 540 34352644 158 2 2 NA 3 0.10
## 541 40974119 158 1 2 NA 4 0.04
## 542 14245740 157 148 3 NA 5 2.39
## 543 21015880 157 30 1 NA 2 0.63
## 544 31364014 157 2 2 NA 4 0.11
## 545 38965851 157 5 1 NA 1 0.19
## 546 40120214 157 2 1 NA 2 0.09
## 547 53281701 157 1 2 NA 2 1.00
## 548 39612331 156 18 1 NA 4 0.86
## 549 43731117 156 14 1 NA 4 0.75
## 550 46383256 156 2 2 NA 3 1.62
## 551 46384314 156 1 2 NA 3 1.00
## 552 46384557 156 9 2 NA 3 0.71
## 553 20950425 155 153 3 NA 2 3.05
## 554 21015873 155 6 1 NA 2 0.15
## 555 21015874 155 11 1 NA 2 0.23
## 556 21015876 155 17 1 NA 2 0.35
## 557 21015881 155 8 1 NA 2 0.19
## 558 21015977 155 9 1 NA 2 0.25
## 559 23045739 155 5 1 NA 2 0.28
## 560 40736423 155 2 1 NA 2 0.08
## 561 40736566 155 2 1 NA 2 0.09
## 562 40809447 155 2 1 NA 2 0.08
## 563 40809914 155 6 1 NA 2 0.44
## 564 41032819 155 12 1 NA 2 0.51
## 565 41536934 155 1 1 NA 1 0.04
## 566 41753013 155 1 NA NA 2 0.09
## 567 45127473 155 1 3 NA 4 0.14
## 568 47912877 155 23 1 NA 2 2.14
## 569 50707898 155 1 1 NA 2 1.00
## 570 50708702 155 2 1 NA 2 0.74
## 571 50822918 155 2 1 NA 2 0.49
## 572 14701395 154 2 4 NA 4 0.04
## 573 29209668 154 7 1 NA 5 0.20
## 574 40766901 154 1 1 NA 2 0.04
## 575 40809655 154 6 1 NA 2 0.44
## 576 40809878 154 2 1 NA 2 0.15
## 577 40903279 154 1 1 NA 2 0.04
## 578 41312870 154 6 2 NA 4 0.29
## 579 51661224 154 2 1 NA 2 0.57
## 580 19351097 153 28 2 NA 3 0.53
## 581 38539790 153 23 2 NA 3 0.86
## 582 43934034 152 5 2 NA 3 0.28
## 583 51809755 152 1 1 NA 2 1.00
## 584 19847774 151 5 3 NA 3 0.13
## 585 32198860 151 2 2 NA 4 0.06
## 586 32223363 151 3 2 NA 3 0.11
## 587 32452018 151 1 1 NA 2 0.03
## 588 32528723 151 4 2 NA 4 0.13
## 589 41916277 151 2 NA NA 2 0.10
## 590 819044 150 71 1 NA 2 0.65
## 591 833289 150 2 2 NA 2 0.03
## 592 6831622 150 23 1 NA 3 0.29
## 593 10718463 150 36 NA NA 2 0.51
## 594 13183241 150 3 2 NA 3 0.05
## 595 17684352 150 47 1 NA 2 0.92
## 596 21214988 150 1 1 NA 1 0.04
## 597 21671407 150 5 1 NA 2 0.14
## 598 25760233 150 4 1 NA 3 0.10
## 599 25980558 150 15 1 NA 2 0.35
## 600 32318920 150 47 1 NA 2 1.39
## 601 32533152 150 2 2 NA 4 0.07
## 602 33025531 150 31 1 NA 2 1.02
## 603 33394388 150 10 1 NA 2 0.55
## 604 33734018 150 4 2 NA 3 0.14
## 605 34237086 150 22 6 NA 6 0.69
## 606 35818107 150 15 6 NA 6 0.50
## 607 36999903 150 4 2 NA 2 0.14
## 608 37578949 150 1 1 NA 2 0.04
## 609 37655038 150 23 1 NA 2 0.87
## 610 39603119 150 3 1 NA 2 0.13
## 611 40433757 150 2 3 NA 7 0.09
## 612 42057283 150 1 6 NA 8 0.11
## 613 43355016 150 1 1 NA 3 0.05
## 614 43359087 150 1 1 NA 3 0.06
## 615 43730297 150 1 1 NA 2 0.07
## 616 50404949 150 2 1 NA 4 0.36
## 617 52276534 150 1 2 NA 3 1.00
## 618 5052014 149 9 1 NA 2 0.11
## 619 5233415 149 12 1 NA 2 0.15
## 620 15197371 149 52 2 NA 5 0.84
## 621 18086207 149 9 4 NA 6 0.16
## 622 29343018 149 1 4 NA 4 0.04
## 623 38388737 149 1 1 NA 1 0.08
## 624 38914093 149 1 2 NA 2 0.04
## 625 39655270 149 1 2 NA 4 0.04
## 626 40642638 149 4 1 NA 2 0.31
## 627 40690201 149 1 1 NA 2 0.04
## 628 44569176 149 2 1 NA 3 0.17
## 629 48102755 149 1 1 NA 4 0.18
## 630 10214097 148 71 5 NA 6 1.26
## 631 19107598 148 80 2 NA 2 1.46
## 632 19975545 148 23 1 NA 2 0.43
## 633 20040797 148 33 1 NA 2 0.61
## 634 20059256 148 25 1 NA 2 0.47
## 635 26849028 148 6 1 NA 2 0.14
## 636 31003554 148 27 1 NA 2 0.74
## 637 33981233 148 1 1 NA 2 0.07
## 638 41014060 148 18 1 NA 2 1.34
## 639 41014661 148 18 1 NA 2 0.76
## 640 17929049 147 4 2 NA 2 0.11
## 641 25793757 147 224 1 NA 2 5.31
## 642 25816812 147 33 1 NA 2 0.77
## 643 26964529 147 39 1 NA 2 0.96
## 644 37812795 147 1 1 NA 2 0.04
## 645 38939902 147 1 1 NA 2 0.05
## 646 44044776 147 8 1 NA 2 0.45
## 647 44080236 147 5 2 NA 3 0.29
## 648 3717217 146 49 4 NA 4 0.56
## 649 23952759 146 3 2 NA 3 0.09
## 650 23952884 146 3 2 NA 3 0.07
## 651 32730296 146 2 2 NA 4 0.07
## 652 32903109 146 12 2 NA 4 0.36
## 653 9268680 145 15 7 NA 7 0.21
## 654 18674998 145 7 1 NA 2 0.13
## 655 20065234 145 4 2 NA 4 0.08
## 656 22561172 145 5 1 NA 2 0.11
## 657 24741587 145 6 1 NA 2 0.14
## 658 24761439 145 22 1 NA 2 0.50
## 659 24763374 145 5 1 NA 2 0.12
## 660 24763494 145 3 1 NA 2 0.08
## 661 24763572 145 2 1 NA 2 0.07
## 662 24763675 145 8 1 NA 2 0.20
## 663 28264364 145 26 1 NA 3 0.65
## 664 32526213 145 13 1 NA 2 0.39
## 665 46144509 145 13 1 NA 2 0.96
## 666 47912630 145 19 1 NA 2 2.15
## 667 48033280 145 6 1 NA 2 1.34
## 668 49099810 145 11 1 NA 2 1.61
## 669 51475066 145 2 1 NA 2 1.05
## 670 23506068 144 7 1 NA 2 0.15
## 671 28729521 144 2 1 NA 2 0.07
## 672 29705550 144 1 1 NA 2 0.05
## 673 30189205 144 1 2 NA 4 0.04
## 674 38523541 144 1 6 NA 6 0.04
## 675 40748069 144 4 1 NA 2 0.17
## 676 43379899 144 25 1 NA 2 1.27
## 677 49048569 144 2 1 NA 1 0.25
## 678 50982631 144 1 1 NA 2 1.00
## 679 24294968 143 30 3 NA 3 0.68
## 680 30687199 143 105 2 NA 3 2.87
## 681 33026305 143 13 1 NA 4 0.39
## 682 33634552 143 68 2 NA 2 2.19
## 683 40748133 143 1 1 NA 2 0.04
## 684 47912992 143 2 2 NA 2 0.22
## 685 15792808 142 146 1 NA 2 2.40
## 686 35102472 142 49 2 NA 2 1.58
## 687 48033351 142 6 2 NA 2 1.62
## 688 49660129 142 4 2 NA 4 0.55
## 689 16742820 141 12 1 NA 2 0.20
## 690 17627294 141 56 4 NA 5 0.97
## 691 21200260 141 10 1 NA 2 0.20
## 692 28400701 141 28 2 NA 2 0.80
## 693 29049813 141 4 1 NA 2 0.10
## 694 29745033 141 1 1 NA 2 0.03
## 695 53175850 141 2 1 NA 3 2.00
## 696 7154662 140 11 2 NA 4 0.14
## 697 13952292 140 4 1 NA 3 0.08
## 698 17928273 140 50 1 NA 1 0.88
## 699 19831199 140 90 2 NA 3 1.67
## 700 21314866 140 22 1 NA 2 0.44
## 701 22544362 140 10 1 NA 2 0.22
## 702 23717333 140 51 2 NA 3 1.15
## 703 23863811 140 2 1 NA 2 0.05
## 704 31129953 140 1 1 NA 2 0.05
## 705 31664598 140 7 1 NA 2 0.20
## 706 32502391 140 1 1 NA 2 0.13
## 707 37980033 140 1 2 NA 2 0.10
## 708 37981411 140 1 2 NA 2 0.04
## 709 41450369 140 2 1 NA 2 0.08
## 710 43354292 140 2 1 NA 3 0.11
## 711 43354914 140 3 1 NA 3 0.16
## 712 43359359 140 1 1 NA 3 1.00
## 713 43359426 140 2 1 NA 3 0.10
## 714 43493044 140 2 1 NA 3 0.11
## 715 49133042 140 6 1 NA 3 0.92
## 716 51131949 140 1 1 NA 1 0.24
## 717 2129215 139 369 3 NA 5 3.81
## 718 12162272 139 253 3 NA 4 3.80
## 719 33678136 139 1 2 NA 5 0.03
## 720 20018299 138 37 1 NA 2 0.70
## 721 20060105 138 32 1 NA 2 0.60
## 722 21402272 138 2 2 NA 3 0.06
## 723 24211014 138 10 2 NA 4 0.24
## 724 32194580 138 2 1 NA 2 0.07
## 725 40708485 138 11 1 NA 2 0.45
## 726 40765359 138 5 1 NA 2 0.21
## 727 16701352 137 35 1 NA 2 0.64
## 728 28821061 137 71 3 NA 4 1.83
## 729 29972407 137 7 1 NA 2 0.19
## 730 32478810 137 1 1 NA 2 0.14
## 731 42720595 137 3 3 NA 5 0.23
## 732 43007892 137 2 1 NA 2 0.11
## 733 13809823 136 19 1 NA 2 0.31
## 734 18858584 136 8 1 NA 2 0.15
## 735 21888290 136 25 1 NA 2 0.51
## 736 34053192 136 30 1 NA 4 1.01
## 737 37790507 136 2 2 NA 4 0.09
## 738 46145057 136 4 1 NA 2 0.30
## 739 6603464 135 9 1 NA 2 0.12
## 740 18675202 135 16 1 NA 2 0.30
## 741 23315012 135 24 1 NA 1 0.58
## 742 33111278 135 53 2 NA 4 1.57
## 743 38026889 135 11 NA NA 2 0.44
## 744 38136195 135 1 1 NA 2 0.04
## 745 41033189 135 5 1 NA 2 0.36
## 746 42885763 135 33 1 NA 2 1.64
## 747 43379651 135 93 1 NA 2 4.70
## 748 47361769 135 1 1 NA 2 0.09
## 749 47927520 135 1 NA NA 2 0.64
## 750 50737006 135 4 1 NA 2 0.99
## 751 50822490 135 1 1 NA 2 1.00
## 752 31357872 134 1 2 NA 4 0.03
## 753 33604276 134 65 2 NA 2 2.14
## 754 40708873 134 1 1 NA 2 0.08
## 755 40766379 134 3 1 NA 2 0.23
## 756 43337094 134 265 1 NA 2 13.27
## 757 47945468 134 52 1 NA 1 4.92
## 758 51476593 134 4 1 NA 2 1.56
## 759 40641448 133 6 1 NA 2 0.24
## 760 38105126 132 3 1 NA 2 0.13
## 761 43143215 132 1 1 NA 2 0.11
## 762 45131086 132 3 2 NA 2 0.22
## 763 17929045 131 4 2 NA 2 0.13
## 764 29969148 131 1 1 NA 2 0.03
## 765 4108082 130 312 3 NA 5 3.57
## 766 5024661 130 78 2 NA 4 0.96
## 767 6426551 130 60 2 NA 4 0.76
## 768 6679887 130 49 2 NA 4 0.62
## 769 7381770 130 57 2 NA 4 0.73
## 770 7898449 130 58 2 NA 4 0.77
## 771 8111502 130 8 1 NA 3 0.11
## 772 8111607 130 1 1 NA 3 0.25
## 773 8212422 130 31 4 NA 4 0.42
## 774 10126030 130 6 4 NA 4 0.12
## 775 16150642 130 4 1 NA 3 0.13
## 776 16260783 130 5 1 NA 2 0.09
## 777 18169687 130 6 1 NA 2 0.14
## 778 19231081 130 25 1 NA 2 0.60
## 779 19231371 130 2 1 NA 3 0.29
## 780 24763826 130 48 2 NA 2 1.20
## 781 24764493 130 7 2 NA 2 0.16
## 782 24765067 130 2 2 NA 2 0.08
## 783 24765141 130 1 2 NA 2 0.04
## 784 27638361 130 7 1 NA 2 0.18
## 785 30238429 130 2 1 NA 2 0.05
## 786 33669171 130 69 2 NA 2 2.23
## 787 33693358 130 1 1 NA 2 0.04
## 788 36325967 130 2 4 NA 4 0.08
## 789 42362577 130 6 3 NA 5 0.56
## 790 43336673 130 128 1 NA 2 6.41
## 791 5493930 129 266 3 NA 7 3.22
## 792 9739084 129 1 6 NA 6 0.04
## 793 15656782 129 32 1 NA 2 0.53
## 794 34071208 129 5 1 NA 2 0.16
## 795 4586160 128 9 6 NA 4 0.11
## 796 6242964 128 17 3 NA 3 0.22
## 797 18202395 128 29 1 NA 2 0.78
## 798 19615310 128 44 1 NA 2 0.81
## 799 19650919 128 17 1 NA 2 0.31
## 800 19668740 128 15 1 NA 2 0.28
## 801 19685674 128 10 1 NA 2 0.24
## 802 32837771 128 45 2 NA 5 1.33
## 803 16743909 127 19 1 NA 2 0.32
## 804 16750061 127 8 1 NA 2 0.14
## 805 20016671 127 3 2 NA 3 0.06
## 806 44283744 127 7 1 NA 2 0.41
## 807 48265411 127 2 2 NA 2 0.26
## 808 16846533 126 23 1 NA 2 0.40
## 809 20803693 126 3 1 NA 2 0.07
## 810 21283595 126 10 1 NA 2 0.20
## 811 22594189 126 4 1 NA 2 0.08
## 812 23380147 126 10 1 NA 2 0.23
## 813 50648462 126 1 1 NA 2 0.60
## 814 51075717 126 1 NA NA 1 0.91
## 815 52357276 126 1 1 NA 2 1.00
## 816 9268500 125 8 6 NA 6 0.12
## 817 13038831 125 47 1 NA 4 0.69
## 818 24782626 125 6 1 NA 2 0.15
## 819 40120307 125 4 1 NA 2 0.17
## 820 40904017 125 20 1 NA 2 0.88
## 821 41160357 125 1 6 NA 6 0.04
## 822 42885911 125 81 1 NA 2 3.98
## 823 43408005 125 17 1 NA 2 0.90
## 824 46144841 125 4 1 NA 2 0.48
## 825 46382569 125 2 1 NA 2 0.16
## 826 47912647 125 5 NA NA 2 0.55
## 827 50818643 125 1 1 NA 2 0.73
## 828 30357489 124 1 1 NA 2 0.34
## 829 32223767 124 4 1 NA 2 0.17
## 830 32528971 124 2 1 NA 2 0.07
## 831 33347361 124 4 1 NA 2 0.14
## 832 36855972 124 2 1 NA 2 0.47
## 833 9928008 123 92 1 NA 2 1.26
## 834 15792137 123 105 1 NA 1 1.71
## 835 17454856 123 58 2 NA 6 1.00
## 836 17929055 123 11 1 NA 1 0.36
## 837 36129690 123 1 1 NA 2 0.04
## 838 30354713 122 1 1 NA 2 0.25
## 839 34071596 122 17 1 NA 2 0.52
## 840 36860135 122 1 1 NA 2 0.29
## 841 38104971 122 11 1 NA 2 0.40
## 842 47423053 122 1 1 NA 2 0.24
## 843 47490384 122 1 1 NA 3 0.53
## 844 39212874 121 4 1 NA 2 0.18
## 845 40809355 121 15 1 NA 2 0.70
## 846 42796574 121 11 1 NA 2 0.83
## 847 44626865 121 1 1 NA 2 0.06
## 848 47188396 121 1 1 NA 2 0.12
## 849 48261012 121 1 1 NA 2 0.21
## 850 48264716 121 1 1 NA 2 0.16
## 851 982909 120 247 1 NA 1 2.32
## 852 13574617 120 14 2 NA 4 0.26
## 853 13936031 120 11 2 NA 4 0.23
## 854 18759060 120 11 1 NA 2 0.20
## 855 23277415 120 38 1 NA 2 0.88
## 856 28992199 120 1 1 NA 2 1.00
## 857 30487030 120 13 1 NA 2 0.44
## 858 32534020 120 3 1 NA 2 0.09
## 859 32815398 120 3 1 NA 2 0.09
## 860 34072244 120 12 1 NA 1 0.39
## 861 36570785 120 10 1 NA 1 0.34
## 862 36857645 120 2 1 NA 2 0.11
## 863 37924392 120 1 1 NA 2 0.04
## 864 37986233 120 6 1 NA 2 0.21
## 865 38308020 120 14 1 NA 2 0.50
## 866 41125664 120 1 2 NA 4 0.04
## 867 43492196 120 5 1 NA 2 0.27
## 868 45839899 120 2 3 NA 5 0.28
## 869 47912530 120 3 NA NA 2 1.02
## 870 747813 119 72 1 NA 4 0.65
## 871 1941719 119 77 1 NA 4 0.81
## 872 9901369 119 179 3 NA 4 2.46
## 873 13377049 119 15 1 NA 5 0.25
## 874 18517165 119 31 2 NA 4 0.56
## 875 18572753 119 24 1 NA 4 0.46
## 876 26791337 119 4 1 NA 4 0.10
## 877 33836101 119 1 1 NA 1 0.03
## 878 39218665 119 2 NA NA 1 0.08
## 879 43407835 119 92 1 NA 2 4.65
## 880 32010385 118 6 4 NA 4 0.20
## 881 32292005 118 3 2 NA 3 0.09
## 882 36808814 118 16 1 NA 2 0.55
## 883 40198092 118 15 1 NA 2 0.60
## 884 40213569 118 4 2 NA 4 0.16
## 885 43934914 118 2 1 NA 3 0.11
## 886 38681479 117 2 1 NA 2 0.27
## 887 44171737 117 7 1 NA 2 0.39
## 888 11381088 116 164 2 NA 3 2.33
## 889 14740975 115 62 1 NA 2 0.97
## 890 15087980 115 26 1 NA 2 0.42
## 891 17641382 115 5 1 NA 1 0.12
## 892 24636842 115 36 1 NA 2 0.87
## 893 31457968 115 15 1 NA 2 0.46
## 894 35770430 115 14 2 NA 3 0.46
## 895 38166428 115 1 1 NA 2 0.06
## 896 53000273 115 4 1 NA 1 3.43
## 897 34237184 114 1 4 NA 4 0.03
## 898 42417293 113 167 1 NA 2 7.59
## 899 43959679 113 6 3 NA 4 0.48
## 900 44121816 113 16 1 NA 2 0.92
## 901 5464246 112 11 1 NA 2 0.15
## 902 47913724 112 1 NA NA 2 0.13
## 903 51613814 112 3 1 NA 2 1.08
## 904 18199481 111 10 1 NA 1 0.29
## 905 34071837 111 36 1 NA 2 1.14
## 906 35077531 111 7 1 NA 1 0.23
## 907 41340735 111 4 1 NA 3 0.17
## 908 2547370 110 2 4 NA 4 0.05
## 909 3075620 110 7 1 NA 1 0.08
## 910 12947194 110 101 2 NA 2 1.50
## 911 18484277 110 21 1 NA 4 0.37
## 912 19714010 110 19 1 NA 2 0.38
## 913 23951500 110 4 1 NA 2 0.09
## 914 26853356 110 1 2 NA 3 0.04
## 915 37542721 110 1 1 NA 2 0.04
## 916 37757787 110 3 1 NA 2 0.12
## 917 47912268 110 2 NA NA 2 0.28
## 918 49661471 110 2 2 NA 4 0.73
## 919 1302185 109 91 2 NA 5 0.88
## 920 10819460 109 145 1 NA 2 2.05
## 921 26369349 109 63 1 NA 2 1.48
## 922 32292453 109 5 1 NA 2 0.16
## 923 35237622 109 5 1 NA 2 0.16
## 924 43404091 109 6 1 NA 3 0.34
## 925 6253881 108 1 1 NA 2 0.05
## 926 39334937 108 13 1 NA 3 0.50
## 927 42260393 108 1 NA NA 2 0.53
## 928 42588720 108 6 1 NA 1 0.52
## 929 53016155 107 1 2 NA 3 1.00
## 930 4441346 106 5 1 NA 3 0.06
## 931 9459389 106 24 1 NA 2 0.33
## 932 16044788 106 14 1 NA 2 0.23
## 933 17275135 106 15 1 NA 2 0.26
## 934 29552115 106 11 1 NA 1 0.29
## 935 35077950 106 3 1 NA 2 0.10
## 936 41305105 106 2 4 NA 4 0.09
## 937 9268058 105 35 5 NA 5 0.49
## 938 11642282 105 103 1 NA 2 1.48
## 939 16758638 105 14 1 NA 2 0.23
## 940 19229162 105 16 1 NA 2 0.39
## 941 28998095 105 1 1 NA 2 0.04
## 942 36760495 105 28 1 NA 2 0.95
## 943 48265114 105 5 1 NA 1 0.56
## 944 2451003 104 50 1 NA 2 0.53
## 945 48816051 104 2 6 NA 6 0.23
## 946 9054941 103 2 2 NA 2 0.06
## 947 45854835 103 17 1 NA 2 1.20
## 948 14191894 102 38 2 NA 4 0.59
## 949 35469684 102 3 1 NA 2 0.10
## 950 36581961 102 16 1 NA 2 0.54
## 951 4380000 101 8 1 NA 2 0.09
## 952 9866985 101 4 2 NA 2 0.09
## 953 34347420 101 1 1 NA 2 1.00
## 954 40904925 101 2 4 NA 4 0.08
## 955 47913062 101 1 NA NA 2 0.83
## 956 6620261 100 3 1 NA 2 0.05
## 957 6718219 100 58 2 NA 2 0.74
## 958 8113712 100 5 1 NA 3 0.11
## 959 8113821 100 4 1 NA 3 0.06
## 960 8113893 100 6 1 NA 3 0.09
## 961 8113936 100 6 1 NA 3 0.09
## 962 8114003 100 12 1 NA 3 0.16
## 963 12556334 100 2 1 NA 3 0.11
## 964 16150227 100 4 1 NA 3 0.14
## 965 17191773 100 8 1 NA 1 0.15
## 966 17736530 100 32 1 NA 2 0.59
## 967 20481470 100 11 1 NA 6 0.22
## 968 23279931 100 2 1 NA 2 0.05
## 969 25183623 100 5 1 NA 3 0.12
## 970 25184205 100 3 1 NA 3 0.16
## 971 30413459 100 3 1 NA 2 0.08
## 972 31218304 100 29 2 NA 3 0.80
## 973 31219674 100 13 3 NA 3 0.36
## 974 31657383 100 1 1 NA 2 0.03
## 975 38788624 100 1 1 NA 2 0.04
## 976 43658074 100 15 1 NA 3 0.80
## 977 45662807 100 2 1 NA 2 0.16
## 978 50562391 100 1 NA NA 2 0.22
## 979 4664392 99 102 1 NA 2 1.20
## 980 5494971 99 209 3 NA 6 2.55
## 981 11863888 99 77 1 NA 2 1.12
## 982 21013726 99 4 1 NA 1 0.11
## 983 25435388 99 52 1 NA 2 1.23
## 984 3209752 98 13 1 NA 1 0.46
## 985 4969777 98 6 1 NA 2 0.08
## 986 5908083 98 77 2 NA 4 0.97
## 987 6271100 98 33 1 NA 2 0.42
## 988 11817134 98 133 1 NA 2 1.94
## 989 22116641 98 28 2 NA 6 0.57
## 990 31573008 98 25 1 NA 1 0.70
## 991 38361167 98 13 2 NA 4 0.47
## 992 45895673 98 9 1 NA 2 0.63
## 993 24659042 97 181 1 NA 2 4.10
## 994 42910492 97 12 1 NA 2 0.57
## 995 5376182 96 205 1 NA 2 2.51
## 996 23999281 96 1 2 NA 2 0.08
## 997 23999593 96 11 2 NA 2 0.26
## 998 23999596 96 3 2 NA 2 0.09
## 999 24000355 96 5 1 NA 2 0.11
## 1000 24000763 96 23 1 NA 2 0.51
## 1001 24000873 96 25 1 NA 2 0.55
## 1002 24000938 96 10 1 NA 2 0.23
## 1003 32671732 96 5 1 NA 2 0.18
## 1004 36855460 96 3 1 NA 2 0.12
## 1005 36857064 96 3 1 NA 2 0.12
## 1006 38421932 96 23 1 NA 2 0.82
## 1007 38496138 96 2 1 NA 2 0.09
## 1008 52525651 96 3 2 NA 4 1.15
## 1009 28944791 95 7 1 NA 2 0.18
## 1010 35991648 95 27 1 NA 2 0.89
## 1011 39293936 95 7 2 NA 2 0.31
## 1012 6300577 94 25 1 NA 1 0.32
## 1013 35883439 94 6 1 NA 2 0.20
## 1014 37789401 94 1 1 NA 2 0.17
## 1015 49272085 94 1 1 NA 3 0.15
## 1016 49661822 94 2 4 NA 7 1.09
## 1017 9017107 93 13 1 NA 2 0.24
## 1018 28137638 92 11 1 NA 2 0.27
## 1019 31965730 92 13 1 NA 1 0.41
## 1020 49271788 91 1 1 NA 2 0.29
## 1021 4576362 90 77 1 NA 2 0.90
## 1022 4584539 90 87 1 NA 3 1.01
## 1023 4916186 90 24 1 NA 2 0.29
## 1024 4926634 90 168 2 NA 3 1.99
## 1025 6630341 90 99 1 NA 2 1.28
## 1026 6718514 90 75 1 NA 2 0.95
## 1027 7595693 90 11 1 NA 2 0.15
## 1028 8113569 90 3 1 NA 1 0.05
## 1029 12687038 90 74 1 NA 2 1.09
## 1030 16370834 90 32 1 NA 2 0.54
## 1031 16413107 90 32 1 NA 2 0.53
## 1032 16966634 90 28 2 NA 2 0.47
## 1033 18117026 90 15 1 NA 1 0.28
## 1034 20397202 90 19 1 NA 4 0.42
## 1035 20512779 90 38 1 NA 3 0.78
## 1036 21314479 90 6 1 NA 1 0.18
## 1037 22021287 90 9 1 NA 1 0.26
## 1038 23733935 90 5 1 NA 2 0.12
## 1039 24984672 90 110 1 NA 2 2.51
## 1040 25273104 90 13 1 NA 2 0.31
## 1041 25866359 90 8 1 NA 2 0.19
## 1042 27709128 90 29 2 NA 3 0.73
## 1043 31076781 90 20 2 NA 3 0.55
## 1044 31094939 90 2 1 NA 4 0.07
## 1045 31114726 90 57 1 NA 2 1.60
## 1046 31520512 90 16 1 NA 2 0.44
## 1047 31634142 90 31 1 NA 2 0.87
## 1048 31729758 90 9 1 NA 2 0.28
## 1049 33244499 90 13 2 NA 2 0.40
## 1050 37984003 90 3 1 NA 1 0.11
## 1051 37984524 90 2 1 NA 1 0.17
## 1052 38689712 90 4 1 NA 2 0.15
## 1053 39451454 90 5 2 NA 3 0.19
## 1054 50116380 90 1 1 NA 2 0.17
## 1055 4087935 89 14 1 NA 2 0.16
## 1056 7733844 89 66 1 NA 2 0.86
## 1057 8196359 89 3 1 NA 1 0.05
## 1058 11865360 89 98 1 NA 2 1.41
## 1059 14530157 89 9 1 NA 2 0.14
## 1060 15978100 89 6 1 NA 2 0.12
## 1061 16036564 89 11 1 NA 2 0.18
## 1062 17768467 89 10 2 NA 3 0.18
## 1063 24664051 89 134 2 NA 2 3.10
## 1064 29295230 89 5 2 NA 2 0.13
## 1065 39077406 89 5 1 NA 1 0.19
## 1066 41722716 89 1 1 NA 2 0.05
## 1067 3034137 88 9 1 NA 1 0.10
## 1068 3981252 88 2 1 NA 1 0.02
## 1069 4613432 88 27 1 NA 2 0.31
## 1070 6663906 88 18 1 NA 2 0.23
## 1071 7632462 88 12 1 NA 2 0.15
## 1072 7905972 88 5 2 NA 3 0.07
## 1073 9532788 88 206 NA NA 1 2.82
## 1074 9746208 88 157 1 NA 1 2.18
## 1075 12940550 88 9 1 NA 2 0.14
## 1076 14680376 88 9 1 NA 2 0.18
## 1077 14682068 88 22 1 NA 2 0.34
## 1078 16309636 88 69 1 NA 1 1.14
## 1079 24367364 88 2 1 NA 2 0.05
## 1080 31204753 88 23 1 NA 1 0.65
## 1081 31293668 88 1 1 NA 2 0.03
## 1082 34454047 88 12 1 NA 1 0.38
## 1083 34943409 88 2 1 NA 2 0.08
## 1084 34943627 88 7 1 NA 2 0.23
## 1085 46286371 88 1 1 NA 2 0.26
## 1086 48098802 88 1 NA NA 2 0.11
## 1087 48246660 88 2 2 NA 1 0.37
## 1088 52574199 88 1 1 NA 2 0.64
## 1089 5355795 86 251 1 NA 2 3.02
## 1090 28415998 86 9 2 NA 2 0.23
## 1091 32475586 86 7 1 NA 2 0.22
## 1092 39062013 86 2 1 NA 2 0.07
## 1093 45277806 86 2 1 NA 2 0.23
## 1094 3863231 85 67 1 NA 2 0.75
## 1095 8890247 85 45 4 NA 4 0.61
## 1096 11965790 85 30 1 NA 2 0.44
## 1097 12299369 85 6 1 NA 2 0.10
## 1098 13965663 85 12 4 NA 4 0.18
## 1099 19642785 85 15 1 NA 2 0.28
## 1100 21312604 85 11 1 NA 1 0.22
## 1101 24170288 85 3 1 NA 2 0.07
## 1102 25815030 85 16 2 NA 2 0.37
## 1103 36080117 85 3 1 NA 1 0.10
## 1104 46589112 85 8 1 NA 2 0.65
## 1105 4252548 84 66 1 NA 2 0.76
## 1106 5377342 84 294 1 NA 2 3.54
## 1107 6983613 84 45 1 NA 2 0.58
## 1108 43393378 84 18 1 NA 2 0.91
## 1109 606784 83 80 1 NA 2 0.89
## 1110 6142390 83 31 1 NA 2 0.38
## 1111 6381495 83 60 1 NA 2 0.75
## 1112 14248210 83 48 1 NA 2 0.73
## 1113 14697600 83 39 1 NA 2 0.61
## 1114 14718255 83 20 1 NA 2 0.31
## 1115 16007789 83 17 1 NA 2 0.29
## 1116 36315855 83 3 1 NA 2 0.11
## 1117 46446227 83 3 1 NA 2 0.26
## 1118 71896 82 24 1 NA 3 0.19
## 1119 71903 82 47 2 NA 3 0.36
## 1120 3790364 82 26 1 NA 2 0.30
## 1121 5739284 82 42 1 NA 2 0.51
## 1122 23362544 82 10 2 NA 1 0.22
## 1123 26583889 82 5 1 NA 2 0.16
## 1124 37788787 82 3 1 NA 2 0.13
## 1125 41926070 82 2 1 NA 1 2.00
## 1126 20426981 81 6 1 NA 2 0.13
## 1127 29614706 81 28 1 NA 1 0.77
## 1128 39281565 81 2 1 NA 3 0.11
## 1129 2838555 80 61 1 NA 2 0.66
## 1130 5919270 80 247 1 NA 6 3.04
## 1131 6117032 80 130 1 NA 2 1.60
## 1132 6128096 80 66 NA NA 2 0.84
## 1133 6619955 80 64 1 NA 2 0.83
## 1134 7662314 80 25 1 NA 2 0.33
## 1135 8264717 80 148 1 NA 2 1.94
## 1136 9075438 80 9 1 NA 2 0.12
## 1137 9584573 80 12 1 NA 1 0.32
## 1138 13275737 80 56 1 NA 2 0.84
## 1139 13472462 80 10 1 NA 5 0.18
## 1140 15722934 80 61 1 NA 2 0.99
## 1141 16891958 80 233 1 NA 2 3.89
## 1142 22684718 80 1 1 NA 2 0.04
## 1143 25282863 80 103 4 NA 3 2.36
## 1144 25516668 80 9 1 NA 2 0.21
## 1145 27513236 80 6 2 NA 4 0.15
## 1146 27513625 80 5 2 NA 2 0.12
## 1147 27581596 80 2 1 NA 2 0.06
## 1148 28874135 80 9 1 NA 3 0.23
## 1149 29302695 80 42 2 NA 2 1.18
## 1150 39731492 80 1 1 NA 2 0.04
## 1151 39732502 80 1 1 NA 2 0.04
## 1152 40855337 80 16 1 NA 2 0.66
## 1153 50490653 80 2 1 NA 2 1.58
## 1154 1615074 79 5 1 NA 1 0.11
## 1155 9055103 79 26 1 NA 2 0.35
## 1156 9637478 79 5 1 NA 2 0.08
## 1157 12738896 79 7 1 NA 2 0.10
## 1158 30410480 79 1 1 NA 1 0.03
## 1159 38632350 79 1 1 NA 2 0.04
## 1160 45771807 79 1 5 NA 5 0.12
## 1161 10626378 78 14 1 NA 2 0.20
## 1162 12859055 78 83 1 NA 2 1.22
## 1163 16007139 78 12 1 NA 2 0.21
## 1164 16291031 78 34 1 NA 2 0.56
## 1165 26435923 78 30 1 NA 1 0.73
## 1166 32351804 78 1 1 NA 1 0.04
## 1167 33536365 78 33 3 NA 2 1.00
## 1168 34186257 78 14 1 NA 1 0.44
## 1169 48496237 78 4 1 NA 5 0.41
## 1170 6906010 77 55 1 NA 2 0.71
## 1171 11465411 77 40 2 NA 2 0.69
## 1172 4541072 76 16 1 NA 2 0.23
## 1173 6638508 76 15 1 NA 1 0.19
## 1174 6300043 75 51 1 NA 2 0.73
## 1175 6889842 75 61 1 NA 2 0.77
## 1176 7138922 75 32 1 NA 2 0.42
## 1177 7472739 75 20 1 NA 1 0.26
## 1178 18203227 75 10 1 NA 1 0.18
## 1179 21765670 75 32 1 NA 2 0.66
## 1180 23438702 75 19 1 NA 2 0.42
## 1181 24023173 75 2 1 NA 2 0.05
## 1182 31095224 75 13 1 NA 2 0.36
## 1183 35048026 75 3 1 NA 1 0.11
## 1184 38648139 75 2 1 NA 2 0.08
## 1185 41120765 75 21 1 NA 2 0.88
## 1186 53181539 75 5 1 NA 2 3.00
## 1187 6183734 74 86 1 NA 2 1.08
## 1188 6431505 74 65 1 NA 2 0.82
## 1189 7829853 74 13 1 NA 2 0.17
## 1190 7830009 74 34 1 NA 2 0.44
## 1191 7830012 74 22 1 NA 2 0.29
## 1192 8330622 74 8 1 NA 2 0.11
## 1193 24056026 74 14 1 NA 2 0.32
## 1194 36888718 74 13 1 NA 2 0.44
## 1195 50333798 74 2 1 NA 1 1.15
## 1196 6958476 73 38 1 NA 2 0.48
## 1197 13132703 73 16 1 NA 2 0.24
## 1198 13150852 73 12 1 NA 2 0.20
## 1199 21805009 73 12 1 NA 2 0.26
## 1200 21847888 73 16 1 NA 2 0.34
## 1201 22947456 73 9 1 NA 2 0.21
## 1202 294281 72 133 1 NA 2 1.10
## 1203 6142880 72 33 1 NA 1 0.41
## 1204 13418425 72 92 1 NA 2 1.48
## 1205 15991345 72 29 1 NA 2 0.47
## 1206 16236835 72 24 1 NA 2 0.41
## 1207 30881232 72 7 1 NA 1 0.20
## 1208 35008965 72 16 1 NA 2 0.54
## 1209 37419221 72 4 1 NA 2 0.14
## 1210 38407910 72 7 1 NA 2 0.26
## 1211 43328947 71 1 4 NA 4 1.00
## 1212 5253599 70 12 1 NA 2 0.15
## 1213 5798211 70 151 1 NA 7 1.91
## 1214 5827713 70 286 1 NA 5 3.53
## 1215 6099703 70 147 1 NA 2 1.81
## 1216 6993627 70 88 1 NA 2 1.12
## 1217 7662310 70 83 1 NA 2 1.09
## 1218 16118606 70 15 1 NA 2 0.24
## 1219 16823251 70 38 1 NA 2 0.64
## 1220 18052476 70 52 1 NA 2 0.92
## 1221 22627321 70 5 4 NA 4 0.11
## 1222 26683920 70 69 1 NA 2 1.64
## 1223 30571312 70 27 1 NA 2 0.74
## 1224 31948394 70 11 1 NA 1 0.32
## 1225 34489654 70 19 1 NA 2 0.61
## 1226 40363705 70 1 1 NA 1 0.04
## 1227 48860282 70 1 1 NA 2 0.29
## 1228 369141 69 81 1 NA 2 0.81
## 1229 765579 69 2 1 NA 1 0.02
## 1230 3667894 69 2 1 NA 1 0.06
## 1231 10427701 69 2 1 NA 1 0.04
## 1232 12475063 69 72 1 NA 1 1.05
## 1233 16006904 69 12 1 NA 2 0.25
## 1234 20426982 69 4 1 NA 2 0.08
## 1235 20628822 69 7 1 NA 2 0.17
## 1236 24635669 69 1 1 NA 1 0.06
## 1237 24636266 69 2 1 NA 1 0.05
## 1238 24707713 69 129 2 NA 2 2.93
## 1239 28772425 69 2 1 NA 1 0.07
## 1240 30453430 69 1 1 NA 1 0.03
## 1241 32171204 69 2 1 NA 1 0.14
## 1242 32729464 69 1 1 NA 1 0.03
## 1243 32729775 69 1 1 NA 1 0.12
## 1244 32777778 69 2 1 NA 1 0.07
## 1245 33885738 69 1 1 NA 1 0.03
## 1246 35300740 69 1 1 NA 1 0.19
## 1247 36226718 69 5 1 NA 1 0.18
## 1248 36354920 69 1 1 NA 1 0.03
## 1249 37435377 69 2 1 NA 1 0.07
## 1250 37945388 69 1 1 NA 1 0.04
## 1251 38639800 69 1 1 NA 1 0.17
## 1252 45680876 69 1 1 NA 1 0.07
## 1253 50967800 69 1 1 NA 1 0.19
## 1254 6477665 68 55 1 NA 2 0.69
## 1255 12614519 68 71 1 NA 2 1.03
## 1256 13703898 68 59 2 NA 2 1.06
## 1257 15364942 68 4 1 NA 3 0.08
## 1258 18235755 68 138 1 NA 2 2.41
## 1259 19176815 68 30 1 NA 2 0.55
## 1260 21502138 68 16 1 NA 2 0.33
## 1261 22000933 68 18 1 NA 2 0.37
## 1262 35647924 68 3 1 NA 2 0.11
## 1263 39692652 68 2 1 NA 2 0.08
## 1264 40267527 68 24 1 NA 2 0.94
## 1265 40516462 68 2 1 NA 2 0.08
## 1266 4561484 67 62 1 NA 2 0.75
## 1267 35885309 67 16 1 NA 2 0.54
## 1268 369145 66 165 1 NA 2 1.40
## 1269 6261313 66 10 1 NA 1 0.13
## 1270 7250803 66 25 1 NA 3 0.36
## 1271 18508828 66 40 2 NA 3 0.72
## 1272 30261649 66 6 1 NA 2 0.19
## 1273 32411075 66 141 1 NA 1 4.32
## 1274 53614218 66 1 1 NA 1 1.00
## 1275 2922184 65 13 1 NA 1 0.18
## 1276 4616523 65 96 1 NA 2 1.12
## 1277 10001615 65 44 4 NA 16 0.60
## 1278 12434512 65 5 1 NA 1 0.07
## 1279 13241591 65 4 1 NA 1 0.09
## 1280 13286282 65 50 1 NA 1 0.75
## 1281 13692568 65 5 3 NA 4 0.09
## 1282 15428715 65 24 1 NA 2 0.38
## 1283 15773382 65 4 1 NA 2 0.07
## 1284 20815980 65 53 1 NA 2 1.04
## 1285 22726244 65 2 1 NA 1 0.05
## 1286 22987507 65 46 1 NA 1 1.08
## 1287 23760158 65 89 1 NA 2 2.55
## 1288 28789161 65 21 1 NA 1 0.60
## 1289 31201327 65 60 1 NA 2 1.68
## 1290 31687465 65 4 1 NA 2 0.14
## 1291 33490643 65 11 1 NA 1 0.35
## 1292 34834829 65 19 1 NA 2 0.62
## 1293 35949995 65 1 1 NA 2 0.03
## 1294 38692545 65 1 1 NA 2 0.05
## 1295 39158146 65 2 2 NA 1 0.08
## 1296 40316461 65 12 2 NA 2 0.49
## 1297 40712903 65 3 1 NA 2 0.12
## 1298 4360679 64 133 1 NA 2 1.53
## 1299 4360902 64 210 1 NA 2 2.42
## 1300 4645834 64 50 1 NA 2 0.59
## 1301 4656316 64 49 1 NA 2 0.58
## 1302 4990392 64 81 1 NA 2 0.96
## 1303 5118006 64 67 1 NA 2 0.80
## 1304 6120794 64 66 1 NA 2 0.81
## 1305 8313545 64 95 1 NA 2 1.25
## 1306 8313660 64 72 1 NA 2 0.95
## 1307 12484261 64 274 1 NA 2 4.60
## 1308 23361035 64 1 1 NA 1 0.04
## 1309 24420175 64 6 1 NA 1 0.13
## 1310 24927780 64 37 1 NA 2 0.85
## 1311 24975249 64 20 1 NA 2 0.46
## 1312 25246986 64 45 1 NA 2 1.04
## 1313 27271822 64 6 1 NA 2 0.15
## 1314 27272375 64 43 1 NA 2 1.04
## 1315 31214273 64 2 1 NA 2 0.06
## 1316 36920538 64 4 1 NA 2 0.14
## 1317 36925569 64 7 1 NA 2 0.25
## 1318 39804543 64 1 1 NA 2 0.04
## 1319 1678744 63 150 1 NA 1 1.52
## 1320 1678755 63 93 1 NA 1 0.97
## 1321 3859180 63 81 1 NA 2 0.91
## 1322 17884419 63 7 1 NA 2 0.12
## 1323 20581173 63 3 2 NA 3 0.09
## 1324 33748928 63 25 1 NA 2 0.77
## 1325 36244182 63 3 1 NA 2 2.25
## 1326 37353696 63 6 2 NA 2 0.22
## 1327 40881888 63 25 1 NA 2 1.05
## 1328 6352827 62 126 1 NA 3 2.14
## 1329 28321986 62 39 1 NA 3 1.02
## 1330 49209267 62 1 1 NA 1 0.12
## 1331 5006143 61 5 1 NA 1 0.07
## 1332 20640481 61 4 1 NA 2 0.08
## 1333 23169041 61 51 2 NA 3 1.10
## 1334 24511964 61 38 1 NA 1 0.88
## 1335 39104189 61 3 NA NA 1 0.12
## 1336 42696868 61 26 1 NA 2 1.20
## 1337 42697304 61 5 1 NA 2 0.25
## 1338 42750393 61 1 1 NA 2 0.16
## 1339 5827998 60 296 1 NA 3 3.62
## 1340 9828451 60 10 1 NA 1 0.14
## 1341 11365125 60 46 1 NA 2 0.65
## 1342 14435012 60 4 1 NA 1 0.08
## 1343 16231818 60 98 1 NA 2 1.63
## 1344 19509543 60 35 1 NA 1 0.65
## 1345 21069176 60 3 1 NA 2 0.09
## 1346 21358634 60 86 1 NA 2 1.72
## 1347 21553387 60 2 2 NA 2 0.04
## 1348 23277237 60 50 2 NA 3 1.07
## 1349 24403090 60 3 1 NA 1 0.07
## 1350 24979153 60 113 1 NA 2 2.59
## 1351 31775980 60 18 1 NA 1 0.51
## 1352 34582881 60 2 1 NA 2 0.06
## 1353 35744548 60 67 1 NA 1 2.19
## 1354 36285087 60 22 1 NA 2 0.74
## 1355 37947662 60 1 NA NA 2 0.05
## 1356 39488323 60 3 1 NA 3 0.15
## 1357 42105787 60 1 3 NA 2 0.05
## 1358 42545364 60 4 1 NA 2 0.18
## 1359 42545850 60 5 1 NA 1 0.24
## 1360 42829911 60 2 2 NA 2 0.11
## 1361 43967264 60 5 1 NA 2 0.29
## 1362 330089 59 10 1 NA 1 0.10
## 1363 1508829 59 9 1 NA 1 0.10
## 1364 6891630 59 4 1 NA 1 0.06
## 1365 7250709 59 5 5 NA 2 0.08
## 1366 9563744 59 95 1 NA 1 1.29
## 1367 9738917 59 4 2 NA 2 0.06
## 1368 11993987 59 11 1 NA 1 0.20
## 1369 12211385 59 25 12 NA 2 0.36
## 1370 12975736 59 2 1 NA 1 0.07
## 1371 13966783 59 2 1 NA 1 0.03
## 1372 15441196 59 6 1 NA 1 0.09
## 1373 17483368 59 2 1 NA 1 0.03
## 1374 17766467 59 2 1 NA 1 0.03
## 1375 18109887 59 15 1 NA 2 0.27
## 1376 18619859 59 22 1 NA 2 0.50
## 1377 19056267 59 2 1 NA 1 0.05
## 1378 22590845 59 2 1 NA 1 0.04
## 1379 24919927 59 5 1 NA 1 0.17
## 1380 25087117 59 2 1 NA 1 0.05
## 1381 27173843 59 1 1 NA 1 0.03
## 1382 30434753 59 1 1 NA 1 0.03
## 1383 30520209 59 1 1 NA 1 0.03
## 1384 30776617 59 1 1 NA 1 0.04
## 1385 30966211 59 2 1 NA 1 0.06
## 1386 31275547 59 1 1 NA 1 0.07
## 1387 33003533 59 1 1 NA 1 0.04
## 1388 33722089 59 2 1 NA 1 0.06
## 1389 34076777 59 2 1 NA 1 0.07
## 1390 34733071 59 4 1 NA 1 0.15
## 1391 35026116 59 1 1 NA 1 0.03
## 1392 35508758 59 2 1 NA 1 0.07
## 1393 35961334 59 9 1 NA 3 0.32
## 1394 36167207 59 1 1 NA 1 0.06
## 1395 38049336 59 2 1 NA 1 0.07
## 1396 38530815 59 1 1 NA 1 0.04
## 1397 38986391 59 1 1 NA 1 0.04
## 1398 40226189 59 2 1 NA 1 0.08
## 1399 40267722 59 20 1 NA 1 0.78
## 1400 40457299 59 2 NA NA 1 0.08
## 1401 40909907 59 30 1 NA 2 1.24
## 1402 45440615 59 5 NA NA 1 0.41
## 1403 48617963 59 2 1 NA 1 0.23
## 1404 7321238 58 34 1 NA 2 0.46
## 1405 9635192 58 188 NA NA 1 2.55
## 1406 43542472 58 12 1 NA 2 0.63
## 1407 51834127 58 3 1 NA 2 0.79
## 1408 7765392 57 12 1 NA 1 0.16
## 1409 16565287 57 81 1 NA 3 1.35
## 1410 28165463 57 46 36 NA 6 1.15
## 1411 5551665 56 18 1 NA 1 0.22
## 1412 7927886 56 29 1 NA 2 0.39
## 1413 11760026 56 2 1 NA 2 0.04
## 1414 17769862 56 104 2 NA 3 1.80
## 1415 28998191 56 2 1 NA 1 0.07
## 1416 31886652 56 30 1 NA 2 0.85
## 1417 37619286 56 2 4 NA 2 0.07
## 1418 7766300 55 1 1 NA 2 0.03
## 1419 11980197 55 71 1 NA 1 1.10
## 1420 18184250 55 117 3 NA 4 2.08
## 1421 23457264 55 17 1 NA 1 0.37
## 1422 24821628 55 2 2 NA 3 0.07
## 1423 24863189 55 52 2 NA 4 1.18
## 1424 25860399 55 1 1 NA 1 0.04
## 1425 28793889 55 1 2 NA 3 0.04
## 1426 30570119 55 1 1 NA 1 0.04
## 1427 30922260 55 4 1 NA 1 0.11
## 1428 32604498 55 1 2 NA 2 0.03
## 1429 40816592 55 3 1 NA 1 0.13
## 1430 43015899 55 1 1 NA 2 0.07
## 1431 45533543 55 1 1 NA 1 0.07
## 1432 13361848 54 2 1 NA 1 0.04
## 1433 28998161 54 9 1 NA 1 0.24
## 1434 275343 52 20 1 NA 1 0.19
## 1435 12762246 52 62 1 NA 1 0.92
## 1436 16519375 52 18 2 NA 1 0.49
## 1437 46322024 52 9 1 NA 1 0.74
## 1438 48591933 52 1 2 NA 3 0.53
## 1439 9054629 51 23 1 NA 1 0.31
## 1440 18513959 51 1 1 NA 1 0.03
## 1441 27406451 51 40 1 NA 3 1.00
## 1442 32203558 51 1 1 NA 2 0.04
## 1443 34236667 51 8 10 NA 2 0.25
## 1444 41052344 51 1 1 NA 1 0.09
## 1445 2156372 50 14 1 NA 1 0.16
## 1446 9281075 50 29 1 NA 1 0.39
## 1447 9320962 50 95 2 NA 2 1.30
## 1448 10848771 50 354 1 NA 2 4.99
## 1449 13226950 50 3 2 NA 2 0.05
## 1450 14700365 50 2 1 NA 2 0.05
## 1451 15902723 50 45 1 NA 1 0.72
## 1452 16231627 50 167 1 NA 2 2.72
## 1453 16231741 50 88 2 NA 2 1.43
## 1454 16231781 50 127 2 NA 2 2.09
## 1455 17015281 50 4 1 NA 3 0.07
## 1456 17046048 50 4 2 NA 3 0.07
## 1457 17595156 50 24 1 NA 2 0.41
## 1458 20865016 50 41 2 NA 2 0.79
## 1459 21061528 50 29 1 NA 2 0.58
## 1460 23211763 50 1 1 NA 2 0.03
## 1461 28116308 50 2 1 NA 3 0.05
## 1462 28998181 50 1 1 NA 1 0.04
## 1463 30363503 50 1 1 NA 1 0.03
## 1464 31854536 50 21 1 NA 1 0.61
## 1465 32227139 50 15 1 NA 2 0.43
## 1466 33460906 50 8 1 NA 1 0.25
## 1467 35048987 50 2 1 NA 1 0.07
## 1468 35144181 50 2 1 NA 1 0.08
## 1469 36989732 50 2 1 NA 1 0.07
## 1470 42780473 50 1 NA NA 2 0.05
## 1471 43177325 50 13 1 NA 2 0.64
## 1472 324945 49 14 1 NA 1 0.12
## 1473 10598600 49 215 1 NA 2 3.17
## 1474 13157253 49 3 1 NA 1 0.08
## 1475 15893111 49 17 1 NA 1 0.27
## 1476 17414394 49 16 NA NA 16 0.29
## 1477 18286281 49 2 1 NA 1 0.04
## 1478 18434466 49 68 1 NA 2 1.24
## 1479 20625726 49 1 1 NA 1 0.04
## 1480 21913235 49 1 1 NA 1 0.04
## 1481 21916263 49 3 1 NA 1 0.07
## 1482 22345943 49 2 1 NA 1 0.04
## 1483 22376153 49 2 1 NA 1 0.07
## 1484 22395492 49 2 1 NA 1 0.06
## 1485 24528929 49 76 1 NA 2 1.71
## 1486 29325647 49 1 1 NA 1 0.05
## 1487 29355663 49 2 1 NA 1 0.06
## 1488 29947936 49 1 1 NA 1 0.04
## 1489 30058572 49 1 1 NA 1 0.03
## 1490 30783602 49 2 1 NA 1 0.07
## 1491 32777995 49 1 1 NA 1 0.03
## 1492 33085362 49 1 1 NA 1 0.04
## 1493 34288316 49 1 1 NA 1 0.03
## 1494 34346401 49 1 1 NA 1 0.03
## 1495 34654117 49 1 1 NA 1 0.04
## 1496 34692602 49 12 10 NA 2 0.39
## 1497 35082329 49 16 1 NA 1 0.51
## 1498 35883311 49 6 1 NA 1 0.20
## 1499 36216542 49 33 2 NA 2 1.16
## 1500 38035489 49 1 1 NA 1 0.04
## 1501 38910295 49 1 1 NA 1 0.04
## 1502 38935611 49 3 1 NA 1 0.22
## 1503 39115031 49 1 1 NA 1 0.04
## 1504 39380253 49 2 1 NA 1 0.08
## 1505 39451138 49 1 1 NA 2 0.05
## 1506 39451764 49 1 1 NA 1 0.05
## 1507 39488084 49 2 1 NA 1 0.08
## 1508 39638066 49 4 1 NA 1 0.16
## 1509 39822559 49 1 1 NA 1 0.10
## 1510 40211954 49 1 1 NA 1 0.05
## 1511 41112238 49 3 2 NA 2 0.13
## 1512 41299496 49 1 1 NA 1 0.04
## 1513 41304318 49 1 1 NA 1 0.04
## 1514 41323209 49 3 1 NA 1 0.13
## 1515 41566195 49 1 1 NA 1 0.05
## 1516 42144452 49 1 1 NA 1 0.24
## 1517 42190445 49 1 1 NA 1 0.05
## 1518 42752743 49 1 1 NA 1 0.06
## 1519 42753075 49 1 1 NA 1 0.06
## 1520 42872451 49 1 1 NA 1 0.05
## 1521 43112898 49 1 1 NA 1 0.05
## 1522 48688813 49 2 1 NA 1 0.24
## 1523 50492656 49 1 1 NA 1 0.17
## 1524 344803 48 58 1 NA 1 0.49
## 1525 9464059 48 107 1 NA 2 1.77
## 1526 20888336 48 99 1 NA 2 1.92
## 1527 22143968 48 77 2 NA 3 1.57
## 1528 22348216 48 50 1 NA 3 1.05
## 1529 27513348 48 50 3 NA 3 1.51
## 1530 31294602 48 1 1 NA 1 0.03
## 1531 37545814 48 1 1 NA 1 0.04
## 1532 42569842 48 5 1 NA 2 0.24
## 1533 49577387 48 2 2 NA 3 1.58
## 1534 10040969 47 59 16 NA 16 0.81
## 1535 16183428 47 11 16 NA 16 0.19
## 1536 22158920 47 31 1 NA 3 0.66
## 1537 32303894 47 1 1 NA 1 0.03
## 1538 5609608 46 69 1 NA 1 0.86
## Property_Type Room_Type Rating
## 1 Boat Entire home/apt 4.74
## 2 Entire serviced apartment Entire home/apt 5.00
## 3 Room in hotel <NA> 5.00
## 4 Room in boutique hotel <NA> 4.00
## 5 Entire condominium (condo) Entire home/apt 4.88
## 6 Entire condominium (condo) Entire home/apt 5.00
## 7 Entire condominium (condo) Entire home/apt 5.00
## 8 Private room in condominium (condo) Private room 5.00
## 9 Entire condominium (condo) Entire home/apt 5.00
## 10 Entire serviced apartment Entire home/apt 4.86
## 11 Entire condominium (condo) Entire home/apt 4.00
## 12 Entire rental unit Entire home/apt 4.86
## 13 Entire serviced apartment Entire home/apt 4.40
## 14 Entire rental unit Entire home/apt 4.90
## 15 Entire serviced apartment Entire home/apt 5.00
## 16 Entire serviced apartment Entire home/apt 5.00
## 17 Entire serviced apartment Entire home/apt 4.88
## 18 Entire serviced apartment Entire home/apt 4.82
## 19 Room in boutique hotel <NA> 4.00
## 20 Entire rental unit Entire home/apt 5.00
## 21 Entire rental unit Entire home/apt 4.25
## 22 Entire condominium (condo) Entire home/apt 4.45
## 23 Entire rental unit Entire home/apt 5.00
## 24 Entire rental unit Entire home/apt 5.00
## 25 Entire serviced apartment Entire home/apt 4.70
## 26 Room in hotel Private room 5.00
## 27 Entire serviced apartment Entire home/apt 4.86
## 28 Room in hotel Private room 5.00
## 29 Entire serviced apartment Entire home/apt 5.00
## 30 Room in hotel Private room 4.00
## 31 Private room in serviced apartment Private room 5.00
## 32 Entire serviced apartment Entire home/apt 4.80
## 33 Entire condominium (condo) Entire home/apt 0.00
## 34 Entire condominium (condo) Entire home/apt 4.00
## 35 Entire rental unit Entire home/apt 5.00
## 36 Entire serviced apartment Entire home/apt 4.84
## 37 Room in serviced apartment <NA> 4.50
## 38 Entire rental unit Entire home/apt 5.00
## 39 Entire serviced apartment Entire home/apt 5.00
## 40 Entire rental unit Entire home/apt 5.00
## 41 Entire rental unit Entire home/apt 5.00
## 42 Private room in residential home Private room 4.62
## 43 Room in boutique hotel Private room 4.50
## 44 Room in boutique hotel Private room 5.00
## 45 Entire condominium (condo) Entire home/apt 4.87
## 46 Private room in hostel Private room 3.50
## 47 Room in boutique hotel Private room 5.00
## 48 Entire condominium (condo) Entire home/apt 4.86
## 49 Room in boutique hotel <NA> 4.50
## 50 Room in hotel Private room 5.00
## 51 Entire condominium (condo) Entire home/apt 5.00
## 52 Entire condominium (condo) Entire home/apt 5.00
## 53 Entire rental unit Entire home/apt 4.60
## 54 Entire serviced apartment Entire home/apt 5.00
## 55 Entire condominium (condo) Entire home/apt 4.83
## 56 Entire serviced apartment Entire home/apt 4.71
## 57 Entire serviced apartment Entire home/apt 5.00
## 58 Entire condominium (condo) Entire home/apt 4.91
## 59 Entire condominium (condo) Entire home/apt 4.96
## 60 Room in hotel Private room 5.00
## 61 Room in hotel Private room 4.67
## 62 Private room in condominium (condo) Private room 4.91
## 63 Entire serviced apartment Entire home/apt 4.90
## 64 Entire serviced apartment Entire home/apt 4.79
## 65 Entire rental unit Entire home/apt 4.00
## 66 Entire rental unit Entire home/apt 3.00
## 67 Entire condominium (condo) Entire home/apt 4.85
## 68 Entire serviced apartment Entire home/apt 5.00
## 69 Entire serviced apartment Entire home/apt 4.00
## 70 Entire serviced apartment Entire home/apt 4.40
## 71 Entire serviced apartment Entire home/apt 5.00
## 72 Entire serviced apartment Entire home/apt 5.00
## 73 Entire rental unit Entire home/apt 5.00
## 74 Entire serviced apartment Entire home/apt 5.00
## 75 Entire serviced apartment Entire home/apt 5.00
## 76 Entire serviced apartment Entire home/apt 4.00
## 77 Entire condominium (condo) Entire home/apt 4.75
## 78 Entire condominium (condo) Entire home/apt 4.00
## 79 Entire rental unit Entire home/apt 5.00
## 80 Entire condominium (condo) Entire home/apt 4.00
## 81 Entire rental unit Entire home/apt 4.73
## 82 Entire condominium (condo) Entire home/apt 4.81
## 83 Room in boutique hotel Private room 5.00
## 84 Entire rental unit Entire home/apt 4.50
## 85 Room in boutique hotel Private room 5.00
## 86 Room in boutique hotel Private room 5.00
## 87 Room in boutique hotel <NA> 4.50
## 88 Room in bed and breakfast <NA> 5.00
## 89 Entire serviced apartment Entire home/apt 4.00
## 90 Entire rental unit Entire home/apt 2.50
## 91 Entire condominium (condo) Entire home/apt 5.00
## 92 Room in hotel Private room 5.00
## 93 Entire serviced apartment Entire home/apt 5.00
## 94 Entire condominium (condo) Entire home/apt 4.86
## 95 Entire condominium (condo) Entire home/apt 4.82
## 96 Private room in serviced apartment Private room 3.00
## 97 Entire condominium (condo) Entire home/apt 4.94
## 98 Entire condominium (condo) Entire home/apt 4.77
## 99 Entire condominium (condo) Entire home/apt 4.83
## 100 Entire rental unit Entire home/apt 4.89
## 101 Entire serviced apartment Entire home/apt 4.95
## 102 Room in boutique hotel Private room 5.00
## 103 Entire residential home Entire home/apt 4.62
## 104 Entire serviced apartment Entire home/apt 4.71
## 105 Entire serviced apartment Entire home/apt 5.00
## 106 Room in hostel <NA> 4.00
## 107 Entire rental unit Entire home/apt 4.42
## 108 Entire condominium (condo) Entire home/apt 4.42
## 109 Room in serviced apartment <NA> 4.89
## 110 Room in hotel Private room 5.00
## 111 Room in serviced apartment <NA> 4.71
## 112 Entire condominium (condo) Entire home/apt 4.25
## 113 Entire rental unit Entire home/apt 4.00
## 114 Room in boutique hotel Private room 5.00
## 115 Entire condominium (condo) Entire home/apt 4.74
## 116 Entire serviced apartment Entire home/apt 5.00
## 117 Entire condominium (condo) Entire home/apt 4.84
## 118 Entire condominium (condo) Entire home/apt 4.94
## 119 Entire condominium (condo) Entire home/apt 5.00
## 120 Entire condominium (condo) Entire home/apt 4.14
## 121 Entire condominium (condo) Entire home/apt 5.00
## 122 Entire rental unit Entire home/apt 4.00
## 123 Entire serviced apartment Entire home/apt 4.00
## 124 Entire rental unit Entire home/apt 4.00
## 125 Room in boutique hotel <NA> 4.86
## 126 Entire serviced apartment Entire home/apt 4.78
## 127 Entire serviced apartment Entire home/apt 0.00
## 128 Entire serviced apartment Entire home/apt 3.00
## 129 Entire rental unit Entire home/apt 5.00
## 130 Entire rental unit Entire home/apt 4.78
## 131 Room in serviced apartment <NA> 4.80
## 132 Entire serviced apartment Entire home/apt 4.69
## 133 Entire rental unit Entire home/apt 4.44
## 134 Entire rental unit Entire home/apt 5.00
## 135 Entire condominium (condo) Entire home/apt 4.96
## 136 Entire condominium (condo) Entire home/apt 5.00
## 137 Entire rental unit Entire home/apt 5.00
## 138 Entire serviced apartment Entire home/apt 5.00
## 139 Private room in hostel Private room 5.00
## 140 Room in boutique hotel <NA> 4.68
## 141 Entire condominium (condo) Entire home/apt 4.38
## 142 Room in boutique hotel <NA> 4.73
## 143 Entire rental unit Entire home/apt 4.00
## 144 Entire residential home Entire home/apt 4.77
## 145 Entire rental unit Entire home/apt 4.87
## 146 Entire serviced apartment Entire home/apt 5.00
## 147 Entire condominium (condo) Entire home/apt 4.96
## 148 Entire serviced apartment Entire home/apt 4.67
## 149 Entire rental unit Entire home/apt 5.00
## 150 Boat Entire home/apt 4.94
## 151 Room in serviced apartment <NA> 4.90
## 152 Entire serviced apartment Entire home/apt 4.40
## 153 Entire condominium (condo) Entire home/apt 4.60
## 154 Entire rental unit Entire home/apt 5.00
## 155 Tent Entire home/apt 1.00
## 156 Room in boutique hotel <NA> 4.27
## 157 Entire condominium (condo) Entire home/apt 4.87
## 158 Entire serviced apartment Entire home/apt 4.27
## 159 Entire serviced apartment Entire home/apt 4.92
## 160 Entire condominium (condo) Entire home/apt 4.64
## 161 Entire condominium (condo) Entire home/apt 4.64
## 162 Entire condominium (condo) Entire home/apt 4.78
## 163 Entire rental unit Entire home/apt 4.88
## 164 Private room in residential home Private room 2.00
## 165 Room in hotel <NA> 4.14
## 166 Entire condominium (condo) Entire home/apt 2.00
## 167 Entire residential home Entire home/apt 4.69
## 168 Entire condominium (condo) Entire home/apt 4.50
## 169 Entire condominium (condo) Entire home/apt 4.00
## 170 Room in serviced apartment <NA> 4.86
## 171 Room in boutique hotel <NA> 4.57
## 172 Entire serviced apartment Entire home/apt 4.89
## 173 Entire serviced apartment Entire home/apt 5.00
## 174 Entire condominium (condo) Entire home/apt 4.72
## 175 Entire condominium (condo) Entire home/apt 5.00
## 176 Entire serviced apartment Entire home/apt 5.00
## 177 Entire serviced apartment Entire home/apt 4.85
## 178 Entire rental unit Entire home/apt 3.00
## 179 Entire rental unit Entire home/apt 5.00
## 180 Tiny house Entire home/apt 4.91
## 181 Tiny house Entire home/apt 4.97
## 182 Entire serviced apartment Entire home/apt 4.72
## 183 Entire condominium (condo) Entire home/apt 5.00
## 184 Entire rental unit Entire home/apt 4.78
## 185 Private room in townhouse Private room 4.71
## 186 Room in hotel Private room 4.43
## 187 Room in hotel Private room 5.00
## 188 Room in hotel Private room 4.62
## 189 Room in hotel Private room 4.90
## 190 Room in hotel Private room 4.57
## 191 Room in hotel Private room 4.76
## 192 Private room in rental unit Private room 3.00
## 193 Entire rental unit Entire home/apt 4.00
## 194 Entire serviced apartment Entire home/apt 5.00
## 195 Entire rental unit Entire home/apt 4.73
## 196 Private room in serviced apartment Private room 4.83
## 197 Entire residential home Entire home/apt 5.00
## 198 Entire residential home Entire home/apt 4.79
## 199 Entire condominium (condo) Entire home/apt 4.80
## 200 Entire serviced apartment Entire home/apt 5.00
## 201 Entire residential home Entire home/apt 5.00
## 202 Entire rental unit Entire home/apt 4.75
## 203 Entire rental unit Entire home/apt 5.00
## 204 Boat Entire home/apt 5.00
## 205 Room in hotel Private room 4.18
## 206 Entire serviced apartment Entire home/apt 4.50
## 207 Entire serviced apartment Entire home/apt 4.58
## 208 Entire serviced apartment Entire home/apt 5.00
## 209 Campsite Entire home/apt 4.80
## 210 Entire condominium (condo) Entire home/apt 4.77
## 211 Entire condominium (condo) Entire home/apt 4.82
## 212 Entire condominium (condo) Entire home/apt 4.91
## 213 Private room in hostel Private room 4.00
## 214 Private room in residential home Private room 4.80
## 215 Entire rental unit Entire home/apt 4.93
## 216 Room in hotel Private room 5.00
## 217 Room in boutique hotel <NA> 4.50
## 218 Room in boutique hotel <NA> 5.00
## 219 Entire condominium (condo) Entire home/apt 5.00
## 220 Entire serviced apartment Entire home/apt 5.00
## 221 Private room in bed and breakfast Private room 5.00
## 222 Private room in bed and breakfast Private room 5.00
## 223 Private room in bed and breakfast Private room 5.00
## 224 Entire condominium (condo) Entire home/apt 5.00
## 225 Entire condominium (condo) Entire home/apt 4.33
## 226 Entire condominium (condo) Entire home/apt 4.63
## 227 Entire condominium (condo) Entire home/apt 5.00
## 228 Entire loft Entire home/apt 5.00
## 229 Entire serviced apartment Entire home/apt 5.00
## 230 Entire condominium (condo) Entire home/apt 4.86
## 231 Room in hotel Private room 5.00
## 232 Room in hotel <NA> 5.00
## 233 Entire serviced apartment Entire home/apt 4.79
## 234 Entire residential home Entire home/apt 4.75
## 235 Entire serviced apartment Entire home/apt 4.76
## 236 Entire serviced apartment Entire home/apt 4.86
## 237 Room in boutique hotel <NA> 5.00
## 238 Room in boutique hotel <NA> 4.72
## 239 Entire residential home Entire home/apt 4.67
## 240 Entire loft Entire home/apt 4.82
## 241 Entire condominium (condo) Entire home/apt 4.50
## 242 Entire condominium (condo) Entire home/apt 5.00
## 243 Entire serviced apartment Entire home/apt 4.89
## 244 Entire rental unit Entire home/apt 4.89
## 245 Entire serviced apartment Entire home/apt 5.00
## 246 Room in boutique hotel <NA> 4.95
## 247 Entire condominium (condo) Entire home/apt 4.50
## 248 Entire condominium (condo) Entire home/apt 0.00
## 249 Entire rental unit Entire home/apt 4.73
## 250 Entire rental unit Entire home/apt 4.60
## 251 Entire serviced apartment Entire home/apt 5.00
## 252 Room in hotel Private room 3.00
## 253 Room in hotel Private room 5.00
## 254 Room in hotel Private room 4.00
## 255 Room in boutique hotel <NA> 4.33
## 256 Entire serviced apartment Entire home/apt 3.00
## 257 Entire serviced apartment Entire home/apt 4.80
## 258 Private room in rental unit Private room 4.73
## 259 Entire condominium (condo) Entire home/apt 4.84
## 260 Entire condominium (condo) Entire home/apt 4.86
## 261 Entire rental unit Entire home/apt 4.00
## 262 Entire rental unit Entire home/apt 0.00
## 263 Private room in condominium (condo) Private room 1.00
## 264 Entire serviced apartment Entire home/apt 5.00
## 265 Entire rental unit Entire home/apt 4.85
## 266 Entire condominium (condo) Entire home/apt 5.00
## 267 Entire condominium (condo) Entire home/apt 1.00
## 268 Private room in bed and breakfast Private room 3.00
## 269 Entire rental unit Entire home/apt 4.17
## 270 Entire rental unit Entire home/apt 5.00
## 271 Entire condominium (condo) Entire home/apt 4.50
## 272 Entire condominium (condo) Entire home/apt 4.81
## 273 Entire condominium (condo) Entire home/apt 5.00
## 274 Private room in residential home Private room 5.00
## 275 Entire condominium (condo) Entire home/apt 4.92
## 276 Entire condominium (condo) Entire home/apt 5.00
## 277 Room in boutique hotel Private room 4.71
## 278 Room in boutique hotel <NA> 4.00
## 279 Room in hotel <NA> 4.52
## 280 Private room in rental unit Private room 4.63
## 281 Entire condominium (condo) Entire home/apt 3.67
## 282 Room in boutique hotel <NA> 4.91
## 283 Entire rental unit Entire home/apt 3.00
## 284 Private room in rental unit Private room 4.56
## 285 Room in hotel <NA> 4.50
## 286 Room in boutique hotel <NA> 4.58
## 287 Entire rental unit Entire home/apt 5.00
## 288 Entire condominium (condo) Entire home/apt 4.81
## 289 Entire rental unit Entire home/apt 3.63
## 290 Room in hotel <NA> 5.00
## 291 Room in hotel Private room 4.33
## 292 Room in boutique hotel Private room 4.57
## 293 Entire condominium (condo) Entire home/apt 5.00
## 294 Entire condominium (condo) Entire home/apt 5.00
## 295 Entire rental unit Entire home/apt 4.80
## 296 Room in hostel <NA> 4.50
## 297 Entire condominium (condo) Entire home/apt 0.00
## 298 Entire serviced apartment Entire home/apt 4.33
## 299 Entire condominium (condo) Entire home/apt 1.00
## 300 Entire rental unit Entire home/apt 4.00
## 301 Entire rental unit Entire home/apt 5.00
## 302 Entire rental unit Entire home/apt 3.00
## 303 Entire rental unit Entire home/apt 5.00
## 304 Room in boutique hotel Private room 4.00
## 305 Room in boutique hotel Private room 4.00
## 306 Entire serviced apartment Entire home/apt 5.00
## 307 Entire condominium (condo) Entire home/apt 4.00
## 308 Room in hostel <NA> 4.06
## 309 Room in hotel <NA> 4.56
## 310 Entire rental unit Entire home/apt 4.63
## 311 Entire condominium (condo) Entire home/apt 5.00
## 312 Room in boutique hotel <NA> 4.79
## 313 Shared room in hostel Shared room 4.00
## 314 Entire condominium (condo) Entire home/apt 5.00
## 315 Entire rental unit Entire home/apt 4.43
## 316 Campsite Entire home/apt 4.57
## 317 Entire rental unit Entire home/apt 4.91
## 318 Entire condominium (condo) Entire home/apt 5.00
## 319 Entire rental unit Entire home/apt 4.33
## 320 Entire rental unit Entire home/apt 5.00
## 321 Entire condominium (condo) Entire home/apt 4.60
## 322 Entire condominium (condo) Entire home/apt 4.75
## 323 Room in hotel Private room 4.50
## 324 Room in hotel <NA> 4.67
## 325 Room in boutique hotel <NA> 4.75
## 326 Entire serviced apartment Entire home/apt 4.83
## 327 Entire condominium (condo) Entire home/apt 4.69
## 328 Entire condominium (condo) Entire home/apt 4.00
## 329 Entire rental unit Entire home/apt 4.21
## 330 Room in boutique hotel Private room 4.00
## 331 Entire rental unit Entire home/apt 4.95
## 332 Entire rental unit Entire home/apt 5.00
## 333 Entire rental unit Entire home/apt 4.50
## 334 Entire rental unit Entire home/apt 4.40
## 335 Entire rental unit Entire home/apt 4.50
## 336 Entire rental unit Entire home/apt 4.20
## 337 Room in boutique hotel <NA> 4.88
## 338 Entire rental unit Entire home/apt 4.91
## 339 Entire condominium (condo) Entire home/apt 3.50
## 340 Entire condominium (condo) Entire home/apt 5.00
## 341 Entire condominium (condo) Entire home/apt 4.68
## 342 Room in boutique hotel Private room 4.83
## 343 Room in boutique hotel <NA> 4.00
## 344 Room in hotel <NA> 4.67
## 345 Room in boutique hotel Private room 5.00
## 346 Room in hotel Private room 2.67
## 347 Entire condominium (condo) Entire home/apt 5.00
## 348 Room in serviced apartment <NA> 4.38
## 349 Entire rental unit Entire home/apt 4.38
## 350 Entire rental unit Entire home/apt 4.33
## 351 Entire rental unit Entire home/apt 4.38
## 352 Entire rental unit Entire home/apt 5.00
## 353 Entire rental unit Entire home/apt 4.93
## 354 Private room in serviced apartment Private room 5.00
## 355 Entire rental unit Entire home/apt 5.00
## 356 Entire serviced apartment Entire home/apt 5.00
## 357 Entire serviced apartment Entire home/apt 4.00
## 358 Entire rental unit Entire home/apt 4.84
## 359 Entire serviced apartment Entire home/apt 4.55
## 360 Entire serviced apartment Entire home/apt 4.86
## 361 Entire residential home Entire home/apt 4.39
## 362 Private room in bungalow Private room 4.83
## 363 Private room in rental unit Private room 5.00
## 364 Private room in villa Private room 5.00
## 365 Entire residential home Entire home/apt 4.40
## 366 Entire serviced apartment Entire home/apt 4.86
## 367 Entire condominium (condo) Entire home/apt 5.00
## 368 Entire serviced apartment Entire home/apt 5.00
## 369 Private room in condominium (condo) Private room 0.00
## 370 Entire rental unit Entire home/apt 5.00
## 371 Entire condominium (condo) Entire home/apt 4.60
## 372 Entire condominium (condo) Entire home/apt 5.00
## 373 Entire condominium (condo) Entire home/apt 5.00
## 374 Room in boutique hotel <NA> 4.26
## 375 Private room in hostel Private room 4.42
## 376 Boat Entire home/apt 4.49
## 377 Room in boutique hotel Private room 5.00
## 378 Entire condominium (condo) Entire home/apt 4.72
## 379 Room in hotel <NA> 4.68
## 380 Entire condominium (condo) Entire home/apt 5.00
## 381 Entire rental unit Entire home/apt 4.60
## 382 Entire rental unit Entire home/apt 3.33
## 383 Entire condominium (condo) Entire home/apt 4.00
## 384 Entire condominium (condo) Entire home/apt 5.00
## 385 Entire rental unit Entire home/apt 3.00
## 386 Entire condominium (condo) Entire home/apt 5.00
## 387 Entire condominium (condo) Entire home/apt 5.00
## 388 Entire rental unit Entire home/apt 4.00
## 389 Entire rental unit Entire home/apt 5.00
## 390 Entire rental unit Entire home/apt 5.00
## 391 Entire condominium (condo) Entire home/apt 5.00
## 392 Room in boutique hotel Private room 4.68
## 393 Room in boutique hotel Private room 4.77
## 394 Entire condominium (condo) Entire home/apt 5.00
## 395 Entire serviced apartment Entire home/apt 5.00
## 396 Room in hotel Private room 4.00
## 397 Room in hotel Private room 4.25
## 398 Entire serviced apartment Entire home/apt 5.00
## 399 Entire condominium (condo) Entire home/apt 1.00
## 400 Entire rental unit Entire home/apt 4.83
## 401 Entire rental unit Entire home/apt 4.24
## 402 Room in boutique hotel Private room 4.43
## 403 Room in boutique hotel Private room 4.71
## 404 Room in boutique hotel Private room 5.00
## 405 Room in boutique hotel Private room 5.00
## 406 Entire rental unit Entire home/apt 5.00
## 407 Entire rental unit Entire home/apt 4.35
## 408 Entire serviced apartment Entire home/apt 4.83
## 409 Entire serviced apartment Entire home/apt 4.72
## 410 Campsite Entire home/apt 4.70
## 411 Entire condominium (condo) Entire home/apt 5.00
## 412 Entire residential home Entire home/apt 4.40
## 413 Entire condominium (condo) Entire home/apt 4.67
## 414 Private room in hostel Private room 5.00
## 415 Entire condominium (condo) Entire home/apt 4.50
## 416 Entire condominium (condo) Entire home/apt 5.00
## 417 Entire rental unit Entire home/apt 5.00
## 418 Entire rental unit Entire home/apt 4.82
## 419 Entire serviced apartment Entire home/apt 5.00
## 420 Private room Private room 4.43
## 421 Private room Private room 5.00
## 422 Room in boutique hotel Private room 4.74
## 423 Entire rental unit Entire home/apt 4.44
## 424 Entire rental unit Entire home/apt 3.14
## 425 Entire rental unit Entire home/apt 4.55
## 426 Entire condominium (condo) Entire home/apt 5.00
## 427 Room in boutique hotel <NA> 4.33
## 428 Entire condominium (condo) Entire home/apt 4.63
## 429 Entire rental unit Entire home/apt 5.00
## 430 Entire condominium (condo) Entire home/apt 5.00
## 431 Room in boutique hotel Private room 3.00
## 432 Room in serviced apartment <NA> 4.50
## 433 Room in boutique hotel Private room 4.86
## 434 Entire serviced apartment Entire home/apt 5.00
## 435 Entire serviced apartment Entire home/apt 4.88
## 436 Entire condominium (condo) Entire home/apt 5.00
## 437 Entire serviced apartment Entire home/apt 4.81
## 438 Entire condominium (condo) Entire home/apt 4.80
## 439 Entire condominium (condo) Entire home/apt 4.45
## 440 Private room in residential home Private room 4.50
## 441 Private room in residential home Private room 4.00
## 442 Private room in rental unit Private room 4.79
## 443 Entire serviced apartment Entire home/apt 4.80
## 444 Entire rental unit Entire home/apt 4.44
## 445 Entire serviced apartment Entire home/apt 4.45
## 446 Private room in rental unit Private room 4.00
## 447 Room in boutique hotel <NA> 4.57
## 448 Private room in rental unit Private room 5.00
## 449 Private room in condominium (condo) Private room 0.00
## 450 Entire rental unit Entire home/apt 4.08
## 451 Entire condominium (condo) Entire home/apt 5.00
## 452 Room in boutique hotel Private room 0.00
## 453 Entire serviced apartment Entire home/apt 4.50
## 454 Private room in villa Private room 4.44
## 455 Entire condominium (condo) Entire home/apt 4.79
## 456 Room in boutique hotel Private room 5.00
## 457 Room in serviced apartment <NA> 4.55
## 458 Entire condominium (condo) Entire home/apt 5.00
## 459 Entire condominium (condo) Entire home/apt 4.17
## 460 Entire rental unit Entire home/apt 4.67
## 461 Entire rental unit Entire home/apt 4.00
## 462 Entire serviced apartment Entire home/apt 5.00
## 463 Entire condominium (condo) Entire home/apt 5.00
## 464 Entire condominium (condo) Entire home/apt 4.27
## 465 Room in boutique hotel Private room 5.00
## 466 Entire serviced apartment Entire home/apt 5.00
## 467 Room in boutique hotel <NA> 4.48
## 468 Entire condominium (condo) Entire home/apt 4.36
## 469 Room in boutique hotel Private room 4.73
## 470 Private room in serviced apartment Private room 0.00
## 471 Room in hotel <NA> 3.86
## 472 Room in boutique hotel Private room 4.88
## 473 Entire condominium (condo) Entire home/apt 4.41
## 474 Entire condominium (condo) Entire home/apt 4.23
## 475 Entire rental unit Entire home/apt 5.00
## 476 Entire serviced apartment Entire home/apt 5.00
## 477 Entire condominium (condo) Entire home/apt 3.00
## 478 Entire condominium (condo) Entire home/apt 4.50
## 479 Entire rental unit Entire home/apt 4.84
## 480 Room in boutique hotel Private room 4.89
## 481 Room in hotel Private room 4.67
## 482 Room in hotel Private room 3.33
## 483 Entire rental unit Entire home/apt 4.84
## 484 Room in boutique hotel Private room 5.00
## 485 Entire condominium (condo) Entire home/apt 4.33
## 486 Room in boutique hotel <NA> 3.50
## 487 Entire rental unit Entire home/apt 4.73
## 488 Entire condominium (condo) Entire home/apt 4.80
## 489 Room in boutique hotel Private room 4.67
## 490 Private room in rental unit Private room 4.58
## 491 Entire guesthouse Entire home/apt 5.00
## 492 Entire serviced apartment Entire home/apt 4.43
## 493 Entire rental unit Entire home/apt 4.31
## 494 Entire rental unit Entire home/apt 4.21
## 495 Entire rental unit Entire home/apt 4.73
## 496 Private room in townhouse Private room 4.67
## 497 Private room in townhouse Private room 4.50
## 498 Entire rental unit Entire home/apt 3.67
## 499 Entire condominium (condo) Entire home/apt 4.78
## 500 Entire condominium (condo) Entire home/apt 5.00
## 501 Room in hotel <NA> 4.33
## 502 Room in boutique hotel Private room 5.00
## 503 Entire serviced apartment Entire home/apt 4.82
## 504 Room in serviced apartment <NA> 4.00
## 505 Entire serviced apartment Entire home/apt 4.00
## 506 Entire serviced apartment Entire home/apt 4.72
## 507 Room in hotel <NA> 4.00
## 508 Entire condominium (condo) Entire home/apt 4.75
## 509 Private room in townhouse Private room 4.50
## 510 Entire condominium (condo) Entire home/apt 5.00
## 511 Entire condominium (condo) Entire home/apt 5.00
## 512 Room in boutique hotel Private room 4.65
## 513 Entire serviced apartment Entire home/apt 4.67
## 514 Room in boutique hotel Private room 3.00
## 515 Room in boutique hotel Private room 4.65
## 516 Entire serviced apartment Entire home/apt 4.00
## 517 Room in boutique hotel Private room 4.85
## 518 Entire condominium (condo) Entire home/apt 4.00
## 519 Entire serviced apartment Entire home/apt 4.80
## 520 Room in boutique hotel Private room 4.81
## 521 Entire serviced apartment Entire home/apt 4.74
## 522 Entire rental unit Entire home/apt 4.56
## 523 Entire rental unit Entire home/apt 5.00
## 524 Entire rental unit Entire home/apt 4.70
## 525 Private room in villa Private room 5.00
## 526 Private room in bungalow Private room 5.00
## 527 Room in hotel Private room 5.00
## 528 Entire serviced apartment Entire home/apt 4.00
## 529 Entire serviced apartment Entire home/apt 5.00
## 530 Entire serviced apartment Entire home/apt 5.00
## 531 Entire townhouse Entire home/apt 4.76
## 532 Private room in rental unit Private room 4.70
## 533 Room in boutique hotel Private room 3.00
## 534 Entire condominium (condo) Entire home/apt 4.80
## 535 Entire condominium (condo) Entire home/apt 3.00
## 536 Entire rental unit Entire home/apt 4.52
## 537 Room in boutique hotel Private room 4.83
## 538 Entire condominium (condo) Entire home/apt 4.67
## 539 Entire condominium (condo) Entire home/apt 4.70
## 540 Entire condominium (condo) Entire home/apt 5.00
## 541 Entire rental unit Entire home/apt 5.00
## 542 Entire rental unit Entire home/apt 4.82
## 543 Entire serviced apartment Entire home/apt 4.97
## 544 Entire condominium (condo) Entire home/apt 5.00
## 545 Private room in condominium (condo) Private room 4.80
## 546 Entire condominium (condo) Entire home/apt 5.00
## 547 Entire serviced apartment Entire home/apt 5.00
## 548 Entire rental unit Entire home/apt 4.78
## 549 Entire rental unit Entire home/apt 4.64
## 550 Room in boutique hotel Private room 5.00
## 551 Room in boutique hotel Private room 3.00
## 552 Room in boutique hotel Private room 4.33
## 553 Entire rental unit Entire home/apt 4.74
## 554 Entire serviced apartment Entire home/apt 5.00
## 555 Entire rental unit Entire home/apt 4.82
## 556 Entire rental unit Entire home/apt 4.94
## 557 Entire serviced apartment Entire home/apt 4.88
## 558 Entire serviced apartment Entire home/apt 5.00
## 559 Entire rental unit Entire home/apt 4.80
## 560 Entire rental unit Entire home/apt 4.50
## 561 Entire serviced apartment Entire home/apt 5.00
## 562 Entire serviced apartment Entire home/apt 4.00
## 563 Entire serviced apartment Entire home/apt 4.50
## 564 Entire rental unit Entire home/apt 4.92
## 565 Private room in townhouse Private room 5.00
## 566 Entire serviced apartment Entire home/apt 4.00
## 567 Entire condominium (condo) Entire home/apt 5.00
## 568 Room in boutique hotel Private room 4.74
## 569 Entire serviced apartment Entire home/apt 5.00
## 570 Entire serviced apartment Entire home/apt 5.00
## 571 Entire serviced apartment Entire home/apt 4.50
## 572 Entire rental unit Entire home/apt 4.50
## 573 Entire rental unit Entire home/apt 4.57
## 574 Entire serviced apartment Entire home/apt 5.00
## 575 Entire serviced apartment Entire home/apt 4.33
## 576 Entire serviced apartment Entire home/apt 4.00
## 577 Entire serviced apartment Entire home/apt 5.00
## 578 Entire rental unit Entire home/apt 4.33
## 579 Room in boutique hotel Private room 5.00
## 580 Entire rental unit Entire home/apt 4.82
## 581 Entire condominium (condo) Entire home/apt 4.48
## 582 Entire condominium (condo) Entire home/apt 3.80
## 583 Room in boutique hotel Private room 5.00
## 584 Room in hostel <NA> 3.80
## 585 Entire condominium (condo) Entire home/apt 4.00
## 586 Entire condominium (condo) Entire home/apt 5.00
## 587 Entire condominium (condo) Entire home/apt 5.00
## 588 Entire condominium (condo) Entire home/apt 4.75
## 589 Entire condominium (condo) Entire home/apt 5.00
## 590 Private room in rental unit Private room 4.54
## 591 Private room in condominium (condo) Private room 5.00
## 592 Entire rental unit Entire home/apt 4.65
## 593 Entire loft Entire home/apt 4.89
## 594 Private room in bungalow Private room 5.00
## 595 Entire rental unit Entire home/apt 4.98
## 596 Private room in condominium (condo) Private room 0.00
## 597 Entire condominium (condo) Entire home/apt 5.00
## 598 Entire serviced apartment Entire home/apt 5.00
## 599 Room in serviced apartment <NA> 4.40
## 600 Entire rental unit Entire home/apt 4.51
## 601 Entire condominium (condo) Entire home/apt 4.00
## 602 Entire rental unit Entire home/apt 4.81
## 603 Private room in condominium (condo) Private room 4.20
## 604 Private room in villa Private room 5.00
## 605 Private room in hostel Private room 4.36
## 606 Room in hostel <NA> 4.33
## 607 Shared room in rental unit Shared room 4.50
## 608 Entire rental unit Entire home/apt 5.00
## 609 Entire rental unit Entire home/apt 4.78
## 610 Private room in rental unit Private room 4.33
## 611 Entire rental unit Entire home/apt 3.50
## 612 Entire rental unit Entire home/apt 1.00
## 613 Private room in bungalow Private room 5.00
## 614 Private room in bungalow Private room 4.00
## 615 Entire rental unit Entire home/apt 5.00
## 616 Entire serviced apartment Entire home/apt 2.50
## 617 Entire condominium (condo) Entire home/apt 4.00
## 618 Entire serviced apartment Entire home/apt 4.78
## 619 Entire serviced apartment Entire home/apt 4.82
## 620 Entire condominium (condo) Entire home/apt 4.57
## 621 Entire rental unit Entire home/apt 5.00
## 622 Private room in hostel Private room 4.00
## 623 Room in hotel Private room 5.00
## 624 Room in hotel <NA> 3.00
## 625 Entire condominium (condo) Entire home/apt 5.00
## 626 Entire serviced apartment Entire home/apt 3.75
## 627 Entire serviced apartment Entire home/apt 5.00
## 628 Entire condominium (condo) Entire home/apt 3.00
## 629 Entire condominium (condo) Entire home/apt 5.00
## 630 Entire condominium (condo) Entire home/apt 4.52
## 631 Entire guest suite Entire home/apt 4.74
## 632 Entire place Entire home/apt 4.91
## 633 Entire rental unit Entire home/apt 4.97
## 634 Entire place Entire home/apt 4.92
## 635 Private room in rental unit Private room 5.00
## 636 Entire serviced apartment Entire home/apt 4.93
## 637 Entire condominium (condo) Entire home/apt 5.00
## 638 Entire serviced apartment Entire home/apt 4.72
## 639 Entire serviced apartment Entire home/apt 3.94
## 640 Room in boutique hotel <NA> 3.75
## 641 Entire condominium (condo) Entire home/apt 4.78
## 642 Room in serviced apartment <NA> 4.30
## 643 Room in serviced apartment <NA> 4.45
## 644 Entire rental unit Entire home/apt 4.00
## 645 Room in hotel <NA> 5.00
## 646 Entire rental unit Entire home/apt 4.50
## 647 Entire condominium (condo) Entire home/apt 4.20
## 648 Private room in hostel Private room 4.51
## 649 Room in hotel Private room 4.67
## 650 Room in hotel <NA> 4.33
## 651 Entire condominium (condo) Entire home/apt 4.50
## 652 Entire serviced apartment Entire home/apt 4.18
## 653 Private room in townhouse Private room 4.60
## 654 Room in serviced apartment <NA> 4.43
## 655 Private room Private room 3.67
## 656 Room in serviced apartment <NA> 4.60
## 657 Room in hotel Private room 4.00
## 658 Room in hotel Private room 4.14
## 659 Room in hotel Private room 4.40
## 660 Room in hotel Private room 4.33
## 661 Room in hotel Private room 4.00
## 662 Room in hotel Private room 3.88
## 663 Entire rental unit Entire home/apt 4.69
## 664 Room in serviced apartment <NA> 4.69
## 665 Room in boutique hotel Private room 4.77
## 666 Room in boutique hotel Private room 4.58
## 667 Room in boutique hotel Private room 4.50
## 668 Room in boutique hotel Private room 4.91
## 669 Room in boutique hotel Private room 4.50
## 670 Entire rental unit Entire home/apt 5.00
## 671 Entire condominium (condo) Entire home/apt 5.00
## 672 Entire condominium (condo) Entire home/apt 5.00
## 673 Entire condominium (condo) Entire home/apt 5.00
## 674 Shared room in bed and breakfast Shared room 5.00
## 675 Entire serviced apartment Entire home/apt 4.75
## 676 Room in boutique hotel Private room 4.76
## 677 Room in boutique hotel Private room 5.00
## 678 Room in boutique hotel Private room 5.00
## 679 Entire condominium (condo) Entire home/apt 4.43
## 680 Entire condominium (condo) Entire home/apt 4.92
## 681 Entire rental unit Entire home/apt 4.00
## 682 Entire rental unit Entire home/apt 4.68
## 683 Private room in serviced apartment Private room 0.00
## 684 Room in boutique hotel Private room 5.00
## 685 Room in boutique hotel Private room 4.77
## 686 Entire rental unit Entire home/apt 4.84
## 687 Room in boutique hotel Private room 4.17
## 688 Entire condominium (condo) Entire home/apt 3.50
## 689 Room in serviced apartment <NA> 4.75
## 690 Entire rental unit Entire home/apt 4.59
## 691 Entire rental unit Entire home/apt 5.00
## 692 Private room in condominium (condo) Private room 4.86
## 693 Entire condominium (condo) Entire home/apt 5.00
## 694 Entire condominium (condo) Entire home/apt 5.00
## 695 Entire serviced apartment Entire home/apt 4.50
## 696 Entire rental unit Entire home/apt 4.73
## 697 Private room in residential home Private room 4.75
## 698 Room in boutique hotel Private room 4.86
## 699 Entire townhouse Entire home/apt 4.73
## 700 Entire serviced apartment Entire home/apt 4.73
## 701 Entire rental unit Entire home/apt 4.90
## 702 Entire serviced apartment Entire home/apt 4.65
## 703 Private room in serviced apartment Private room 5.00
## 704 Entire serviced apartment Entire home/apt 5.00
## 705 Private room in rental unit Private room 4.71
## 706 Entire condominium (condo) Entire home/apt 5.00
## 707 Room in hotel Private room 1.00
## 708 Room in hotel Private room 4.00
## 709 Private room in rental unit Private room 5.00
## 710 Private room in villa Private room 5.00
## 711 Private room in villa Private room 5.00
## 712 Private room in bungalow Private room 5.00
## 713 Private room in bungalow Private room 4.50
## 714 Private room in bungalow Private room 5.00
## 715 Entire serviced apartment Entire home/apt 4.50
## 716 Room in boutique hotel Private room 5.00
## 717 Entire townhouse Entire home/apt 4.93
## 718 Entire rental unit Entire home/apt 4.85
## 719 Entire rental unit Entire home/apt 0.00
## 720 Entire serviced apartment Entire home/apt 4.84
## 721 Entire rental unit Entire home/apt 4.94
## 722 Entire loft Entire home/apt 5.00
## 723 Entire condominium (condo) Entire home/apt 5.00
## 724 Entire condominium (condo) Entire home/apt 5.00
## 725 Private room in serviced apartment Private room 4.27
## 726 Entire serviced apartment Entire home/apt 4.20
## 727 Entire rental unit Entire home/apt 4.91
## 728 Entire condominium (condo) Entire home/apt 4.73
## 729 Entire condominium (condo) Entire home/apt 5.00
## 730 Entire condominium (condo) Entire home/apt 5.00
## 731 Entire condominium (condo) Entire home/apt 2.67
## 732 Entire condominium (condo) Entire home/apt 5.00
## 733 Private room in rental unit Private room 4.89
## 734 Room in serviced apartment <NA> 4.50
## 735 Entire rental unit Entire home/apt 4.88
## 736 Entire rental unit Entire home/apt 4.33
## 737 Entire condominium (condo) Entire home/apt 5.00
## 738 Room in boutique hotel Private room 5.00
## 739 Private room in bungalow Private room 4.44
## 740 Room in serviced apartment <NA> 4.50
## 741 Entire serviced apartment Entire home/apt 4.79
## 742 Entire condominium (condo) Entire home/apt 4.75
## 743 Entire serviced apartment Entire home/apt 4.91
## 744 Private room in serviced apartment Private room 4.00
## 745 Entire serviced apartment Entire home/apt 5.00
## 746 Room in hotel Private room 4.48
## 747 Room in boutique hotel Private room 4.92
## 748 Private room in residential home Private room 5.00
## 749 Entire serviced apartment Entire home/apt 5.00
## 750 Entire serviced apartment Entire home/apt 5.00
## 751 Private room in serviced apartment Private room 5.00
## 752 Private room in residential home Private room 5.00
## 753 Entire rental unit Entire home/apt 4.69
## 754 Private room in serviced apartment Private room 5.00
## 755 Entire serviced apartment Entire home/apt 5.00
## 756 Room in boutique hotel Private room 4.81
## 757 Room in boutique hotel Private room 4.87
## 758 Room in boutique hotel Private room 5.00
## 759 Entire serviced apartment Entire home/apt 4.50
## 760 Private room in rental unit Private room 3.00
## 761 Private room in rental unit Private room 5.00
## 762 Private room in rental unit Private room 4.33
## 763 Room in boutique hotel <NA> 4.75
## 764 Entire condominium (condo) Entire home/apt 5.00
## 765 Entire rental unit Entire home/apt 4.59
## 766 Entire rental unit Entire home/apt 4.72
## 767 Entire condominium (condo) Entire home/apt 4.68
## 768 Entire rental unit Entire home/apt 4.57
## 769 Entire rental unit Entire home/apt 4.73
## 770 Entire rental unit Entire home/apt 4.76
## 771 Private room in residential home Private room 4.38
## 772 Private room in residential home Private room 5.00
## 773 Shared room in bed and breakfast Shared room 4.00
## 774 Private room in bed and breakfast Private room 4.00
## 775 Private room in residential home Private room 5.00
## 776 Private room in bungalow Private room 4.80
## 777 Private room in villa Private room 4.50
## 778 Entire serviced apartment Entire home/apt 4.72
## 779 Private room in residential home Private room 4.00
## 780 Room in hotel <NA> 4.29
## 781 Room in hotel Private room 4.57
## 782 Room in hotel Private room 4.50
## 783 Room in hotel Private room 3.00
## 784 Entire serviced apartment Entire home/apt 4.86
## 785 Private room in condominium (condo) Private room 5.00
## 786 Entire rental unit Entire home/apt 4.84
## 787 Entire serviced apartment Entire home/apt 5.00
## 788 Shared room in bed and breakfast Shared room 4.00
## 789 Entire rental unit Entire home/apt 4.50
## 790 Room in boutique hotel Private room 4.73
## 791 Private room in residential home Private room 4.77
## 792 Private room in bed and breakfast Private room 5.00
## 793 Entire guesthouse Entire home/apt 4.42
## 794 Room in boutique hotel <NA> 4.80
## 795 Entire rental unit Entire home/apt 4.38
## 796 Entire rental unit Entire home/apt 4.62
## 797 Room in boutique hotel Private room 4.79
## 798 Entire serviced apartment Entire home/apt 4.86
## 799 Private room in serviced apartment Private room 5.00
## 800 Private room in serviced apartment Private room 4.93
## 801 Private room in serviced apartment Private room 5.00
## 802 Private room in rental unit Private room 4.44
## 803 Room in serviced apartment <NA> 4.50
## 804 Entire rental unit Entire home/apt 4.75
## 805 Entire rental unit Entire home/apt 4.67
## 806 Private room in rental unit Private room 4.71
## 807 Private room in rental unit Private room 5.00
## 808 Entire rental unit Entire home/apt 4.50
## 809 Room in hostel <NA> 3.67
## 810 Room in serviced apartment <NA> 4.22
## 811 Room in serviced apartment <NA> 4.75
## 812 Room in serviced apartment <NA> 4.60
## 813 Room in boutique hotel Private room 3.00
## 814 Room in boutique hotel Private room 4.00
## 815 Room in hotel Private room 5.00
## 816 Private room in townhouse Private room 4.00
## 817 Entire rental unit Entire home/apt 4.85
## 818 Entire rental unit Entire home/apt 4.83
## 819 Entire residential home Entire home/apt 3.50
## 820 Entire serviced apartment Entire home/apt 4.85
## 821 Private room in hostel Private room 5.00
## 822 Room in hotel Private room 4.68
## 823 Room in boutique hotel Private room 4.41
## 824 Room in boutique hotel Private room 4.50
## 825 Room in boutique hotel Private room 5.00
## 826 Entire rental unit Entire home/apt 5.00
## 827 Private room in residential home Private room 3.00
## 828 Entire condominium (condo) Entire home/apt 5.00
## 829 Entire condominium (condo) Entire home/apt 5.00
## 830 Entire condominium (condo) Entire home/apt 5.00
## 831 Entire condominium (condo) Entire home/apt 5.00
## 832 Entire condominium (condo) Entire home/apt 5.00
## 833 Entire condominium (condo) Entire home/apt 4.89
## 834 Room in boutique hotel Private room 4.80
## 835 Private room in townhouse Private room 4.41
## 836 Room in boutique hotel <NA> 4.73
## 837 Private room in condominium (condo) Private room 5.00
## 838 Entire rental unit Entire home/apt 5.00
## 839 Room in boutique hotel <NA> 4.59
## 840 Entire condominium (condo) Entire home/apt 5.00
## 841 Entire rental unit Entire home/apt 4.64
## 842 Entire condominium (condo) Entire home/apt 5.00
## 843 Entire condominium (condo) Entire home/apt 5.00
## 844 Entire serviced apartment Entire home/apt 4.25
## 845 Entire serviced apartment Entire home/apt 4.67
## 846 Entire serviced apartment Entire home/apt 4.91
## 847 Private room in rental unit Private room 5.00
## 848 Private room in rental unit Private room 5.00
## 849 Private room in rental unit Private room 5.00
## 850 Private room in rental unit Private room 5.00
## 851 Entire rental unit Entire home/apt 4.87
## 852 Entire rental unit Entire home/apt 4.93
## 853 Entire rental unit Entire home/apt 4.91
## 854 Entire serviced apartment Entire home/apt 4.55
## 855 Entire serviced apartment Entire home/apt 4.79
## 856 Entire condominium (condo) Entire home/apt 5.00
## 857 Entire condominium (condo) Entire home/apt 4.58
## 858 Entire condominium (condo) Entire home/apt 5.00
## 859 Entire condominium (condo) Entire home/apt 5.00
## 860 Room in boutique hotel <NA> 4.42
## 861 Private room in condominium (condo) Private room 5.00
## 862 Entire condominium (condo) Entire home/apt 5.00
## 863 Entire condominium (condo) Entire home/apt 5.00
## 864 Room in hotel Private room 3.83
## 865 Private room in rental unit Private room 4.29
## 866 Private room in condominium (condo) Private room 5.00
## 867 Private room in bungalow Private room 5.00
## 868 Entire condominium (condo) Entire home/apt 5.00
## 869 Entire rental unit Entire home/apt 5.00
## 870 Private room in condominium (condo) Private room 4.63
## 871 Private room in condominium (condo) Private room 4.51
## 872 Entire condominium (condo) Entire home/apt 4.65
## 873 Entire rental unit Entire home/apt 5.00
## 874 Entire condominium (condo) Entire home/apt 5.00
## 875 Entire rental unit Entire home/apt 4.88
## 876 Private room in condominium (condo) Private room 4.33
## 877 Entire condominium (condo) Entire home/apt 0.00
## 878 Private room in condominium (condo) Private room 5.00
## 879 Room in boutique hotel Private room 4.82
## 880 Private room in condominium (condo) Private room 5.00
## 881 Entire rental unit Entire home/apt 5.00
## 882 Entire rental unit Entire home/apt 5.00
## 883 Private room in residential home Private room 5.00
## 884 Private room in rental unit Private room 4.75
## 885 Entire condominium (condo) Entire home/apt 5.00
## 886 Entire condominium (condo) Entire home/apt 5.00
## 887 Entire condominium (condo) Entire home/apt 5.00
## 888 Private room in rental unit Private room 4.86
## 889 Entire rental unit Entire home/apt 4.63
## 890 Entire rental unit Entire home/apt 4.88
## 891 Entire serviced apartment Entire home/apt 5.00
## 892 Entire serviced apartment Entire home/apt 4.19
## 893 Entire condominium (condo) Entire home/apt 4.93
## 894 Private room in rental unit Private room 4.57
## 895 Entire condominium (condo) Entire home/apt 5.00
## 896 Private room in condominium (condo) Private room 5.00
## 897 Private room in hostel Private room 5.00
## 898 Room in boutique hotel Private room 4.81
## 899 Entire condominium (condo) Entire home/apt 4.67
## 900 Entire condominium (condo) Entire home/apt 4.81
## 901 Private room in residential home Private room 4.91
## 902 Private room in rental unit Private room 1.00
## 903 Private room in serviced apartment Private room 5.00
## 904 Room in boutique hotel Private room 4.40
## 905 Room in boutique hotel <NA> 4.33
## 906 Room in hostel <NA> 4.29
## 907 Private room in rental unit Private room 5.00
## 908 Private room in bed and breakfast Private room 3.00
## 909 Private room in condominium (condo) Private room 5.00
## 910 Private room in rental unit Private room 4.87
## 911 Entire rental unit Entire home/apt 4.86
## 912 Private room in condominium (condo) Private room 4.95
## 913 Room in hotel Private room 2.75
## 914 Entire condominium (condo) Entire home/apt 5.00
## 915 Entire condominium (condo) Entire home/apt 5.00
## 916 Room in hostel <NA> 3.67
## 917 Entire rental unit Entire home/apt 5.00
## 918 Private room in townhouse Private room 5.00
## 919 Entire rental unit Entire home/apt 4.90
## 920 Private room in rental unit Private room 4.83
## 921 Entire rental unit Entire home/apt 4.89
## 922 Entire condominium (condo) Entire home/apt 4.20
## 923 Private room in condominium (condo) Private room 4.80
## 924 Entire condominium (condo) Entire home/apt 3.83
## 925 Private room in rental unit Private room 5.00
## 926 Private room in rental unit Private room 4.23
## 927 Entire condominium (condo) Entire home/apt 5.00
## 928 Private room in condominium (condo) Private room 5.00
## 929 Entire condominium (condo) Entire home/apt 4.00
## 930 Entire loft Entire home/apt 5.00
## 931 Private room in residential home Private room 4.46
## 932 Private room in rental unit Private room 4.36
## 933 Private room in rental unit Private room 4.73
## 934 Room in boutique hotel Private room 4.91
## 935 Room in hostel <NA> 4.33
## 936 Private room in bed and breakfast Private room 4.00
## 937 Private room in townhouse Private room 4.43
## 938 Private room in rental unit Private room 4.84
## 939 Private room in rental unit Private room 4.93
## 940 Entire serviced apartment Entire home/apt 4.38
## 941 Room in boutique hotel Private room 5.00
## 942 Entire rental unit Entire home/apt 4.96
## 943 Private room in rental unit Private room 4.80
## 944 Entire rental unit Entire home/apt 4.06
## 945 Private room in rental unit Private room 4.50
## 946 Shared room in hostel Shared room 4.00
## 947 Private room in serviced apartment Private room 4.59
## 948 Private room in residential home Private room 4.82
## 949 Room in hostel <NA> 5.00
## 950 Private room in condominium (condo) Private room 4.93
## 951 Private room in rental unit Private room 4.38
## 952 Room in hostel <NA> 3.25
## 953 Entire condominium (condo) Entire home/apt 1.00
## 954 Shared room in hostel Shared room 4.50
## 955 Private room in rental unit Private room 5.00
## 956 Entire condominium (condo) Entire home/apt 5.00
## 957 Private room in residential home Private room 4.91
## 958 Private room in residential home Private room 5.00
## 959 Private room in residential home Private room 4.75
## 960 Private room in residential home Private room 4.83
## 961 Private room in residential home Private room 4.50
## 962 Private room in residential home Private room 4.58
## 963 Private room in townhouse Private room 5.00
## 964 Private room in residential home Private room 4.75
## 965 Entire serviced apartment Entire home/apt 5.00
## 966 Private room in residential home Private room 4.93
## 967 Private room in villa Private room 5.00
## 968 Entire serviced apartment Entire home/apt 5.00
## 969 Private room in residential home Private room 4.80
## 970 Private room in townhouse Private room 4.67
## 971 Private room in residential home Private room 5.00
## 972 Private room in residential home Private room 5.00
## 973 Private room in residential home Private room 4.92
## 974 Entire rental unit Entire home/apt 1.00
## 975 Private room in condominium (condo) Private room 5.00
## 976 Entire condominium (condo) Entire home/apt 4.80
## 977 Entire condominium (condo) Entire home/apt 4.50
## 978 Private room in condominium (condo) Private room 5.00
## 979 Entire residential home Entire home/apt 4.57
## 980 Private room in residential home Private room 4.80
## 981 Entire residential home Entire home/apt 4.71
## 982 Private room in rental unit Private room 4.25
## 983 Private room in condominium (condo) Private room 5.00
## 984 Private room in condominium (condo) Private room 4.85
## 985 Entire rental unit Entire home/apt 4.83
## 986 Entire residential home Entire home/apt 4.60
## 987 Entire rental unit Entire home/apt 4.73
## 988 Entire loft Entire home/apt 4.68
## 989 Private room in rental unit Private room 4.82
## 990 Private room in condominium (condo) Private room 4.80
## 991 Private room in rental unit Private room 4.54
## 992 Entire rental unit Entire home/apt 4.44
## 993 Entire rental unit Entire home/apt 4.72
## 994 Private room in residential home Private room 4.67
## 995 Entire rental unit Entire home/apt 4.73
## 996 Room in hotel Private room 5.00
## 997 Room in hotel Private room 3.91
## 998 Room in hotel <NA> 4.33
## 999 Room in hotel Private room 3.60
## 1000 Room in hotel Private room 4.17
## 1001 Room in hotel Private room 4.16
## 1002 Room in hotel Private room 4.10
## 1003 Entire condominium (condo) Entire home/apt 4.60
## 1004 Entire condominium (condo) Entire home/apt 5.00
## 1005 Entire condominium (condo) Entire home/apt 4.00
## 1006 Room in rental unit <NA> 4.13
## 1007 Entire condominium (condo) Entire home/apt 5.00
## 1008 Entire rental unit Entire home/apt 4.67
## 1009 Private room in rental unit Private room 4.71
## 1010 Private room in rental unit Private room 4.89
## 1011 Entire residential home Entire home/apt 5.00
## 1012 Private room in residential home Private room 4.76
## 1013 Room in hostel <NA> 4.17
## 1014 Entire condominium (condo) Entire home/apt 4.00
## 1015 Private room in condominium (condo) Private room 5.00
## 1016 Private room in townhouse Private room 4.50
## 1017 Entire rental unit Entire home/apt 4.77
## 1018 Private room in residential home Private room 4.64
## 1019 Private room in rental unit Private room 4.92
## 1020 Private room in condominium (condo) Private room 4.00
## 1021 Entire rental unit Entire home/apt 4.73
## 1022 Private room in rental unit Private room 4.33
## 1023 Entire rental unit Entire home/apt 4.78
## 1024 Private room in rental unit Private room 4.44
## 1025 Private room in residential home Private room 4.90
## 1026 Private room in residential home Private room 4.88
## 1027 Entire rental unit Entire home/apt 4.82
## 1028 Private room in residential home Private room 4.33
## 1029 Private room in condominium (condo) Private room 4.72
## 1030 Private room in townhouse Private room 4.97
## 1031 Entire rental unit Entire home/apt 4.84
## 1032 Private room in townhouse Private room 4.86
## 1033 Private room in rental unit Private room 4.79
## 1034 Private room in villa Private room 4.89
## 1035 Private room in residential home Private room 4.97
## 1036 Entire serviced apartment Entire home/apt 4.67
## 1037 Private room in condominium (condo) Private room 4.78
## 1038 Private room in condominium (condo) Private room 5.00
## 1039 Entire rental unit Entire home/apt 4.69
## 1040 Entire condominium (condo) Entire home/apt 4.88
## 1041 Entire rental unit Entire home/apt 4.38
## 1042 Private room in rental unit Private room 4.48
## 1043 Private room in rental unit Private room 4.65
## 1044 Private room in residential home Private room 3.50
## 1045 Entire guest suite Entire home/apt 4.89
## 1046 Private room in condominium (condo) Private room 5.00
## 1047 Private room in rental unit Private room 4.81
## 1048 Entire condominium (condo) Entire home/apt 4.44
## 1049 Private room in rental unit Private room 4.62
## 1050 Room in hotel Private room 5.00
## 1051 Room in hotel Private room 4.50
## 1052 Entire condominium (condo) Entire home/apt 4.50
## 1053 Private room in rental unit Private room 4.40
## 1054 Entire rental unit Entire home/apt 3.00
## 1055 Private room in rental unit Private room 4.79
## 1056 Private room in townhouse Private room 4.58
## 1057 Shared room in hostel Shared room 3.33
## 1058 Entire rental unit Entire home/apt 4.53
## 1059 Entire rental unit Entire home/apt 5.00
## 1060 Private room in rental unit Private room 4.00
## 1061 Private room in townhouse Private room 4.91
## 1062 Private room in rental unit Private room 4.38
## 1063 Entire condominium (condo) Entire home/apt 4.63
## 1064 Private room in rental unit Private room 5.00
## 1065 Private room in rental unit Private room 5.00
## 1066 Entire condominium (condo) Entire home/apt 5.00
## 1067 Private room in rental unit Private room 4.89
## 1068 Private room in rental unit Private room 5.00
## 1069 Entire rental unit Entire home/apt 4.63
## 1070 Private room in condominium (condo) Private room 4.61
## 1071 Entire rental unit Entire home/apt 4.92
## 1072 Private room in townhouse Private room 4.25
## 1073 Private room in condominium (condo) Private room 4.70
## 1074 Private room in rental unit Private room 4.77
## 1075 Entire condominium (condo) Entire home/apt 3.63
## 1076 Entire rental unit Entire home/apt 4.33
## 1077 Entire rental unit Entire home/apt 4.82
## 1078 Private room in condominium (condo) Private room 4.84
## 1079 Entire condominium (condo) Entire home/apt 3.00
## 1080 Entire rental unit Entire home/apt 4.83
## 1081 Private room in condominium (condo) Private room 5.00
## 1082 Private room in condominium (condo) Private room 4.92
## 1083 Entire condominium (condo) Entire home/apt 4.50
## 1084 Entire condominium (condo) Entire home/apt 4.71
## 1085 Entire rental unit Entire home/apt 3.00
## 1086 Private room in condominium (condo) Private room 5.00
## 1087 Private room in condominium (condo) Private room 5.00
## 1088 Entire place Entire home/apt 5.00
## 1089 Entire rental unit Entire home/apt 4.69
## 1090 Private room in rental unit Private room 5.00
## 1091 Entire condominium (condo) Entire home/apt 4.43
## 1092 Private room in rental unit Private room 4.50
## 1093 Private room in guest suite Private room 5.00
## 1094 Entire rental unit Entire home/apt 4.85
## 1095 Private room in townhouse Private room 4.51
## 1096 Private room in residential home Private room 4.60
## 1097 Private room in rental unit Private room 5.00
## 1098 Private room in townhouse Private room 4.42
## 1099 Entire rental unit Entire home/apt 4.93
## 1100 Entire serviced apartment Entire home/apt 4.82
## 1101 Private room in rental unit Private room 4.33
## 1102 Shared room in condominium (condo) Shared room 4.75
## 1103 Private room in rental unit Private room 4.50
## 1104 Private room in condominium (condo) Private room 4.63
## 1105 Entire rental unit Entire home/apt 4.79
## 1106 Entire rental unit Entire home/apt 4.75
## 1107 Entire rental unit Entire home/apt 4.82
## 1108 Private room in condominium (condo) Private room 4.94
## 1109 Private room in condominium (condo) Private room 4.82
## 1110 Entire rental unit Entire home/apt 4.65
## 1111 Entire rental unit Entire home/apt 4.87
## 1112 Entire rental unit Entire home/apt 4.77
## 1113 Entire rental unit Entire home/apt 4.87
## 1114 Entire rental unit Entire home/apt 4.80
## 1115 Entire rental unit Entire home/apt 4.59
## 1116 Entire rental unit Entire home/apt 5.00
## 1117 Entire rental unit Entire home/apt 5.00
## 1118 Private room in residential home Private room 4.16
## 1119 Private room in residential home Private room 4.41
## 1120 Entire rental unit Entire home/apt 4.85
## 1121 Entire rental unit Entire home/apt 4.76
## 1122 Entire rental unit Entire home/apt 4.80
## 1123 Private room in rental unit Private room 5.00
## 1124 Entire condominium (condo) Entire home/apt 5.00
## 1125 Private room in residential home Private room 2.50
## 1126 Private room in residential home Private room 4.17
## 1127 Private room in condominium (condo) Private room 5.00
## 1128 Entire condominium (condo) Entire home/apt 5.00
## 1129 Entire rental unit Entire home/apt 4.75
## 1130 Private room in residential home Private room 4.83
## 1131 Entire rental unit Entire home/apt 4.68
## 1132 Entire rental unit Entire home/apt 4.61
## 1133 Entire rental unit Entire home/apt 4.78
## 1134 Entire rental unit Entire home/apt 4.60
## 1135 Private room in condominium (condo) Private room 4.88
## 1136 Entire rental unit Entire home/apt 5.00
## 1137 Private room in condominium (condo) Private room 5.00
## 1138 Entire rental unit Entire home/apt 4.73
## 1139 Private room in residential home Private room 4.10
## 1140 Entire rental unit Entire home/apt 4.69
## 1141 Private room in rental unit Private room 4.74
## 1142 Entire rental unit Entire home/apt 5.00
## 1143 Private room in residential home Private room 4.73
## 1144 Private room in condominium (condo) Private room 4.56
## 1145 Private room in rental unit Private room 5.00
## 1146 Private room in rental unit Private room 5.00
## 1147 Private room in rental unit Private room 5.00
## 1148 Entire condominium (condo) Entire home/apt 5.00
## 1149 Private room in residential home Private room 4.98
## 1150 Private room in condominium (condo) Private room 4.00
## 1151 Private room in rental unit Private room 5.00
## 1152 Private room in condominium (condo) Private room 4.63
## 1153 Private room in condominium (condo) Private room 4.50
## 1154 Private room in rental unit Private room 4.40
## 1155 Shared room in hostel Shared room 4.50
## 1156 Shared room in hostel Shared room 4.20
## 1157 Private room in rental unit Private room 4.00
## 1158 Private room in rental unit Private room 5.00
## 1159 Entire rental unit Entire home/apt 5.00
## 1160 Private room in residential home Private room 1.00
## 1161 Private room in rental unit Private room 4.00
## 1162 Entire rental unit Entire home/apt 4.80
## 1163 Private room in townhouse Private room 4.50
## 1164 Entire rental unit Entire home/apt 4.85
## 1165 Private room in rental unit Private room 4.70
## 1166 Private room in rental unit Private room 4.00
## 1167 Private room in residential home Private room 4.76
## 1168 Private room in condominium (condo) Private room 4.64
## 1169 Private room in rental unit Private room 5.00
## 1170 Entire rental unit Entire home/apt 4.71
## 1171 Private room in rental unit Private room 4.56
## 1172 Private room in rental unit Private room 4.25
## 1173 Private room in rental unit Private room 5.00
## 1174 Entire rental unit Entire home/apt 4.63
## 1175 Entire rental unit Entire home/apt 4.67
## 1176 Entire rental unit Entire home/apt 4.81
## 1177 Private room in residential home Private room 4.85
## 1178 Private room in rental unit Private room 4.10
## 1179 Entire rental unit Entire home/apt 4.84
## 1180 Private room in villa Private room 4.78
## 1181 Private room in rental unit Private room 4.00
## 1182 Private room in residential home Private room 4.67
## 1183 Private room in condominium (condo) Private room 5.00
## 1184 Private room in rental unit Private room 4.00
## 1185 Private room in loft Private room 4.86
## 1186 Private room in condominium (condo) Private room 5.00
## 1187 Entire rental unit Entire home/apt 4.74
## 1188 Entire rental unit Entire home/apt 4.72
## 1189 Private room in rental unit Private room 4.23
## 1190 Private room in rental unit Private room 4.38
## 1191 Private room in rental unit Private room 4.23
## 1192 Private room in rental unit Private room 3.88
## 1193 Entire rental unit Entire home/apt 4.86
## 1194 Private room in rental unit Private room 4.62
## 1195 Private room in rental unit Private room 5.00
## 1196 Entire rental unit Entire home/apt 4.76
## 1197 Entire rental unit Entire home/apt 4.75
## 1198 Entire rental unit Entire home/apt 4.75
## 1199 Entire rental unit Entire home/apt 4.83
## 1200 Entire rental unit Entire home/apt 4.88
## 1201 Entire rental unit Entire home/apt 4.67
## 1202 Private room in rental unit Private room 4.43
## 1203 Entire rental unit Entire home/apt 4.82
## 1204 Entire rental unit Entire home/apt 4.80
## 1205 Private room in townhouse Private room 4.79
## 1206 Entire rental unit Entire home/apt 4.75
## 1207 Entire rental unit Entire home/apt 5.00
## 1208 Entire rental unit Entire home/apt 4.88
## 1209 Private room in condominium (condo) Private room 4.00
## 1210 Entire rental unit Entire home/apt 5.00
## 1211 Private room in townhouse Private room 5.00
## 1212 Entire rental unit Entire home/apt 4.70
## 1213 Private room in residential home Private room 4.86
## 1214 Private room in residential home Private room 4.82
## 1215 Entire rental unit Entire home/apt 4.82
## 1216 Entire rental unit Entire home/apt 4.78
## 1217 Entire rental unit Entire home/apt 4.87
## 1218 Entire rental unit Entire home/apt 4.93
## 1219 Private room in rental unit Private room 4.43
## 1220 Private room in rental unit Private room 4.70
## 1221 Private room in rental unit Private room 3.25
## 1222 Private room in rental unit Private room 4.75
## 1223 Private room in residential home Private room 4.78
## 1224 Private room in rental unit Private room 4.82
## 1225 Private room in residential home Private room 4.84
## 1226 Private room in rental unit Private room 0.00
## 1227 Entire rental unit Entire home/apt 5.00
## 1228 Private room Private room 4.43
## 1229 Private room in rental unit Private room 4.00
## 1230 Private room in rental unit Private room 4.00
## 1231 Private room in rental unit Private room 4.50
## 1232 Private room in rental unit Private room 4.71
## 1233 Private room in townhouse Private room 4.83
## 1234 Private room in residential home Private room 3.50
## 1235 Private room in condominium (condo) Private room 4.29
## 1236 Private room in rental unit Private room 3.00
## 1237 Private room in rental unit Private room 3.50
## 1238 Private room in rental unit Private room 4.60
## 1239 Private room in rental unit Private room 5.00
## 1240 Private room in rental unit Private room 5.00
## 1241 Private room in rental unit Private room 5.00
## 1242 Private room in rental unit Private room 5.00
## 1243 Private room in rental unit Private room 5.00
## 1244 Private room in rental unit Private room 5.00
## 1245 Private room in rental unit Private room 4.00
## 1246 Private room in rental unit Private room 5.00
## 1247 Private room in condominium (condo) Private room 5.00
## 1248 Private room in rental unit Private room 5.00
## 1249 Private room in rental unit Private room 4.50
## 1250 Private room in rental unit Private room 5.00
## 1251 Private room in rental unit Private room 5.00
## 1252 Private room in rental unit Private room 5.00
## 1253 Private room in rental unit Private room 1.00
## 1254 Entire rental unit Entire home/apt 4.78
## 1255 Entire rental unit Entire home/apt 4.85
## 1256 Private room in rental unit Private room 4.67
## 1257 Private room in residential home Private room 5.00
## 1258 Private room in rental unit Private room 4.75
## 1259 Entire rental unit Entire home/apt 4.73
## 1260 Entire rental unit Entire home/apt 4.94
## 1261 Entire rental unit Entire home/apt 4.78
## 1262 Entire condominium (condo) Entire home/apt 5.00
## 1263 Entire rental unit Entire home/apt 5.00
## 1264 Private room in loft Private room 4.63
## 1265 Private room in condominium (condo) Private room 5.00
## 1266 Entire rental unit Entire home/apt 4.71
## 1267 Room in hostel <NA> 4.38
## 1268 Private room in townhouse Private room 4.39
## 1269 Private room in condominium (condo) Private room 4.90
## 1270 Private room in condominium (condo) Private room 4.76
## 1271 Private room in serviced apartment Private room 4.82
## 1272 Private room in rental unit Private room 5.00
## 1273 Room in bed and breakfast <NA> 4.67
## 1274 Private room in condominium (condo) Private room 5.00
## 1275 Room in aparthotel Private room 4.54
## 1276 Entire rental unit Entire home/apt 4.75
## 1277 Shared room in hostel Shared room 4.65
## 1278 Room in boutique hotel Private room 4.75
## 1279 Private room in rental unit Private room 5.00
## 1280 Private room in condominium (condo) Private room 4.86
## 1281 Entire rental unit Entire home/apt 4.60
## 1282 Private room in residential home Private room 4.63
## 1283 Private room in rental unit Private room 4.50
## 1284 Entire condominium (condo) Entire home/apt 4.70
## 1285 Private room in condominium (condo) Private room 5.00
## 1286 Private room in condominium (condo) Private room 4.44
## 1287 Private room in rental unit Private room 4.72
## 1288 Private room in condominium (condo) Private room 4.86
## 1289 Private room in rental unit Private room 4.77
## 1290 Private room in condominium (condo) Private room 3.33
## 1291 Private room in condominium (condo) Private room 4.91
## 1292 Private room in condominium (condo) Private room 4.95
## 1293 Private room in rental unit Private room 4.00
## 1294 Entire rental unit Entire home/apt 5.00
## 1295 Private room in condominium (condo) Private room 5.00
## 1296 Private room in loft Private room 5.00
## 1297 Private room in residential home Private room 4.67
## 1298 Private room in rental unit Private room 4.41
## 1299 Private room in rental unit Private room 4.21
## 1300 Private room in rental unit Private room 4.20
## 1301 Private room in rental unit Private room 4.27
## 1302 Private room in rental unit Private room 4.20
## 1303 Private room in rental unit Private room 4.13
## 1304 Entire rental unit Entire home/apt 4.73
## 1305 Private room in rental unit Private room 4.22
## 1306 Private room in rental unit Private room 4.22
## 1307 Private room in rental unit Private room 4.84
## 1308 Private room in rental unit Private room 0.00
## 1309 Private room in rental unit Private room 4.20
## 1310 Private room in rental unit Private room 4.54
## 1311 Private room in rental unit Private room 4.55
## 1312 Private room in rental unit Private room 4.22
## 1313 Private room in rental unit Private room 4.00
## 1314 Private room in rental unit Private room 4.56
## 1315 Private room in rental unit Private room 5.00
## 1316 Private room in rental unit Private room 4.00
## 1317 Private room in rental unit Private room 4.57
## 1318 Private room in rental unit Private room 4.00
## 1319 Shared room in bed and breakfast Shared room 4.56
## 1320 Room in bed and breakfast <NA> 4.67
## 1321 Entire rental unit Entire home/apt 4.69
## 1322 Private room in rental unit Private room 4.86
## 1323 Private room in condominium (condo) Private room 3.67
## 1324 Private room in rental unit Private room 4.68
## 1325 Private room in townhouse Private room 4.67
## 1326 Private room in rental unit Private room 4.67
## 1327 Private room in condominium (condo) Private room 4.68
## 1328 Private room in rental unit Private room 4.56
## 1329 Private room in rental unit Private room 4.56
## 1330 Private room in condominium (condo) Private room 5.00
## 1331 Private room in rental unit Private room 4.80
## 1332 Private room in condominium (condo) Private room 3.75
## 1333 Private room in townhouse Private room 4.39
## 1334 Shared room in hostel Shared room 4.18
## 1335 Private room in rental unit Private room 5.00
## 1336 Private room in residential home Private room 4.96
## 1337 Private room in residential home Private room 5.00
## 1338 Private room in residential home Private room 5.00
## 1339 Private room in residential home Private room 4.84
## 1340 Private room in rental unit Private room 4.89
## 1341 Private room in rental unit Private room 4.60
## 1342 Private room in rental unit Private room 4.33
## 1343 Private room in bungalow Private room 4.87
## 1344 Private room in rental unit Private room 4.77
## 1345 Private room in rental unit Private room 4.67
## 1346 Private room Private room 4.59
## 1347 Private room in rental unit Private room 4.50
## 1348 Private room in townhouse Private room 4.50
## 1349 Private room in condominium (condo) Private room 5.00
## 1350 Private room in rental unit Private room 4.62
## 1351 Private room in residential home Private room 4.88
## 1352 Private room in residential home Private room 3.00
## 1353 Private room in residential home Private room 4.91
## 1354 Private room in rental unit Private room 4.77
## 1355 Private room in townhouse Private room 5.00
## 1356 Private room in rental unit Private room 4.67
## 1357 Private room in condominium (condo) Private room 4.00
## 1358 Private room in rental unit Private room 4.50
## 1359 Private room in rental unit Private room 5.00
## 1360 Private room in residential home Private room 5.00
## 1361 Private room in rental unit Private room 4.60
## 1362 Private room in rental unit Private room 4.67
## 1363 Private room in rental unit Private room 4.14
## 1364 Private room in rental unit Private room 4.75
## 1365 Private room in rental unit Private room 4.60
## 1366 Private room in residential home Private room 4.56
## 1367 Shared room in bed and breakfast Shared room 4.75
## 1368 Private room in serviced apartment Private room 4.80
## 1369 Shared room in bed and breakfast Shared room 4.26
## 1370 Private room in rental unit Private room 5.00
## 1371 Private room in rental unit Private room 5.00
## 1372 Private room in rental unit Private room 4.83
## 1373 Private room in rental unit Private room 4.50
## 1374 Private room in rental unit Private room 4.50
## 1375 Private room in condominium (condo) Private room 4.33
## 1376 Private room in rental unit Private room 4.82
## 1377 Private room in rental unit Private room 4.50
## 1378 Private room in rental unit Private room 4.00
## 1379 Private room in rental unit Private room 4.20
## 1380 Private room in rental unit Private room 5.00
## 1381 Private room in rental unit Private room 5.00
## 1382 Private room in rental unit Private room 3.00
## 1383 Private room in rental unit Private room 5.00
## 1384 Private room in rental unit Private room 4.00
## 1385 Private room in rental unit Private room 5.00
## 1386 Private room in rental unit Private room 5.00
## 1387 Private room in rental unit Private room 5.00
## 1388 Private room in rental unit Private room 3.50
## 1389 Private room in rental unit Private room 5.00
## 1390 Private room in rental unit Private room 5.00
## 1391 Private room in rental unit Private room 5.00
## 1392 Private room in rental unit Private room 3.00
## 1393 Private room in rental unit Private room 5.00
## 1394 Private room in rental unit Private room 5.00
## 1395 Private room in rental unit Private room 5.00
## 1396 Private room in rental unit Private room 3.00
## 1397 Private room in rental unit Private room 5.00
## 1398 Private room in rental unit Private room 5.00
## 1399 Private room in loft Private room 4.95
## 1400 Private room in residential home Private room 5.00
## 1401 Private room in condominium (condo) Private room 4.87
## 1402 Private room in condominium (condo) Private room 4.80
## 1403 Private room in rental unit Private room 5.00
## 1404 Private room in residential home Private room 4.94
## 1405 Private room in rental unit Private room 4.64
## 1406 Private room in residential home Private room 4.58
## 1407 Private room in loft Private room 5.00
## 1408 Private room in rental unit Private room 5.00
## 1409 Private room in townhouse Private room 4.50
## 1410 Room in hostel <NA> 4.39
## 1411 Private room in condominium (condo) Private room 4.67
## 1412 Private room in condominium (condo) Private room 4.75
## 1413 Private room in rental unit Private room 5.00
## 1414 Private room in townhouse Private room 4.51
## 1415 Shared room in boutique hotel Shared room 5.00
## 1416 Private room in condominium (condo) Private room 4.73
## 1417 Shared room in hostel Shared room 3.50
## 1418 Private room in rental unit Private room 1.00
## 1419 Private room in rental unit Private room 4.87
## 1420 Private room in rental unit Private room 4.38
## 1421 Private room in rental unit Private room 4.47
## 1422 Private room in townhouse Private room 5.00
## 1423 Private room in residential home Private room 4.28
## 1424 Private room in rental unit Private room 5.00
## 1425 Private room in townhouse Private room 0.00
## 1426 Private room in rental unit Private room 5.00
## 1427 Private room in residential home Private room 3.67
## 1428 Shared room in rental unit Shared room 0.00
## 1429 Private room in condominium (condo) Private room 4.33
## 1430 Private room in residential home Private room 1.00
## 1431 Shared room in hostel Shared room 5.00
## 1432 Private room in rental unit Private room 5.00
## 1433 Shared room in boutique hotel Shared room 4.67
## 1434 Private room in rental unit Private room 4.39
## 1435 Private room in residential home Private room 4.44
## 1436 Private room in rental unit Private room 4.59
## 1437 Private room in condominium (condo) Private room 5.00
## 1438 Private room in rental unit Private room 4.00
## 1439 Shared room in hostel Shared room 4.17
## 1440 Private room in rental unit Private room 5.00
## 1441 Private room in rental unit Private room 4.56
## 1442 Private room in rental unit Private room 0.00
## 1443 Shared room in hostel Shared room 4.38
## 1444 Entire condominium (condo) Entire home/apt 5.00
## 1445 Private room in rental unit Private room 4.79
## 1446 Private room in rental unit Private room 4.86
## 1447 Private room in condominium (condo) Private room 4.75
## 1448 Private room in residential home Private room 4.83
## 1449 Private room in rental unit Private room 3.00
## 1450 Private room in rental unit Private room 4.50
## 1451 Private room in residential home Private room 4.89
## 1452 Private room in bungalow Private room 4.86
## 1453 Private room in bungalow Private room 4.85
## 1454 Private room in bungalow Private room 4.90
## 1455 Private room in rental unit Private room 4.75
## 1456 Private room in rental unit Private room 4.50
## 1457 Private room in residential home Private room 4.50
## 1458 Private room in residential home Private room 4.10
## 1459 Private room in rental unit Private room 4.93
## 1460 Private room in residential home Private room 5.00
## 1461 Private room in residential home Private room 3.00
## 1462 Shared room in boutique hotel Shared room 5.00
## 1463 Private room in rental unit Private room 5.00
## 1464 Private room in residential home Private room 4.57
## 1465 Room in hotel Private room 4.17
## 1466 Private room in residential home Private room 4.88
## 1467 Private room in condominium (condo) Private room 5.00
## 1468 Private room in condominium (condo) Private room 4.50
## 1469 Private room in rental unit Private room 5.00
## 1470 Private room in condominium (condo) Private room 0.00
## 1471 Private room in bed and breakfast Private room 4.85
## 1472 Private room in rental unit Private room 4.20
## 1473 Private room in rental unit Private room 4.74
## 1474 Private room in condominium (condo) Private room 4.00
## 1475 Private room in rental unit Private room 4.63
## 1476 Shared room in hostel Shared room 4.00
## 1477 Private room in residential home Private room 5.00
## 1478 Private room in townhouse Private room 4.49
## 1479 Private room in rental unit Private room 5.00
## 1480 Private room in rental unit Private room 5.00
## 1481 Private room in rental unit Private room 4.67
## 1482 Private room in rental unit Private room 5.00
## 1483 Private room in rental unit Private room 4.50
## 1484 Private room in rental unit Private room 4.00
## 1485 Private room in residential home Private room 4.50
## 1486 Private room in rental unit Private room 4.00
## 1487 Private room in rental unit Private room 4.00
## 1488 Private room in rental unit Private room 5.00
## 1489 Private room in rental unit Private room 5.00
## 1490 Private room in rental unit Private room 5.00
## 1491 Private room in rental unit Private room 5.00
## 1492 Private room in rental unit Private room 3.00
## 1493 Private room in rental unit Private room 3.00
## 1494 Private room in rental unit Private room 4.00
## 1495 Private room in rental unit Private room 4.00
## 1496 Shared room in hostel Shared room 4.42
## 1497 Room in hostel <NA> 4.31
## 1498 Room in hostel <NA> 4.17
## 1499 Private room in residential home Private room 4.58
## 1500 Private room in rental unit Private room 5.00
## 1501 Private room in rental unit Private room 3.00
## 1502 Private room in rental unit Private room 5.00
## 1503 Private room in rental unit Private room 5.00
## 1504 Private room in rental unit Private room 5.00
## 1505 Private room in condominium (condo) Private room 5.00
## 1506 Private room in rental unit Private room 5.00
## 1507 Private room in rental unit Private room 4.00
## 1508 Private room in rental unit Private room 4.50
## 1509 Private room in rental unit Private room 5.00
## 1510 Private room in rental unit Private room 5.00
## 1511 Private room in condominium (condo) Private room 5.00
## 1512 Private room in rental unit Private room 5.00
## 1513 Private room in rental unit Private room 5.00
## 1514 Private room in rental unit Private room 5.00
## 1515 Private room in rental unit Private room 5.00
## 1516 Private room in rental unit Private room 5.00
## 1517 Private room in rental unit Private room 5.00
## 1518 Private room in rental unit Private room 4.00
## 1519 Private room in rental unit Private room 5.00
## 1520 Private room in rental unit Private room 5.00
## 1521 Private room in rental unit Private room 5.00
## 1522 Private room in rental unit Private room 5.00
## 1523 Private room in rental unit Private room 5.00
## 1524 Private room in residential home Private room 4.58
## 1525 Private room in townhouse Private room 4.33
## 1526 Private room in condominium (condo) Private room 4.79
## 1527 Private room in townhouse Private room 4.55
## 1528 Private room in rental unit Private room 4.54
## 1529 Shared room in rental unit Shared room 4.52
## 1530 Private room in condominium (condo) Private room 5.00
## 1531 Shared room in residential home Shared room 0.00
## 1532 Private room in rental unit Private room 4.80
## 1533 Private room in rental unit Private room 4.50
## 1534 Room in hostel <NA> 4.12
## 1535 Room in hostel <NA> 4.18
## 1536 Private room in rental unit Private room 4.48
## 1537 Private room in rental unit Private room 5.00
## 1538 Private room in rental unit Private room 4.63
## Neighbourhood host_response_time host_response_rate
## 1 Bukit Merah within a day <NA>
## 2 Newton within an hour <NA>
## 3 Downtown Core within a day <NA>
## 4 Outram N/A <NA>
## 5 Downtown Core within a few hours <NA>
## 6 Bukit Merah a few days or more <NA>
## 7 Bukit Merah a few days or more <NA>
## 8 Bukit Merah within an hour <NA>
## 9 Downtown Core within a few hours <NA>
## 10 Orchard within a day <NA>
## 11 Singapore River within a few hours <NA>
## 12 Rochor within a few hours <NA>
## 13 Orchard within an hour <NA>
## 14 Bukit Merah a few days or more <NA>
## 15 Newton within a few hours <NA>
## 16 Rochor a few days or more <NA>
## 17 River Valley within a day <NA>
## 18 Outram within an hour <NA>
## 19 Outram within a day <NA>
## 20 Tanglin within a few hours <NA>
## 21 Newton within a day <NA>
## 22 Singapore River N/A <NA>
## 23 River Valley within a few hours <NA>
## 24 Downtown Core within an hour <NA>
## 25 Orchard within a day <NA>
## 26 Southern Islands within an hour <NA>
## 27 Kallang within an hour <NA>
## 28 Orchard a few days or more <NA>
## 29 Tanglin within a few hours <NA>
## 30 Singapore River N/A <NA>
## 31 Downtown Core N/A <NA>
## 32 Singapore River within a few hours <NA>
## 33 Downtown Core within a few hours <NA>
## 34 Central Water Catchment within a few hours <NA>
## 35 Newton within a few hours <NA>
## 36 Singapore River within an hour <NA>
## 37 Downtown Core N/A <NA>
## 38 Singapore River within a few hours <NA>
## 39 Singapore River within a few hours <NA>
## 40 River Valley within a few hours <NA>
## 41 Clementi within a few hours <NA>
## 42 Bukit Merah N/A <NA>
## 43 Downtown Core within an hour <NA>
## 44 Downtown Core within an hour <NA>
## 45 Rochor within a few hours <NA>
## 46 Kallang within a day <NA>
## 47 Marina South within an hour <NA>
## 48 Rochor within a few hours <NA>
## 49 Outram within a day <NA>
## 50 Marina South within an hour <NA>
## 51 Singapore River within a few hours <NA>
## 52 Downtown Core within a few hours <NA>
## 53 Rochor within a few hours <NA>
## 54 Orchard within an hour <NA>
## 55 Kallang within a few hours <NA>
## 56 Orchard within a day <NA>
## 57 Rochor within a few hours <NA>
## 58 Geylang within an hour <NA>
## 59 Geylang within an hour <NA>
## 60 Southern Islands within an hour <NA>
## 61 Downtown Core N/A <NA>
## 62 Geylang N/A <NA>
## 63 Orchard within a day <NA>
## 64 Singapore River within an hour <NA>
## 65 Clementi within a few hours <NA>
## 66 Queenstown within a few hours <NA>
## 67 Orchard within a few hours <NA>
## 68 Tanglin within a few hours <NA>
## 69 Orchard within an hour <NA>
## 70 Orchard within an hour <NA>
## 71 Orchard within a few hours <NA>
## 72 Bukit Merah within a few hours <NA>
## 73 Bukit Merah within a few hours <NA>
## 74 Singapore River within a few hours <NA>
## 75 River Valley within a few hours <NA>
## 76 Singapore River within an hour <NA>
## 77 Downtown Core within an hour <NA>
## 78 Downtown Core within an hour <NA>
## 79 Orchard within a day <NA>
## 80 Bukit Merah within a few hours <NA>
## 81 Pasir Ris within an hour <NA>
## 82 Kallang within a few hours <NA>
## 83 Singapore River within a few hours <NA>
## 84 Geylang within an hour <NA>
## 85 Singapore River within a few hours <NA>
## 86 Outram N/A <NA>
## 87 Outram N/A <NA>
## 88 Outram N/A <NA>
## 89 Queenstown within a few hours <NA>
## 90 Novena within a few hours <NA>
## 91 Central Water Catchment within a few hours <NA>
## 92 Downtown Core within an hour <NA>
## 93 Hougang within a day <NA>
## 94 Geylang within an hour <NA>
## 95 Geylang within an hour <NA>
## 96 Queenstown within a few hours <NA>
## 97 Kallang within a few hours <NA>
## 98 Kallang within a few hours <NA>
## 99 Kallang within a few hours <NA>
## 100 Downtown Core within a day <NA>
## 101 Orchard within a day <NA>
## 102 Outram N/A <NA>
## 103 Tanglin within an hour <NA>
## 104 River Valley within an hour <NA>
## 105 Orchard within a few hours <NA>
## 106 Downtown Core within a day <NA>
## 107 Tanglin within an hour <NA>
## 108 Tanglin N/A <NA>
## 109 Tanglin within an hour <NA>
## 110 Downtown Core N/A <NA>
## 111 Tanglin within an hour <NA>
## 112 Outram within an hour <NA>
## 113 Queenstown within a few hours <NA>
## 114 Outram N/A <NA>
## 115 Geylang within an hour <NA>
## 116 Downtown Core N/A <NA>
## 117 Geylang within an hour <NA>
## 118 Geylang within an hour <NA>
## 119 Geylang within an hour <NA>
## 120 Geylang within an hour <NA>
## 121 Geylang within an hour <NA>
## 122 Central Water Catchment within a few hours <NA>
## 123 Queenstown within a few hours <NA>
## 124 Queenstown within a few hours <NA>
## 125 Outram within a day <NA>
## 126 Outram within an hour <NA>
## 127 Novena within a few hours <NA>
## 128 Orchard within an hour <NA>
## 129 River Valley within a few hours <NA>
## 130 Newton within a few hours <NA>
## 131 Downtown Core N/A <NA>
## 132 River Valley within an hour <NA>
## 133 Queenstown within a few hours <NA>
## 134 Orchard within a few hours <NA>
## 135 Kallang within a few hours <NA>
## 136 Clementi within a few hours <NA>
## 137 Clementi within a few hours <NA>
## 138 River Valley within a few hours <NA>
## 139 Rochor a few days or more <NA>
## 140 Outram within an hour <NA>
## 141 Geylang within an hour <NA>
## 142 Outram a few days or more <NA>
## 143 Queenstown within a few hours <NA>
## 144 Tanglin within an hour <NA>
## 145 Outram within a few hours <NA>
## 146 Downtown Core within a few hours <NA>
## 147 Kallang within a few hours <NA>
## 148 Bukit Merah within a few hours <NA>
## 149 Novena within a few hours <NA>
## 150 Southern Islands within an hour <NA>
## 151 Downtown Core N/A <NA>
## 152 Novena within an hour <NA>
## 153 Queenstown a few days or more <NA>
## 154 Queenstown a few days or more <NA>
## 155 Lim Chu Kang within a day <NA>
## 156 Singapore River within an hour <NA>
## 157 Kallang within a few hours <NA>
## 158 River Valley within an hour <NA>
## 159 Bukit Merah within an hour <NA>
## 160 Downtown Core within a day <NA>
## 161 Downtown Core within a day <NA>
## 162 Downtown Core within a day <NA>
## 163 Downtown Core N/A <NA>
## 164 Serangoon within a day <NA>
## 165 Downtown Core within a day <NA>
## 166 Kallang a few days or more <NA>
## 167 Tanglin within an hour <NA>
## 168 Novena a few days or more <NA>
## 169 Clementi a few days or more <NA>
## 170 Tanglin within an hour <NA>
## 171 Outram a few days or more <NA>
## 172 Tanglin within an hour <NA>
## 173 Novena within a few hours <NA>
## 174 Downtown Core within a day <NA>
## 175 Novena a few days or more <NA>
## 176 Central Water Catchment within a few hours <NA>
## 177 Orchard within a day <NA>
## 178 Queenstown a few days or more <NA>
## 179 Downtown Core N/A <NA>
## 180 Queenstown within an hour <NA>
## 181 Queenstown within an hour <NA>
## 182 River Valley within an hour <NA>
## 183 Queenstown a few days or more <NA>
## 184 Marine Parade N/A <NA>
## 185 Kallang within a day <NA>
## 186 Outram N/A <NA>
## 187 Outram N/A <NA>
## 188 Outram N/A <NA>
## 189 Outram N/A <NA>
## 190 Downtown Core N/A <NA>
## 191 Outram N/A <NA>
## 192 Hougang within a few hours <NA>
## 193 Novena within a few hours <NA>
## 194 Novena within a few hours <NA>
## 195 Marine Parade N/A <NA>
## 196 Bukit Merah within an hour <NA>
## 197 Tanglin within an hour <NA>
## 198 Tanglin within an hour <NA>
## 199 Geylang within an hour <NA>
## 200 Central Water Catchment within a few hours <NA>
## 201 Tanglin within an hour <NA>
## 202 Geylang within a few hours <NA>
## 203 Queenstown a few days or more <NA>
## 204 Punggol within a few hours <NA>
## 205 Kallang N/A <NA>
## 206 Downtown Core within an hour <NA>
## 207 Tanglin within an hour <NA>
## 208 Singapore River within an hour <NA>
## 209 Bedok N/A <NA>
## 210 Kallang within a few hours <NA>
## 211 Kallang within a few hours <NA>
## 212 Kallang within a few hours <NA>
## 213 Kallang within a day <NA>
## 214 Serangoon within a day <NA>
## 215 Queenstown within an hour <NA>
## 216 Queenstown within an hour <NA>
## 217 Outram a few days or more <NA>
## 218 Outram a few days or more <NA>
## 219 Outram within an hour <NA>
## 220 Novena within an hour <NA>
## 221 Geylang a few days or more <NA>
## 222 Geylang a few days or more <NA>
## 223 Geylang a few days or more <NA>
## 224 Novena a few days or more <NA>
## 225 Geylang a few days or more <NA>
## 226 Toa Payoh within a day <NA>
## 227 Novena within a few hours <NA>
## 228 Queenstown within a day <NA>
## 229 Novena within an hour <NA>
## 230 Geylang within an hour <NA>
## 231 Singapore River within an hour <NA>
## 232 Rochor within a day <NA>
## 233 Tanglin within an hour <NA>
## 234 Tanglin within an hour <NA>
## 235 Tanglin within an hour <NA>
## 236 Tanglin within an hour <NA>
## 237 Outram N/A <NA>
## 238 Outram N/A <NA>
## 239 Tanglin within an hour <NA>
## 240 River Valley within a few hours <NA>
## 241 Geylang within an hour <NA>
## 242 Geylang within an hour <NA>
## 243 Novena within an hour <NA>
## 244 Geylang within an hour <NA>
## 245 Novena within a few hours <NA>
## 246 Downtown Core a few days or more <NA>
## 247 Queenstown a few days or more <NA>
## 248 Bukit Merah a few days or more <NA>
## 249 Outram within a few hours <NA>
## 250 Outram within a day <NA>
## 251 Clementi within a few hours <NA>
## 252 Bedok a few days or more <NA>
## 253 Bedok a few days or more <NA>
## 254 Bedok a few days or more <NA>
## 255 Downtown Core within a day <NA>
## 256 Downtown Core within a few hours <NA>
## 257 Novena within an hour <NA>
## 258 Marine Parade N/A <NA>
## 259 Downtown Core N/A <NA>
## 260 Kallang within a few hours <NA>
## 261 Queenstown within a few hours <NA>
## 262 Toa Payoh a few days or more <NA>
## 263 River Valley a few days or more <NA>
## 264 Novena within a few hours <NA>
## 265 Bukit Merah within an hour <NA>
## 266 Rochor a few days or more <NA>
## 267 Rochor a few days or more <NA>
## 268 Kallang a few days or more <NA>
## 269 Kallang within a few hours <NA>
## 270 Kallang within a few hours <NA>
## 271 Geylang within an hour <NA>
## 272 Geylang within an hour <NA>
## 273 Toa Payoh within a few hours <NA>
## 274 Bukit Timah within an hour <NA>
## 275 Marine Parade N/A <NA>
## 276 Clementi a few days or more <NA>
## 277 Downtown Core within an hour <NA>
## 278 Downtown Core within a day <NA>
## 279 Singapore River within an hour <NA>
## 280 River Valley within a day <NA>
## 281 Downtown Core within an hour <NA>
## 282 Outram a few days or more <NA>
## 283 Bukit Merah within a few hours <NA>
## 284 Bukit Batok within a day <NA>
## 285 Rochor within an hour <NA>
## 286 Outram within an hour <NA>
## 287 Geylang within a day <NA>
## 288 Kallang within a few hours <NA>
## 289 Choa Chu Kang a few days or more <NA>
## 290 Singapore River within an hour <NA>
## 291 Rochor within a day <NA>
## 292 Outram within an hour <NA>
## 293 Queenstown a few days or more <NA>
## 294 Queenstown a few days or more <NA>
## 295 Queenstown within a few hours <NA>
## 296 Kallang N/A <NA>
## 297 Bukit Merah within a few hours <NA>
## 298 Bukit Merah within a few hours <NA>
## 299 Rochor a few days or more <NA>
## 300 Bukit Merah a few days or more <NA>
## 301 Outram a few days or more <NA>
## 302 Bukit Merah a few days or more <NA>
## 303 Bukit Merah a few days or more <NA>
## 304 Downtown Core within a few hours <NA>
## 305 Downtown Core within a few hours <NA>
## 306 Novena within an hour <NA>
## 307 Kallang within a few hours <NA>
## 308 Kallang within an hour <NA>
## 309 Singapore River within an hour <NA>
## 310 Bukit Merah within an hour <NA>
## 311 Queenstown within a few hours <NA>
## 312 Outram a few days or more <NA>
## 313 Rochor within a day <NA>
## 314 Jurong East within a few hours <NA>
## 315 Outram within a few hours <NA>
## 316 Bedok N/A <NA>
## 317 Bukit Merah within a day <NA>
## 318 Bedok within an hour <NA>
## 319 Outram within a day <NA>
## 320 Bukit Merah within a few hours <NA>
## 321 River Valley <NA>
## 322 River Valley <NA>
## 323 Queenstown within an hour <NA>
## 324 Rochor within a day <NA>
## 325 Outram a few days or more <NA>
## 326 Tanglin within an hour <NA>
## 327 Novena within a day <NA>
## 328 Novena within a day <NA>
## 329 Kallang within a few hours <NA>
## 330 Queenstown within a few hours <NA>
## 331 Geylang within a day <NA>
## 332 Kallang within a few hours <NA>
## 333 Outram within a few hours <NA>
## 334 Orchard within a few hours <NA>
## 335 Outram within an hour <NA>
## 336 Downtown Core within an hour <NA>
## 337 Outram a few days or more <NA>
## 338 Bukit Merah within an hour <NA>
## 339 Tampines within an hour <NA>
## 340 Kallang within a few hours <NA>
## 341 Pasir Ris within an hour <NA>
## 342 Bukit Merah within an hour <NA>
## 343 Outram within an hour <NA>
## 344 Rochor within a day <NA>
## 345 Rochor N/A <NA>
## 346 Kallang within an hour <NA>
## 347 Jurong East within a few hours <NA>
## 348 Outram within a few hours <NA>
## 349 Outram within an hour <NA>
## 350 Outram within an hour <NA>
## 351 Bukit Merah <NA>
## 352 Bukit Merah <NA>
## 353 Downtown Core within an hour <NA>
## 354 Serangoon within an hour <NA>
## 355 Queenstown within a day <NA>
## 356 Rochor within an hour <NA>
## 357 Bishan within a few hours <NA>
## 358 River Valley within a few hours <NA>
## 359 Tanglin within an hour <NA>
## 360 Bukit Merah within a few hours <NA>
## 361 Bedok a few days or more <NA>
## 362 Bedok within an hour <NA>
## 363 Serangoon a few days or more <NA>
## 364 Bedok within a few hours <NA>
## 365 Geylang within a few hours <NA>
## 366 Downtown Core within a few hours <NA>
## 367 Queenstown within a day <NA>
## 368 Bukit Merah within a few hours <NA>
## 369 Ang Mo Kio a few days or more <NA>
## 370 Geylang a few days or more <NA>
## 371 River Valley within a few hours <NA>
## 372 Bukit Merah N/A <NA>
## 373 Outram within a few hours <NA>
## 374 Outram within an hour <NA>
## 375 Rochor a few days or more <NA>
## 376 Punggol within an hour <NA>
## 377 Downtown Core within a few hours <NA>
## 378 Bishan within a few hours <NA>
## 379 Rochor within a day <NA>
## 380 Downtown Core within a few hours <NA>
## 381 Geylang a few days or more <NA>
## 382 Novena a few days or more <NA>
## 383 Kallang a few days or more <NA>
## 384 Bukit Merah within a few hours <NA>
## 385 Marine Parade a few days or more <NA>
## 386 Geylang a few days or more <NA>
## 387 Toa Payoh a few days or more <NA>
## 388 Marine Parade a few days or more <NA>
## 389 Geylang a few days or more <NA>
## 390 Geylang a few days or more <NA>
## 391 Kallang a few days or more <NA>
## 392 Downtown Core within an hour <NA>
## 393 Downtown Core within a few hours <NA>
## 394 Downtown Core within a few hours <NA>
## 395 Rochor within an hour <NA>
## 396 Kallang within an hour <NA>
## 397 Kallang within an hour <NA>
## 398 Novena within an hour <NA>
## 399 River Valley within a few hours <NA>
## 400 Bukit Merah within an hour <NA>
## 401 Outram within an hour <NA>
## 402 Rochor within an hour <NA>
## 403 Rochor within an hour <NA>
## 404 Outram within an hour <NA>
## 405 Singapore River within a few hours <NA>
## 406 Bukit Merah <NA>
## 407 River Valley within a few hours <NA>
## 408 Kallang within an hour <NA>
## 409 Outram within a few hours <NA>
## 410 Bedok N/A <NA>
## 411 Downtown Core within a few hours <NA>
## 412 Orchard a few days or more <NA>
## 413 Bedok within a day <NA>
## 414 Outram within an hour <NA>
## 415 Downtown Core within a few hours <NA>
## 416 Downtown Core within a few hours <NA>
## 417 Outram within an hour <NA>
## 418 Outram within a day <NA>
## 419 Novena within a few hours <NA>
## 420 Yishun N/A <NA>
## 421 Yishun N/A <NA>
## 422 Downtown Core within an hour <NA>
## 423 River Valley within a few hours <NA>
## 424 Outram within a few hours <NA>
## 425 Outram within a few hours <NA>
## 426 Hougang within an hour <NA>
## 427 Outram within an hour <NA>
## 428 Novena N/A <NA>
## 429 Outram within a day <NA>
## 430 Geylang within a few hours <NA>
## 431 Singapore River within a few hours <NA>
## 432 Outram within a few hours <NA>
## 433 Outram within a few hours <NA>
## 434 Downtown Core within a few hours <NA>
## 435 Kallang within an hour <NA>
## 436 Central Water Catchment within a day <NA>
## 437 Singapore River within a few hours <NA>
## 438 Woodlands within a day <NA>
## 439 Geylang within a day <NA>
## 440 Bedok within an hour <NA>
## 441 Bedok within a few hours <NA>
## 442 River Valley within a day <NA>
## 443 Kallang within an hour <NA>
## 444 Outram within a few hours <NA>
## 445 Outram within a few hours <NA>
## 446 Bukit Batok a few days or more <NA>
## 447 Outram within an hour <NA>
## 448 Jurong East within a few hours <NA>
## 449 Tanglin a few days or more <NA>
## 450 Outram within an hour <NA>
## 451 Downtown Core N/A <NA>
## 452 Queenstown within a day <NA>
## 453 River Valley within an hour <NA>
## 454 Tampines within a day <NA>
## 455 Bedok within an hour <NA>
## 456 Singapore River within a few hours <NA>
## 457 Outram within a few hours <NA>
## 458 Novena within a few hours <NA>
## 459 Novena within a few hours <NA>
## 460 Outram within an hour <NA>
## 461 Outram within a day <NA>
## 462 Novena within an hour <NA>
## 463 Downtown Core within a few hours <NA>
## 464 River Valley within a few hours <NA>
## 465 Downtown Core within a few hours <NA>
## 466 Novena within an hour <NA>
## 467 Outram within an hour <NA>
## 468 Geylang within a few hours <NA>
## 469 Downtown Core within an hour <NA>
## 470 Bukit Merah a few days or more <NA>
## 471 Bedok a few days or more <NA>
## 472 Outram within a few hours <NA>
## 473 River Valley within a few hours <NA>
## 474 River Valley within a few hours <NA>
## 475 Outram within an hour <NA>
## 476 Rochor within an hour <NA>
## 477 River Valley within a few hours <NA>
## 478 Outram within a few hours <NA>
## 479 Rochor within an hour <NA>
## 480 Bukit Merah within an hour <NA>
## 481 Bedok a few days or more <NA>
## 482 Bedok a few days or more <NA>
## 483 Outram N/A <NA>
## 484 Outram within a few hours <NA>
## 485 Tanglin within an hour <NA>
## 486 Queenstown a few days or more <NA>
## 487 Kallang within an hour <NA>
## 488 Rochor within a day <NA>
## 489 Downtown Core within a few hours <NA>
## 490 Jurong West a few days or more <NA>
## 491 Novena a few days or more <NA>
## 492 Outram within a few hours <NA>
## 493 Outram within a few hours <NA>
## 494 Outram within an hour <NA>
## 495 Outram within a day <NA>
## 496 Kallang within a day <NA>
## 497 Kallang within a day <NA>
## 498 Downtown Core within a few hours <NA>
## 499 Rochor within an hour <NA>
## 500 Jurong West within a few hours <NA>
## 501 Rochor within a day <NA>
## 502 Outram within an hour <NA>
## 503 Kallang within an hour <NA>
## 504 Singapore River within an hour <NA>
## 505 Outram within a few hours <NA>
## 506 Downtown Core within a few hours <NA>
## 507 Rochor within a day <NA>
## 508 Marine Parade within an hour <NA>
## 509 Kallang a few days or more <NA>
## 510 Novena a few days or more <NA>
## 511 River Valley within a few hours <NA>
## 512 Downtown Core within an hour <NA>
## 513 Bukit Merah a few days or more <NA>
## 514 Downtown Core within an hour <NA>
## 515 Downtown Core within an hour <NA>
## 516 River Valley within an hour <NA>
## 517 Singapore River within a few hours <NA>
## 518 Queenstown a few days or more <NA>
## 519 Kallang within a few hours <NA>
## 520 Outram within a few hours <NA>
## 521 Kallang within an hour <NA>
## 522 Outram within an hour <NA>
## 523 Downtown Core within a few hours <NA>
## 524 Geylang a few days or more <NA>
## 525 Bedok within a few hours <NA>
## 526 Bedok within an hour <NA>
## 527 Kallang within an hour <NA>
## 528 River Valley within a few hours <NA>
## 529 Queenstown a few days or more <NA>
## 530 Novena within an hour <NA>
## 531 Marine Parade within an hour <NA>
## 532 Outram within a few hours <NA>
## 533 Queenstown within a few hours <NA>
## 534 Tanglin <NA>
## 535 Novena a few days or more <NA>
## 536 River Valley within a few hours <NA>
## 537 Outram within a few hours <NA>
## 538 Jurong East within a few hours <NA>
## 539 Tanglin a few days or more <NA>
## 540 Jurong East within a few hours <NA>
## 541 Kallang N/A <NA>
## 542 Punggol within an hour <NA>
## 543 Rochor within an hour <NA>
## 544 Jurong East within a few hours <NA>
## 545 Downtown Core within a few hours <NA>
## 546 Downtown Core within a few hours <NA>
## 547 Novena within an hour <NA>
## 548 Outram within a day <NA>
## 549 Outram within a day <NA>
## 550 Downtown Core within a few hours <NA>
## 551 Downtown Core within a few hours <NA>
## 552 Downtown Core within a few hours <NA>
## 553 Rochor within an hour <NA>
## 554 Rochor within an hour <NA>
## 555 Rochor within an hour <NA>
## 556 Rochor within an hour <NA>
## 557 Rochor within an hour <NA>
## 558 Rochor within an hour <NA>
## 559 Rochor within an hour <NA>
## 560 Rochor within an hour <NA>
## 561 Downtown Core within an hour <NA>
## 562 Bukit Merah a few days or more <NA>
## 563 Bukit Merah a few days or more <NA>
## 564 Rochor within an hour <NA>
## 565 Rochor within a day <NA>
## 566 Rochor within an hour <NA>
## 567 Bedok within an hour <NA>
## 568 Downtown Core within an hour <NA>
## 569 Rochor within an hour <NA>
## 570 Downtown Core within an hour <NA>
## 571 Rochor within an hour <NA>
## 572 Novena within an hour <NA>
## 573 River Valley within a few hours <NA>
## 574 Bukit Merah a few days or more <NA>
## 575 Bukit Merah a few days or more <NA>
## 576 Bukit Merah a few days or more <NA>
## 577 Bukit Merah a few days or more <NA>
## 578 River Valley within an hour <NA>
## 579 Singapore River within a few hours <NA>
## 580 Clementi within a few hours <NA>
## 581 River Valley within a few hours <NA>
## 582 Novena a few days or more <NA>
## 583 Rochor within an hour <NA>
## 584 Outram N/A <NA>
## 585 Bishan within a few hours <NA>
## 586 Bishan within a few hours <NA>
## 587 Downtown Core within a few hours <NA>
## 588 Jurong East within a few hours <NA>
## 589 Downtown Core within a few hours <NA>
## 590 Marine Parade N/A <NA>
## 591 Bukit Merah within a few hours <NA>
## 592 Queenstown within a day <NA>
## 593 Geylang within a few hours <NA>
## 594 Bedok within an hour <NA>
## 595 Museum N/A <NA>
## 596 River Valley a few days or more <NA>
## 597 Jurong East within a day <NA>
## 598 Outram within a few hours <NA>
## 599 Outram within a few hours <NA>
## 600 Bukit Merah <NA>
## 601 Novena within a few hours <NA>
## 602 Outram within an hour <NA>
## 603 Novena within a day <NA>
## 604 Bedok within a few hours <NA>
## 605 Rochor a few days or more <NA>
## 606 Kallang N/A <NA>
## 607 Punggol a few days or more <NA>
## 608 Outram within a day <NA>
## 609 Outram within a day <NA>
## 610 Serangoon a few days or more <NA>
## 611 Geylang a few days or more <NA>
## 612 Geylang a few days or more <NA>
## 613 Bedok within a few hours <NA>
## 614 Bedok within an hour <NA>
## 615 Outram within a day <NA>
## 616 Downtown Core within an hour <NA>
## 617 Marine Parade within a day <NA>
## 618 Outram within a few hours <NA>
## 619 Bukit Merah within a few hours <NA>
## 620 Geylang within an hour <NA>
## 621 Rochor within an hour <NA>
## 622 Outram within a few hours <NA>
## 623 Rochor within a day <NA>
## 624 Rochor within a day <NA>
## 625 Kallang within a few hours <NA>
## 626 Bukit Merah a few days or more <NA>
## 627 Bukit Merah within a few hours <NA>
## 628 Novena a few days or more <NA>
## 629 River Valley within a few hours <NA>
## 630 Bedok within an hour <NA>
## 631 Kallang within an hour <NA>
## 632 Novena a few days or more <NA>
## 633 Novena a few days or more <NA>
## 634 Novena a few days or more <NA>
## 635 Bukit Timah within an hour <NA>
## 636 Kallang within an hour <NA>
## 637 Downtown Core within a few hours <NA>
## 638 Bukit Merah a few days or more <NA>
## 639 Bukit Merah a few days or more <NA>
## 640 Downtown Core within a day <NA>
## 641 Geylang within an hour <NA>
## 642 Outram within a few hours <NA>
## 643 Outram within a few hours <NA>
## 644 Outram within an hour <NA>
## 645 Rochor within a day <NA>
## 646 Outram within a day <NA>
## 647 Novena a few days or more <NA>
## 648 Outram within an hour <NA>
## 649 Bedok a few days or more <NA>
## 650 Bedok a few days or more <NA>
## 651 Clementi within a few hours <NA>
## 652 Outram within a few hours <NA>
## 653 Kallang within a day <NA>
## 654 River Valley within a day <NA>
## 655 Kallang within a day <NA>
## 656 River Valley within a day <NA>
## 657 Museum a few days or more <NA>
## 658 Rochor a few days or more <NA>
## 659 Rochor a few days or more <NA>
## 660 Downtown Core a few days or more <NA>
## 661 Downtown Core a few days or more <NA>
## 662 Museum a few days or more <NA>
## 663 Rochor within a day <NA>
## 664 Orchard within a day <NA>
## 665 Downtown Core within an hour <NA>
## 666 Downtown Core within an hour <NA>
## 667 Rochor within an hour <NA>
## 668 Downtown Core within an hour <NA>
## 669 Rochor within an hour <NA>
## 670 Downtown Core within a few hours <NA>
## 671 Downtown Core within a few hours <NA>
## 672 Downtown Core within a few hours <NA>
## 673 Novena within a few hours <NA>
## 674 Rochor a few days or more <NA>
## 675 Bukit Merah a few days or more <NA>
## 676 Rochor within an hour <NA>
## 677 Downtown Core within an hour <NA>
## 678 Rochor within a few hours <NA>
## 679 River Valley within a few hours <NA>
## 680 Marine Parade within an hour <NA>
## 681 Outram within an hour <NA>
## 682 Rochor within an hour <NA>
## 683 Bukit Merah a few days or more <NA>
## 684 Downtown Core within an hour <NA>
## 685 Outram within a few hours <NA>
## 686 Rochor within an hour <NA>
## 687 Rochor within an hour <NA>
## 688 Geylang within an hour <NA>
## 689 River Valley within a day <NA>
## 690 River Valley within an hour <NA>
## 691 Downtown Core within a few hours <NA>
## 692 Newton within a day <NA>
## 693 Downtown Core within a few hours <NA>
## 694 Downtown Core within a few hours <NA>
## 695 Novena within a few hours <NA>
## 696 Geylang within a few hours <NA>
## 697 Bedok within an hour <NA>
## 698 Downtown Core within a few hours <NA>
## 699 Rochor within a day <NA>
## 700 Outram within a few hours <NA>
## 701 Downtown Core within a few hours <NA>
## 702 Outram within a few hours <NA>
## 703 River Valley within a day <NA>
## 704 Downtown Core within a few hours <NA>
## 705 Kallang within a few hours <NA>
## 706 Downtown Core within a few hours <NA>
## 707 Rochor a few days or more <NA>
## 708 Rochor a few days or more <NA>
## 709 Bukit Timah N/A <NA>
## 710 Bedok within a few hours <NA>
## 711 Bedok within a few hours <NA>
## 712 Bedok within an hour <NA>
## 713 Bedok within an hour <NA>
## 714 Bedok within an hour <NA>
## 715 Downtown Core within an hour <NA>
## 716 Downtown Core within an hour <NA>
## 717 Bedok within a few hours <NA>
## 718 Kallang within an hour <NA>
## 719 Kallang N/A <NA>
## 720 Novena a few days or more <NA>
## 721 Novena a few days or more <NA>
## 722 Bedok within a few hours <NA>
## 723 Bedok within a few hours <NA>
## 724 Downtown Core within a few hours <NA>
## 725 Bukit Merah a few days or more <NA>
## 726 Bukit Merah a few days or more <NA>
## 727 Downtown Core within a few hours <NA>
## 728 Geylang within a few hours <NA>
## 729 Downtown Core within a few hours <NA>
## 730 Downtown Core within a few hours <NA>
## 731 Novena within an hour <NA>
## 732 Downtown Core within a few hours <NA>
## 733 Tanglin within an hour <NA>
## 734 Orchard within a day <NA>
## 735 Geylang within a few hours <NA>
## 736 River Valley within a few hours <NA>
## 737 Rochor within a few hours <NA>
## 738 Downtown Core within an hour <NA>
## 739 Sembawang within an hour <NA>
## 740 Orchard within a day <NA>
## 741 Downtown Core within a few hours <NA>
## 742 Kallang within a few hours <NA>
## 743 Rochor within an hour <NA>
## 744 Downtown Core within an hour <NA>
## 745 Rochor within an hour <NA>
## 746 Rochor within an hour <NA>
## 747 Rochor within an hour <NA>
## 748 Queenstown within an hour <NA>
## 749 Novena within a few hours <NA>
## 750 Rochor within an hour <NA>
## 751 Downtown Core within an hour <NA>
## 752 Woodlands a few days or more <NA>
## 753 Rochor within an hour <NA>
## 754 Bukit Merah a few days or more <NA>
## 755 Bukit Merah a few days or more <NA>
## 756 Downtown Core within an hour <NA>
## 757 Outram within an hour <NA>
## 758 Rochor within an hour <NA>
## 759 Bukit Merah a few days or more <NA>
## 760 Queenstown within an hour <NA>
## 761 Rochor within a day <NA>
## 762 Rochor within a day <NA>
## 763 Downtown Core within a day <NA>
## 764 Downtown Core within a few hours <NA>
## 765 Tanglin a few days or more <NA>
## 766 Geylang within a few hours <NA>
## 767 Geylang within a few hours <NA>
## 768 Geylang within a few hours <NA>
## 769 Geylang within a few hours <NA>
## 770 Geylang within a few hours <NA>
## 771 Bedok within an hour <NA>
## 772 Bedok within an hour <NA>
## 773 Rochor a few days or more <NA>
## 774 Serangoon a few days or more <NA>
## 775 Bedok within a few hours <NA>
## 776 Bedok within an hour <NA>
## 777 Bedok within a few hours <NA>
## 778 Outram within a few hours <NA>
## 779 Bedok within an hour <NA>
## 780 Downtown Core a few days or more <NA>
## 781 Museum a few days or more <NA>
## 782 Rochor a few days or more <NA>
## 783 Rochor a few days or more <NA>
## 784 Outram within a few hours <NA>
## 785 Bukit Merah N/A <NA>
## 786 Rochor within an hour <NA>
## 787 Outram within a few hours <NA>
## 788 Rochor a few days or more <NA>
## 789 Geylang within an hour <NA>
## 790 Downtown Core within an hour <NA>
## 791 Novena within a few hours <NA>
## 792 Kallang within a few hours <NA>
## 793 Bukit Timah within an hour <NA>
## 794 Outram within an hour <NA>
## 795 Bedok within a few hours <NA>
## 796 Bedok within a few hours <NA>
## 797 Outram within a few hours <NA>
## 798 Novena a few days or more <NA>
## 799 Novena a few days or more <NA>
## 800 Novena a few days or more <NA>
## 801 Novena a few days or more <NA>
## 802 River Valley within a few hours <NA>
## 803 River Valley within a day <NA>
## 804 Orchard within a day <NA>
## 805 Novena within an hour <NA>
## 806 Rochor within a day <NA>
## 807 Rochor within a day <NA>
## 808 River Valley within a day <NA>
## 809 Outram N/A <NA>
## 810 River Valley within a day <NA>
## 811 River Valley within a day <NA>
## 812 River Valley within a day <NA>
## 813 Outram within a few hours <NA>
## 814 Outram within an hour <NA>
## 815 Downtown Core within a few hours <NA>
## 816 Kallang within a day <NA>
## 817 Kallang within an hour <NA>
## 818 Outram within a few hours <NA>
## 819 Downtown Core within a few hours <NA>
## 820 Bukit Merah a few days or more <NA>
## 821 Kallang within a day <NA>
## 822 Rochor within an hour <NA>
## 823 Rochor within an hour <NA>
## 824 Downtown Core within an hour <NA>
## 825 Downtown Core within a few hours <NA>
## 826 Bukit Merah within a few hours <NA>
## 827 Bukit Merah within a few hours <NA>
## 828 Jurong East within a few hours <NA>
## 829 Jurong East within a few hours <NA>
## 830 Jurong East within a few hours <NA>
## 831 Downtown Core within a few hours <NA>
## 832 Rochor within a few hours <NA>
## 833 Bedok within an hour <NA>
## 834 Outram within a few hours <NA>
## 835 Kallang within an hour <NA>
## 836 Downtown Core within a day <NA>
## 837 Downtown Core N/A <NA>
## 838 Downtown Core within a few hours <NA>
## 839 Outram within an hour <NA>
## 840 Toa Payoh within a few hours <NA>
## 841 Queenstown within a day <NA>
## 842 River Valley within a few hours <NA>
## 843 River Valley within a few hours <NA>
## 844 Bukit Merah a few days or more <NA>
## 845 Bukit Merah a few days or more <NA>
## 846 Bukit Merah a few days or more <NA>
## 847 Rochor within a day <NA>
## 848 Rochor within a day <NA>
## 849 Rochor within a day <NA>
## 850 Rochor within a day <NA>
## 851 Novena within a few hours <NA>
## 852 Geylang within a few hours <NA>
## 853 Geylang within a few hours <NA>
## 854 Outram within a few hours <NA>
## 855 Outram within a few hours <NA>
## 856 Kallang within a few hours <NA>
## 857 Pasir Ris a few days or more <NA>
## 858 Toa Payoh within a few hours <NA>
## 859 Downtown Core a few days or more <NA>
## 860 Outram within an hour <NA>
## 861 Sengkang a few days or more <NA>
## 862 Kallang within a few hours <NA>
## 863 Kallang within a few hours <NA>
## 864 Novena a few days or more <NA>
## 865 Serangoon a few days or more <NA>
## 866 Geylang a few days or more <NA>
## 867 Bedok within a few hours <NA>
## 868 Novena within an hour <NA>
## 869 Bukit Merah within a few hours <NA>
## 870 Downtown Core within a day <NA>
## 871 Downtown Core within a day <NA>
## 872 Geylang within a few hours <NA>
## 873 Kallang within an hour <NA>
## 874 Bedok within an hour <NA>
## 875 Bedok within an hour <NA>
## 876 Downtown Core within a day <NA>
## 877 Marine Parade within an hour <NA>
## 878 Ang Mo Kio a few days or more <NA>
## 879 Rochor within an hour <NA>
## 880 Geylang within an hour <NA>
## 881 Clementi within a few hours <NA>
## 882 Kallang within an hour <NA>
## 883 Clementi within an hour <NA>
## 884 Downtown Core a few days or more <NA>
## 885 Geylang within a few hours <NA>
## 886 Serangoon within a few hours <NA>
## 887 Geylang within a few hours <NA>
## 888 Rochor within a day <NA>
## 889 Outram within a few hours <NA>
## 890 Outram within a day <NA>
## 891 Outram within a few hours <NA>
## 892 Downtown Core within a few hours <NA>
## 893 Rochor within an hour <NA>
## 894 River Valley within a few hours <NA>
## 895 Geylang within a few hours <NA>
## 896 Geylang within an hour <NA>
## 897 Rochor a few days or more <NA>
## 898 Downtown Core within an hour <NA>
## 899 Geylang within a few hours <NA>
## 900 Geylang within a few hours <NA>
## 901 Geylang within a few hours <NA>
## 902 Queenstown within a day <NA>
## 903 River Valley within a few hours <NA>
## 904 Singapore River within a few hours <NA>
## 905 Outram within an hour <NA>
## 906 Singapore River within a day <NA>
## 907 River Valley within a few hours <NA>
## 908 Rochor N/A <NA>
## 909 Museum a few days or more <NA>
## 910 Rochor within a day <NA>
## 911 Marine Parade within a few hours <NA>
## 912 Jurong West within an hour <NA>
## 913 Bedok a few days or more <NA>
## 914 Geylang within a few hours <NA>
## 915 Marine Parade within a few hours <NA>
## 916 Kallang N/A <NA>
## 917 Bukit Merah within a few hours <NA>
## 918 Geylang within an hour <NA>
## 919 Geylang within an hour <NA>
## 920 Rochor within a day <NA>
## 921 Bedok N/A <NA>
## 922 Marine Parade within a few hours <NA>
## 923 Downtown Core N/A <NA>
## 924 River Valley within a few hours <NA>
## 925 Bishan within a day <NA>
## 926 River Valley within a few hours <NA>
## 927 Kallang within a few hours <NA>
## 928 Tanglin within a few hours <NA>
## 929 Geylang within a day <NA>
## 930 Kallang within a few hours <NA>
## 931 Woodlands within an hour <NA>
## 932 Newton within an hour <NA>
## 933 Newton within an hour <NA>
## 934 Outram within a few hours <NA>
## 935 Singapore River within a day <NA>
## 936 Kallang a few days or more <NA>
## 937 Kallang within a day <NA>
## 938 Rochor within a day <NA>
## 939 Bukit Timah within an hour <NA>
## 940 River Valley within a few hours <NA>
## 941 Rochor within an hour <NA>
## 942 Bedok N/A <NA>
## 943 Rochor within a day <NA>
## 944 River Valley within an hour <NA>
## 945 Kallang within a few hours <NA>
## 946 Singapore River a few days or more <NA>
## 947 River Valley within a few hours <NA>
## 948 Novena within a few hours <NA>
## 949 Singapore River within a day <NA>
## 950 Downtown Core within a few hours <NA>
## 951 Newton within an hour <NA>
## 952 Outram N/A <NA>
## 953 Serangoon a few days or more <NA>
## 954 Outram within a day <NA>
## 955 Queenstown within a day <NA>
## 956 Novena within an hour <NA>
## 957 Serangoon within a day <NA>
## 958 Bedok within an hour <NA>
## 959 Bedok within an hour <NA>
## 960 Bedok within an hour <NA>
## 961 Bedok within an hour <NA>
## 962 Bedok within an hour <NA>
## 963 Bedok within a few hours <NA>
## 964 Bedok within a few hours <NA>
## 965 Outram within a few hours <NA>
## 966 Jurong West within a day <NA>
## 967 Bedok a few days or more <NA>
## 968 Downtown Core within a few hours <NA>
## 969 Bedok within a few hours <NA>
## 970 Bedok within a few hours <NA>
## 971 Bedok N/A <NA>
## 972 Jurong West within an hour <NA>
## 973 Jurong West within an hour <NA>
## 974 Tanglin within a few hours <NA>
## 975 Tanglin within an hour <NA>
## 976 Kallang within a few hours <NA>
## 977 Marine Parade within a few hours <NA>
## 978 Downtown Core within a few hours <NA>
## 979 Outram within a few hours <NA>
## 980 Novena within a few hours <NA>
## 981 Outram within a few hours <NA>
## 982 Kallang within an hour <NA>
## 983 Bedok within an hour <NA>
## 984 Tampines a few days or more <NA>
## 985 River Valley within a few hours <NA>
## 986 Kallang within a few hours <NA>
## 987 Outram within a few hours <NA>
## 988 Outram within a few hours <NA>
## 989 Geylang within an hour <NA>
## 990 Outram within an hour <NA>
## 991 Yishun a few days or more <NA>
## 992 Outram within a few hours <NA>
## 993 Bukit Merah N/A <NA>
## 994 Serangoon within an hour <NA>
## 995 Rochor within a few hours <NA>
## 996 Bedok a few days or more <NA>
## 997 Bedok a few days or more <NA>
## 998 Bedok a few days or more <NA>
## 999 Bedok a few days or more <NA>
## 1000 Bedok a few days or more <NA>
## 1001 Bedok a few days or more <NA>
## 1002 Bedok a few days or more <NA>
## 1003 Rochor within a few hours <NA>
## 1004 Kallang within a few hours <NA>
## 1005 Kallang within a few hours <NA>
## 1006 River Valley within a few hours <NA>
## 1007 Kallang within a few hours <NA>
## 1008 Kallang within a few hours <NA>
## 1009 River Valley within a day <NA>
## 1010 Kallang within a few hours <NA>
## 1011 Bishan within a few hours <NA>
## 1012 Geylang within a few hours <NA>
## 1013 Singapore River within a day <NA>
## 1014 Kallang within a few hours <NA>
## 1015 River Valley within a few hours <NA>
## 1016 Geylang within an hour <NA>
## 1017 Outram within a few hours <NA>
## 1018 Punggol within an hour <NA>
## 1019 Choa Chu Kang within a few hours <NA>
## 1020 River Valley within a few hours <NA>
## 1021 Geylang within a few hours <NA>
## 1022 Geylang within an hour <NA>
## 1023 Geylang within a few hours <NA>
## 1024 Geylang within an hour <NA>
## 1025 Serangoon within a day <NA>
## 1026 Serangoon within a day <NA>
## 1027 Geylang within a few hours <NA>
## 1028 Bedok within an hour <NA>
## 1029 Tanglin within an hour <NA>
## 1030 Serangoon within a few hours <NA>
## 1031 Geylang within a day <NA>
## 1032 Serangoon within a few hours <NA>
## 1033 Jurong East within a few hours <NA>
## 1034 Bedok a few days or more <NA>
## 1035 Bukit Timah within a day <NA>
## 1036 Outram within a few hours <NA>
## 1037 Jurong East within a few hours <NA>
## 1038 Tanglin within an hour <NA>
## 1039 Bukit Merah N/A <NA>
## 1040 Newton a few days or more <NA>
## 1041 Outram within a few hours <NA>
## 1042 Geylang within an hour <NA>
## 1043 Geylang within an hour <NA>
## 1044 Bedok a few days or more <NA>
## 1045 Marine Parade within a day <NA>
## 1046 Bukit Timah within a day <NA>
## 1047 Kallang within a few hours <NA>
## 1048 Rochor within an hour <NA>
## 1049 Bukit Panjang within an hour <NA>
## 1050 Novena a few days or more <NA>
## 1051 Novena a few days or more <NA>
## 1052 Geylang a few days or more <NA>
## 1053 Geylang within an hour <NA>
## 1054 Geylang within a few hours <NA>
## 1055 Novena a few days or more <NA>
## 1056 Bukit Timah within an hour <NA>
## 1057 Rochor a few days or more <NA>
## 1058 Outram within a few hours <NA>
## 1059 Geylang within a few hours <NA>
## 1060 Bedok a few days or more <NA>
## 1061 Tampines within a few hours <NA>
## 1062 Jurong West within a day <NA>
## 1063 Bukit Merah N/A <NA>
## 1064 Jurong West within a day <NA>
## 1065 Queenstown within an hour <NA>
## 1066 Marine Parade within a few hours <NA>
## 1067 Hougang within an hour <NA>
## 1068 Bedok within a day <NA>
## 1069 Geylang within a few hours <NA>
## 1070 Queenstown N/A <NA>
## 1071 Geylang within a few hours <NA>
## 1072 Marine Parade within a day <NA>
## 1073 Outram within an hour <NA>
## 1074 Outram within an hour <NA>
## 1075 Serangoon a few days or more <NA>
## 1076 Outram within a day <NA>
## 1077 Outram within a day <NA>
## 1078 Outram within an hour <NA>
## 1079 Hougang a few days or more <NA>
## 1080 Novena within a few hours <NA>
## 1081 Newton a few days or more <NA>
## 1082 Outram within an hour <NA>
## 1083 Geylang within a few hours <NA>
## 1084 Geylang within a few hours <NA>
## 1085 Outram within a few hours <NA>
## 1086 Downtown Core within a few hours <NA>
## 1087 Jurong East within an hour <NA>
## 1088 Outram within a few hours <NA>
## 1089 Rochor within a few hours <NA>
## 1090 Jurong West within an hour <NA>
## 1091 Rochor within a few hours <NA>
## 1092 Kallang a few days or more <NA>
## 1093 Rochor within a few hours <NA>
## 1094 Geylang within a day <NA>
## 1095 Kallang within a day <NA>
## 1096 Woodlands within an hour <NA>
## 1097 Geylang within a few hours <NA>
## 1098 Kallang within a day <NA>
## 1099 Geylang within a day <NA>
## 1100 Outram within a few hours <NA>
## 1101 Newton within an hour <NA>
## 1102 River Valley within a few hours <NA>
## 1103 Woodlands within an hour <NA>
## 1104 Outram within a few hours <NA>
## 1105 Geylang within a day <NA>
## 1106 Rochor within a few hours <NA>
## 1107 Geylang within a day <NA>
## 1108 Marine Parade N/A <NA>
## 1109 Tampines N/A <NA>
## 1110 Geylang within a day <NA>
## 1111 Geylang within a day <NA>
## 1112 Outram within a few hours <NA>
## 1113 Outram within a few hours <NA>
## 1114 Outram within a few hours <NA>
## 1115 Outram within a few hours <NA>
## 1116 Geylang within a few hours <NA>
## 1117 Outram within a few hours <NA>
## 1118 Tampines within a day <NA>
## 1119 Tampines within a day <NA>
## 1120 Geylang within a day <NA>
## 1121 Geylang within a few hours <NA>
## 1122 Newton within a few hours <NA>
## 1123 Tanglin within an hour <NA>
## 1124 Kallang within a few hours <NA>
## 1125 Kallang within an hour <NA>
## 1126 Bedok within a few hours <NA>
## 1127 Novena within an hour <NA>
## 1128 Hougang within an hour <NA>
## 1129 Geylang within a day <NA>
## 1130 Tampines within a day <NA>
## 1131 Geylang within a few hours <NA>
## 1132 Geylang within a few hours <NA>
## 1133 Geylang within a few hours <NA>
## 1134 Geylang within a few hours <NA>
## 1135 Tampines within an hour <NA>
## 1136 Outram within a few hours <NA>
## 1137 Punggol within a few hours <NA>
## 1138 Geylang within a few hours <NA>
## 1139 Bedok within a few hours <NA>
## 1140 Outram within a few hours <NA>
## 1141 Kallang N/A <NA>
## 1142 Geylang within a few hours <NA>
## 1143 Serangoon within a few hours <NA>
## 1144 Kallang within a few hours <NA>
## 1145 Bedok within an hour <NA>
## 1146 Bedok within an hour <NA>
## 1147 Bedok within an hour <NA>
## 1148 Geylang within a few hours <NA>
## 1149 Jurong West within an hour <NA>
## 1150 Jurong West a few days or more <NA>
## 1151 Tampines N/A <NA>
## 1152 Marine Parade N/A <NA>
## 1153 Marine Parade within a few hours <NA>
## 1154 Outram within an hour <NA>
## 1155 Downtown Core a few days or more <NA>
## 1156 Downtown Core a few days or more <NA>
## 1157 Ang Mo Kio within a few hours <NA>
## 1158 Outram within a day <NA>
## 1159 Geylang a few days or more <NA>
## 1160 Geylang within a few hours <NA>
## 1161 Museum within an hour <NA>
## 1162 Geylang within a few hours <NA>
## 1163 Novena within a few hours <NA>
## 1164 Geylang within a day <NA>
## 1165 Kallang within an hour <NA>
## 1166 Hougang within an hour <NA>
## 1167 Serangoon within a few hours <NA>
## 1168 Outram within an hour <NA>
## 1169 Hougang N/A <NA>
## 1170 Outram within a few hours <NA>
## 1171 Queenstown within a day <NA>
## 1172 Toa Payoh within an hour <NA>
## 1173 Kallang within an hour <NA>
## 1174 Outram within a day <NA>
## 1175 Geylang within a few hours <NA>
## 1176 Geylang within a day <NA>
## 1177 Bukit Merah within an hour <NA>
## 1178 Museum within an hour <NA>
## 1179 Geylang within a few hours <NA>
## 1180 Bedok a few days or more <NA>
## 1181 Toa Payoh within an hour <NA>
## 1182 Bedok a few days or more <NA>
## 1183 Rochor within an hour <NA>
## 1184 Woodlands within a day <NA>
## 1185 Museum within an hour <NA>
## 1186 Tanglin within a few hours <NA>
## 1187 Geylang within a few hours <NA>
## 1188 Geylang within a few hours <NA>
## 1189 Geylang within an hour <NA>
## 1190 Geylang within an hour <NA>
## 1191 Geylang within an hour <NA>
## 1192 Geylang within an hour <NA>
## 1193 Geylang within a few hours <NA>
## 1194 Geylang within an hour <NA>
## 1195 Kallang within an hour <NA>
## 1196 Geylang within a few hours <NA>
## 1197 Geylang within a few hours <NA>
## 1198 Geylang within a few hours <NA>
## 1199 Geylang within a few hours <NA>
## 1200 Geylang within a few hours <NA>
## 1201 Geylang within a few hours <NA>
## 1202 Newton within a few hours <NA>
## 1203 Geylang within a few hours <NA>
## 1204 Geylang within a few hours <NA>
## 1205 Newton within a few hours <NA>
## 1206 Geylang within a few hours <NA>
## 1207 Geylang within a few hours <NA>
## 1208 Geylang within a few hours <NA>
## 1209 Jurong West N/A <NA>
## 1210 Geylang within a few hours <NA>
## 1211 Kallang within an hour <NA>
## 1212 Kallang within a few hours <NA>
## 1213 Tampines within a day <NA>
## 1214 Tampines within a day <NA>
## 1215 Geylang within a few hours <NA>
## 1216 Geylang within a day <NA>
## 1217 Geylang within a few hours <NA>
## 1218 Kallang within a few hours <NA>
## 1219 Bukit Merah N/A <NA>
## 1220 Newton within an hour <NA>
## 1221 Jurong West a few days or more <NA>
## 1222 Bukit Merah within a few hours <NA>
## 1223 Bedok a few days or more <NA>
## 1224 Hougang within an hour <NA>
## 1225 Serangoon within a few hours <NA>
## 1226 Queenstown N/A <NA>
## 1227 Geylang within a few hours <NA>
## 1228 Newton within a few hours <NA>
## 1229 Outram within an hour <NA>
## 1230 Outram within an hour <NA>
## 1231 Outram within a few hours <NA>
## 1232 Kallang within an hour <NA>
## 1233 Newton within a few hours <NA>
## 1234 Bedok within a few hours <NA>
## 1235 Jurong East within a day <NA>
## 1236 Outram within an hour <NA>
## 1237 Outram within a few hours <NA>
## 1238 Bukit Merah N/A <NA>
## 1239 Outram within an hour <NA>
## 1240 Outram within a few hours <NA>
## 1241 Outram within a few hours <NA>
## 1242 Outram within an hour <NA>
## 1243 Outram within a few hours <NA>
## 1244 Kallang within a few hours <NA>
## 1245 Outram within an hour <NA>
## 1246 Outram within a day <NA>
## 1247 Jurong West within an hour <NA>
## 1248 Bukit Timah within a few hours <NA>
## 1249 Kallang within an hour <NA>
## 1250 Outram within an hour <NA>
## 1251 Outram within an hour <NA>
## 1252 Outram within a few hours <NA>
## 1253 Outram within an hour <NA>
## 1254 Geylang within a few hours <NA>
## 1255 Geylang within a few hours <NA>
## 1256 Pasir Ris within a few hours <NA>
## 1257 Bedok within an hour <NA>
## 1258 Newton within an hour <NA>
## 1259 Geylang within a few hours <NA>
## 1260 Geylang within a few hours <NA>
## 1261 Geylang within a few hours <NA>
## 1262 Geylang within a few hours <NA>
## 1263 Geylang within a few hours <NA>
## 1264 River Valley within an hour <NA>
## 1265 Woodlands within a day <NA>
## 1266 Geylang within a day <NA>
## 1267 Singapore River within a day <NA>
## 1268 Newton within a few hours <NA>
## 1269 Bukit Timah within a few hours <NA>
## 1270 Jurong East within a day <NA>
## 1271 Woodlands within a few hours <NA>
## 1272 Punggol within a day <NA>
## 1273 Kallang N/A <NA>
## 1274 Geylang within an hour <NA>
## 1275 Queenstown within a few hours <NA>
## 1276 Geylang within a few hours <NA>
## 1277 Singapore River within a day <NA>
## 1278 Queenstown within a few hours <NA>
## 1279 Novena a few days or more <NA>
## 1280 Jurong West within a few hours <NA>
## 1281 Pasir Ris within a few hours <NA>
## 1282 Queenstown N/A <NA>
## 1283 Novena N/A <NA>
## 1284 Geylang within a few hours <NA>
## 1285 Novena a few days or more <NA>
## 1286 Bukit Merah N/A <NA>
## 1287 Bukit Merah within an hour <NA>
## 1288 Toa Payoh within a few hours <NA>
## 1289 Geylang within an hour <NA>
## 1290 Jurong West within a few hours <NA>
## 1291 Bishan N/A <NA>
## 1292 Bishan a few days or more <NA>
## 1293 Geylang N/A <NA>
## 1294 Geylang a few days or more <NA>
## 1295 Jurong East within a few hours <NA>
## 1296 Choa Chu Kang within an hour <NA>
## 1297 Jurong East N/A <NA>
## 1298 Geylang within an hour <NA>
## 1299 Geylang within an hour <NA>
## 1300 Geylang within an hour <NA>
## 1301 Geylang within an hour <NA>
## 1302 Geylang within an hour <NA>
## 1303 Geylang within an hour <NA>
## 1304 Geylang within a day <NA>
## 1305 Geylang within an hour <NA>
## 1306 Geylang within an hour <NA>
## 1307 Rochor N/A <NA>
## 1308 Bukit Timah within a few hours <NA>
## 1309 Newton within a few hours <NA>
## 1310 Geylang within an hour <NA>
## 1311 Geylang within an hour <NA>
## 1312 Geylang within an hour <NA>
## 1313 Geylang within an hour <NA>
## 1314 Geylang within an hour <NA>
## 1315 Geylang within an hour <NA>
## 1316 Geylang within an hour <NA>
## 1317 Geylang within an hour <NA>
## 1318 Geylang within an hour <NA>
## 1319 Outram N/A <NA>
## 1320 Outram N/A <NA>
## 1321 Geylang within a day <NA>
## 1322 Jurong West N/A <NA>
## 1323 Jurong East within a few hours <NA>
## 1324 Kallang within an hour <NA>
## 1325 Geylang within an hour <NA>
## 1326 Bukit Panjang a few days or more <NA>
## 1327 Marine Parade N/A <NA>
## 1328 Geylang within an hour <NA>
## 1329 Kallang within an hour <NA>
## 1330 Hougang a few days or more <NA>
## 1331 Queenstown within an hour <NA>
## 1332 Jurong East N/A <NA>
## 1333 Kallang within an hour <NA>
## 1334 Outram N/A <NA>
## 1335 Queenstown within an hour <NA>
## 1336 Jurong West within a day <NA>
## 1337 Jurong West within a day <NA>
## 1338 Jurong West within a day <NA>
## 1339 Tampines within a day <NA>
## 1340 Novena within a few hours <NA>
## 1341 Bukit Batok a few days or more <NA>
## 1342 Bukit Timah within a few hours <NA>
## 1343 Geylang within a day <NA>
## 1344 Jurong West within a day <NA>
## 1345 Jurong West within a few hours <NA>
## 1346 Kallang within an hour <NA>
## 1347 Novena within a few hours <NA>
## 1348 Kallang within an hour <NA>
## 1349 Bukit Timah N/A <NA>
## 1350 Bukit Merah N/A <NA>
## 1351 Bedok within an hour <NA>
## 1352 Bedok within an hour <NA>
## 1353 Serangoon within an hour <NA>
## 1354 Geylang within an hour <NA>
## 1355 Pasir Ris within a day <NA>
## 1356 Kallang within a few hours <NA>
## 1357 Bishan a few days or more <NA>
## 1358 Yishun within an hour <NA>
## 1359 Yishun within an hour <NA>
## 1360 Serangoon within an hour <NA>
## 1361 Bukit Merah within a few hours <NA>
## 1362 Bukit Merah within a few hours <NA>
## 1363 Kallang within an hour <NA>
## 1364 Kallang within an hour <NA>
## 1365 Queenstown within an hour <NA>
## 1366 Bukit Timah within an hour <NA>
## 1367 Kallang within a few hours <NA>
## 1368 Queenstown within a few hours <NA>
## 1369 Kallang within a day <NA>
## 1370 Kallang within a few hours <NA>
## 1371 Outram within an hour <NA>
## 1372 Kallang within an hour <NA>
## 1373 Kallang within a day <NA>
## 1374 Kallang within a day <NA>
## 1375 Clementi a few days or more <NA>
## 1376 Jurong West within an hour <NA>
## 1377 Kallang within an hour <NA>
## 1378 Outram within a day <NA>
## 1379 Kallang within an hour <NA>
## 1380 Kallang within an hour <NA>
## 1381 Outram within an hour <NA>
## 1382 Kallang within a few hours <NA>
## 1383 Kallang within a few hours <NA>
## 1384 Kallang within a few hours <NA>
## 1385 Kallang within an hour <NA>
## 1386 Kallang within an hour <NA>
## 1387 Kallang within a few hours <NA>
## 1388 Outram within a few hours <NA>
## 1389 Kallang within a few hours <NA>
## 1390 Geylang within an hour <NA>
## 1391 Outram within an hour <NA>
## 1392 Kallang within an hour <NA>
## 1393 Kallang within a few hours <NA>
## 1394 Kallang within a few hours <NA>
## 1395 Kallang within a few hours <NA>
## 1396 Outram within an hour <NA>
## 1397 Kallang within an hour <NA>
## 1398 Kallang within a day <NA>
## 1399 River Valley within an hour <NA>
## 1400 Bukit Timah within an hour <NA>
## 1401 Marine Parade N/A <NA>
## 1402 Toa Payoh within a few hours <NA>
## 1403 Kallang within a few hours <NA>
## 1404 Jurong West within a few hours <NA>
## 1405 Outram within an hour <NA>
## 1406 Jurong West within a day <NA>
## 1407 Choa Chu Kang within an hour <NA>
## 1408 Kallang within an hour <NA>
## 1409 Kallang within an hour <NA>
## 1410 Outram within a day <NA>
## 1411 Bukit Timah within a few hours <NA>
## 1412 Jurong East within a day <NA>
## 1413 Queenstown within an hour <NA>
## 1414 Kallang within an hour <NA>
## 1415 Rochor within an hour <NA>
## 1416 Bedok within a day <NA>
## 1417 Kallang within a few hours <NA>
## 1418 Punggol N/A <NA>
## 1419 Punggol within a day <NA>
## 1420 Geylang within an hour <NA>
## 1421 Jurong East within a day <NA>
## 1422 Ang Mo Kio N/A <NA>
## 1423 Bedok within an hour <NA>
## 1424 Outram within an hour <NA>
## 1425 Ang Mo Kio N/A <NA>
## 1426 Outram within a few hours <NA>
## 1427 Jurong East within a day <NA>
## 1428 Ang Mo Kio a few days or more <NA>
## 1429 Bukit Panjang within a few hours <NA>
## 1430 Jurong East a few days or more <NA>
## 1431 Rochor a few days or more <NA>
## 1432 Kallang within a few hours <NA>
## 1433 Rochor within an hour <NA>
## 1434 Bukit Merah within a few hours <NA>
## 1435 Bukit Timah within an hour <NA>
## 1436 River Valley within a day <NA>
## 1437 Bedok within an hour <NA>
## 1438 Kallang within a few hours <NA>
## 1439 Downtown Core a few days or more <NA>
## 1440 Kallang within a day <NA>
## 1441 Geylang within an hour <NA>
## 1442 Geylang a few days or more <NA>
## 1443 Rochor a few days or more <NA>
## 1444 Bedok N/A <NA>
## 1445 Hougang within a few hours <NA>
## 1446 Jurong West N/A <NA>
## 1447 Bedok within a few hours <NA>
## 1448 Toa Payoh within a day <NA>
## 1449 Kallang a few days or more <NA>
## 1450 Bishan N/A <NA>
## 1451 Jurong West N/A <NA>
## 1452 Marine Parade within a day <NA>
## 1453 Marine Parade within a day <NA>
## 1454 Marine Parade N/A <NA>
## 1455 Bedok a few days or more <NA>
## 1456 Bedok a few days or more <NA>
## 1457 Choa Chu Kang a few days or more <NA>
## 1458 Bishan a few days or more <NA>
## 1459 Jurong West N/A <NA>
## 1460 Newton a few days or more <NA>
## 1461 Bishan within a few hours <NA>
## 1462 Rochor within an hour <NA>
## 1463 Kallang within a few hours <NA>
## 1464 Geylang within a day <NA>
## 1465 Geylang N/A <NA>
## 1466 Jurong West N/A <NA>
## 1467 Rochor within an hour <NA>
## 1468 Rochor within an hour <NA>
## 1469 Hougang within a few hours <NA>
## 1470 Novena a few days or more <NA>
## 1471 Kallang within an hour <NA>
## 1472 Bukit Merah within a few hours <NA>
## 1473 Sengkang N/A <NA>
## 1474 Toa Payoh within a few hours <NA>
## 1475 Tanglin N/A <NA>
## 1476 Kallang within a day <NA>
## 1477 Clementi within a day <NA>
## 1478 Kallang within a day <NA>
## 1479 Geylang within an hour <NA>
## 1480 Kallang within a few hours <NA>
## 1481 Kallang within an hour <NA>
## 1482 Kallang within a day <NA>
## 1483 Kallang within a few hours <NA>
## 1484 Kallang within a few hours <NA>
## 1485 Geylang within a few hours <NA>
## 1486 Geylang within a day <NA>
## 1487 Geylang within a few hours <NA>
## 1488 Kallang within a day <NA>
## 1489 Kallang within a day <NA>
## 1490 Kallang within an hour <NA>
## 1491 Kallang within an hour <NA>
## 1492 Kallang within a few hours <NA>
## 1493 Kallang within a day <NA>
## 1494 Geylang within a few hours <NA>
## 1495 Kallang within a few hours <NA>
## 1496 Rochor a few days or more <NA>
## 1497 Singapore River within a day <NA>
## 1498 Downtown Core within a day <NA>
## 1499 Geylang within a few hours <NA>
## 1500 Kallang within a few hours <NA>
## 1501 Kallang within a few hours <NA>
## 1502 Kallang within a few hours <NA>
## 1503 Kallang within a few hours <NA>
## 1504 Kallang within an hour <NA>
## 1505 Bukit Timah N/A <NA>
## 1506 Kallang within an hour <NA>
## 1507 Kallang within a few hours <NA>
## 1508 Kallang within an hour <NA>
## 1509 Kallang within a few hours <NA>
## 1510 Kallang within a few hours <NA>
## 1511 Bukit Panjang within a day <NA>
## 1512 Kallang within an hour <NA>
## 1513 Kallang within a few hours <NA>
## 1514 Kallang within an hour <NA>
## 1515 Kallang within an hour <NA>
## 1516 Kallang within a few hours <NA>
## 1517 Kallang within a few hours <NA>
## 1518 Kallang within an hour <NA>
## 1519 Kallang within a few hours <NA>
## 1520 Geylang within a few hours <NA>
## 1521 Kallang within an hour <NA>
## 1522 Kallang within an hour <NA>
## 1523 Kallang within an hour <NA>
## 1524 Tampines within a day <NA>
## 1525 Kallang within an hour <NA>
## 1526 Bukit Timah within a few hours <NA>
## 1527 Geylang within an hour <NA>
## 1528 Geylang within an hour <NA>
## 1529 Yishun a few days or more <NA>
## 1530 Rochor a few days or more <NA>
## 1531 Kallang a few days or more <NA>
## 1532 Bishan a few days or more <NA>
## 1533 Kallang within a few hours <NA>
## 1534 Kallang within an hour <NA>
## 1535 Kallang within an hour <NA>
## 1536 Geylang within an hour <NA>
## 1537 Kallang within a day <NA>
## 1538 Woodlands within a few hours <NA>
## host_acceptance_rate host_Superhost latitude longitude
## 1 0.98 0 1.265200 103.8190
## 2 1.00 1 1.302360 103.8418
## 3 0.00 0 1.300410 103.8586
## 4 NA 0 1.282540 103.8440
## 5 0.73 1 1.280306 103.8522
## 6 NA 0 1.265860 103.8101
## 7 NA 0 1.267000 103.8114
## 8 1.00 0 1.283860 103.8299
## 9 0.73 1 1.279800 103.8532
## 10 0.91 1 1.304470 103.8338
## 11 0.41 0 1.295210 103.8306
## 12 NA 0 1.300170 103.8598
## 13 1.00 1 1.300600 103.8418
## 14 0.00 0 1.266030 103.8091
## 15 0.30 0 1.304930 103.8375
## 16 0.06 0 1.312020 103.8534
## 17 0.91 1 1.302120 103.8320
## 18 1.00 1 1.287070 103.8424
## 19 1.00 0 1.283920 103.8423
## 20 0.30 0 1.293740 103.8279
## 21 0.64 0 1.304950 103.8353
## 22 0.00 0 1.289490 103.8480
## 23 0.41 0 1.293110 103.8406
## 24 0.47 0 1.281530 103.8586
## 25 0.91 1 1.304350 103.8338
## 26 0.96 1 1.254710 103.8229
## 27 1.00 0 1.300590 103.8608
## 28 1.00 0 1.305530 103.8270
## 29 0.30 0 1.294250 103.8275
## 30 1.00 0 1.287900 103.8351
## 31 NA 0 1.275630 103.8485
## 32 0.30 0 1.291290 103.8423
## 33 1.00 0 1.280500 103.8518
## 34 0.41 0 1.350920 103.8196
## 35 0.30 0 1.310340 103.8385
## 36 1.00 1 1.287260 103.8443
## 37 NA 0 1.275800 103.8473
## 38 0.31 0 1.288330 103.8370
## 39 0.30 0 1.289700 103.8369
## 40 0.41 0 1.299120 103.8411
## 41 0.41 0 1.304420 103.7669
## 42 NA 0 1.273110 103.8408
## 43 1.00 0 1.283630 103.8596
## 44 1.00 0 1.282160 103.8602
## 45 0.98 1 1.300690 103.8466
## 46 0.33 0 1.310050 103.8583
## 47 0.96 1 1.282840 103.8614
## 48 0.98 1 1.300350 103.8466
## 49 1.00 0 1.282990 103.8431
## 50 0.96 1 1.283220 103.8618
## 51 0.41 0 1.287720 103.8440
## 52 0.25 0 1.291490 103.8498
## 53 1.00 0 1.300680 103.8460
## 54 1.00 1 1.302430 103.8401
## 55 0.91 1 1.322700 103.8640
## 56 0.91 1 1.302820 103.8323
## 57 0.41 0 1.305990 103.8525
## 58 0.74 1 1.312530 103.8791
## 59 0.74 1 1.311900 103.8795
## 60 0.96 1 1.257370 103.8192
## 61 NA 0 1.274480 103.8444
## 62 NA 0 1.320130 103.8811
## 63 0.91 1 1.302200 103.8340
## 64 1.00 1 1.289370 103.8441
## 65 0.41 0 1.311240 103.7615
## 66 0.30 0 1.301240 103.8010
## 67 1.00 1 1.304580 103.8340
## 68 0.30 0 1.293870 103.8265
## 69 1.00 1 1.302360 103.8399
## 70 1.00 1 1.302520 103.8414
## 71 1.00 0 1.300300 103.8414
## 72 0.30 0 1.290870 103.8317
## 73 0.30 0 1.288760 103.8306
## 74 0.30 0 1.291820 103.8405
## 75 0.30 0 1.302680 103.8317
## 76 1.00 1 1.288820 103.8424
## 77 0.25 0 1.281990 103.8536
## 78 0.11 0 1.281160 103.8536
## 79 0.64 0 1.303970 103.8372
## 80 0.41 0 1.291000 103.8305
## 81 0.93 1 1.369990 103.9458
## 82 0.91 1 1.324030 103.8659
## 83 0.84 1 1.289050 103.8484
## 84 1.00 0 1.312720 103.9029
## 85 0.84 1 1.287170 103.8484
## 86 NA 0 1.280380 103.8419
## 87 NA 0 1.284120 103.8440
## 88 NA 0 1.283130 103.8436
## 89 0.30 0 1.303410 103.7851
## 90 0.41 0 1.318060 103.8459
## 91 0.30 0 1.352900 103.8189
## 92 0.80 0 1.282673 103.8579
## 93 1.00 0 1.376890 103.8799
## 94 0.74 1 1.312010 103.8791
## 95 0.74 1 1.310590 103.8775
## 96 0.30 0 1.303760 103.7845
## 97 0.91 1 1.324190 103.8659
## 98 0.91 1 1.322020 103.8656
## 99 0.91 1 1.321960 103.8661
## 100 1.00 0 1.280280 103.8518
## 101 0.91 1 1.304420 103.8325
## 102 NA 0 1.280380 103.8419
## 103 1.00 1 1.316330 103.8272
## 104 0.97 0 1.295450 103.8421
## 105 1.00 0 1.300600 103.8409
## 106 0.96 0 1.289060 103.8494
## 107 1.00 1 1.316330 103.8272
## 108 NA 0 1.315930 103.8290
## 109 1.00 1 1.316330 103.8272
## 110 NA 0 1.274740 103.8445
## 111 1.00 1 1.316540 103.8264
## 112 0.25 0 1.277310 103.8432
## 113 0.88 0 1.299340 103.7872
## 114 NA 0 1.281520 103.8410
## 115 0.74 1 1.310840 103.8795
## 116 NA 0 1.277260 103.8475
## 117 0.74 1 1.311290 103.8793
## 118 0.74 1 1.311170 103.8772
## 119 0.74 1 1.312320 103.8779
## 120 0.74 1 1.312190 103.8795
## 121 0.74 1 1.311130 103.8774
## 122 0.31 0 1.351000 103.8192
## 123 0.41 0 1.292280 103.8065
## 124 0.30 0 1.292260 103.8078
## 125 1.00 0 1.282990 103.8431
## 126 1.00 1 1.287150 103.8441
## 127 0.31 0 1.318640 103.8489
## 128 1.00 0 1.307540 103.8352
## 129 0.41 0 1.296510 103.8388
## 130 0.93 1 1.305000 103.8350
## 131 NA 0 1.279220 103.8488
## 132 0.97 0 1.296265 103.8409
## 133 0.88 0 1.297590 103.7874
## 134 0.89 1 1.299710 103.8380
## 135 0.91 1 1.322250 103.8655
## 136 0.31 0 1.312590 103.7584
## 137 0.31 0 1.313540 103.7581
## 138 0.30 0 1.301790 103.8286
## 139 0.00 0 1.305430 103.8533
## 140 1.00 0 1.283290 103.8439
## 141 0.50 0 1.310400 103.8817
## 142 NA 0 1.281320 103.8449
## 143 0.88 0 1.298280 103.7892
## 144 1.00 1 1.315950 103.8269
## 145 0.93 1 1.285910 103.8444
## 146 0.31 0 1.297000 103.8555
## 147 0.91 1 1.322290 103.8661
## 148 0.31 0 1.291040 103.8298
## 149 0.30 0 1.315050 103.8426
## 150 1.00 1 1.245350 103.8387
## 151 NA 0 1.278260 103.8475
## 152 1.00 1 1.317560 103.8469
## 153 0.71 0 1.304000 103.7848
## 154 0.71 0 1.304900 103.7823
## 155 1.00 0 1.418510 103.7173
## 156 0.96 0 1.288200 103.8475
## 157 0.91 1 1.324040 103.8642
## 158 0.97 0 1.295440 103.8418
## 159 1.00 1 1.274270 103.8409
## 160 0.23 0 1.280140 103.8490
## 161 0.23 0 1.279720 103.8498
## 162 0.23 0 1.280330 103.8489
## 163 0.00 0 1.279480 103.8541
## 164 0.50 0 1.365000 103.8618
## 165 0.00 0 1.300410 103.8586
## 166 0.24 0 1.316230 103.8542
## 167 1.00 1 1.316330 103.8272
## 168 0.71 0 1.317700 103.8436
## 169 0.71 0 1.310200 103.7615
## 170 1.00 1 1.316540 103.8264
## 171 NA 0 1.281730 103.8461
## 172 1.00 1 1.315590 103.8281
## 173 0.30 0 1.316690 103.8428
## 174 0.23 0 1.281500 103.8490
## 175 0.71 0 1.319110 103.8442
## 176 0.31 0 1.352860 103.8205
## 177 0.91 1 1.302910 103.8340
## 178 0.71 0 1.305410 103.7837
## 179 NA 0 1.277890 103.8524
## 180 0.99 1 1.298600 103.7856
## 181 0.99 1 1.298990 103.7853
## 182 0.97 0 1.296265 103.8409
## 183 0.71 0 1.291790 103.8065
## 184 NA 1 1.304920 103.9031
## 185 0.50 0 1.310170 103.8742
## 186 NA 0 1.275830 103.8446
## 187 NA 0 1.275900 103.8444
## 188 NA 0 1.276210 103.8429
## 189 NA 0 1.275240 103.8425
## 190 NA 0 1.273940 103.8426
## 191 NA 0 1.275770 103.8425
## 192 0.91 0 1.360390 103.8911
## 193 0.31 0 1.316810 103.8414
## 194 0.31 0 1.318670 103.8468
## 195 NA 1 1.304940 103.9031
## 196 1.00 1 1.275360 103.8399
## 197 1.00 1 1.317420 103.8274
## 198 1.00 1 1.315620 103.8281
## 199 0.50 0 1.310260 103.8822
## 200 0.30 0 1.352960 103.8192
## 201 1.00 1 1.316709 103.8261
## 202 NA 1 1.313980 103.8797
## 203 0.71 0 1.305130 103.7828
## 204 0.92 0 1.414800 103.8986
## 205 NA 1 1.311950 103.8605
## 206 0.99 1 1.297580 103.8535
## 207 1.00 1 1.317133 103.8265
## 208 1.00 1 1.288690 103.8443
## 209 1.00 0 1.312790 103.9526
## 210 0.91 1 1.324360 103.8654
## 211 0.91 1 1.323710 103.8659
## 212 0.91 1 1.323980 103.8639
## 213 0.33 0 1.310050 103.8583
## 214 0.50 0 1.364640 103.8635
## 215 0.40 1 1.307670 103.7967
## 216 1.00 1 1.291960 103.7697
## 217 0.00 0 1.279500 103.8421
## 218 NA 0 1.281830 103.8466
## 219 0.75 1 1.279430 103.8411
## 220 1.00 1 1.319370 103.8483
## 221 0.33 0 1.316480 103.8849
## 222 0.33 0 1.316830 103.8826
## 223 0.33 0 1.315860 103.8826
## 224 0.07 0 1.326510 103.8464
## 225 0.07 0 1.312580 103.8780
## 226 0.33 0 1.342700 103.8675
## 227 0.20 0 1.317330 103.8464
## 228 0.96 0 1.281780 103.7860
## 229 1.00 1 1.317550 103.8489
## 230 0.74 1 1.310740 103.8795
## 231 0.96 0 1.287530 103.8472
## 232 0.96 0 1.304570 103.8602
## 233 1.00 1 1.315720 103.8270
## 234 1.00 1 1.316000 103.8281
## 235 1.00 1 1.315259 103.8266
## 236 1.00 1 1.315980 103.8276
## 237 NA 0 1.282110 103.8436
## 238 NA 0 1.283090 103.8430
## 239 1.00 1 1.315186 103.8283
## 240 1.00 1 1.293060 103.8406
## 241 0.74 1 1.312580 103.8795
## 242 0.74 1 1.311290 103.8774
## 243 0.93 1 1.319320 103.8466
## 244 1.00 0 1.312880 103.8857
## 245 0.89 1 1.319170 103.8484
## 246 NA 0 1.279590 103.8462
## 247 0.71 0 1.290460 103.8063
## 248 0.71 0 1.291560 103.8088
## 249 0.90 0 1.283350 103.8450
## 250 0.96 0 1.281670 103.8471
## 251 0.41 0 1.309190 103.7618
## 252 0.13 0 1.307990 103.9128
## 253 0.13 0 1.309380 103.9111
## 254 0.13 0 1.308200 103.9110
## 255 1.00 0 1.296490 103.8553
## 256 0.41 0 1.275650 103.8456
## 257 1.00 1 1.318890 103.8488
## 258 NA 1 1.304160 103.9008
## 259 NA 0 1.281720 103.8519
## 260 0.91 1 1.324140 103.8648
## 261 0.31 0 1.291910 103.8065
## 262 1.00 0 1.340360 103.8798
## 263 0.60 0 1.298400 103.8340
## 264 0.31 0 1.320750 103.8514
## 265 0.93 1 1.284240 103.8342
## 266 0.07 0 1.300300 103.8498
## 267 0.07 0 1.302370 103.8492
## 268 0.00 0 1.312500 103.8612
## 269 0.02 0 1.312550 103.8603
## 270 0.02 0 1.312320 103.8590
## 271 0.74 1 1.310820 103.8773
## 272 0.74 1 1.312280 103.8776
## 273 0.89 1 1.332360 103.8666
## 274 0.00 0 1.333680 103.7857
## 275 0.00 1 1.308180 103.9003
## 276 0.71 0 1.308440 103.7613
## 277 0.99 0 1.296560 103.8577
## 278 1.00 0 1.296490 103.8553
## 279 0.96 0 1.286160 103.8491
## 280 1.00 0 1.295740 103.8369
## 281 0.11 0 1.282030 103.8540
## 282 0.00 0 1.279870 103.8405
## 283 0.41 0 1.273860 103.8323
## 284 NA 0 1.341620 103.7609
## 285 1.00 0 1.303980 103.8543
## 286 0.91 0 1.282390 103.8450
## 287 0.50 1 1.314960 103.8896
## 288 0.91 1 1.322310 103.8638
## 289 0.00 0 1.379460 103.7595
## 290 0.96 0 1.286840 103.8472
## 291 0.96 0 1.305070 103.8598
## 292 1.00 1 1.279330 103.8434
## 293 0.71 0 1.291590 103.8063
## 294 0.71 0 1.291940 103.8063
## 295 NA 1 1.280300 103.7853
## 296 NA 0 1.309710 103.8595
## 297 0.80 0 1.274160 103.8345
## 298 0.63 1 1.276260 103.8407
## 299 0.07 0 1.301610 103.8469
## 300 0.57 0 1.274550 103.8349
## 301 0.57 0 1.283960 103.8396
## 302 0.60 0 1.273950 103.8333
## 303 0.60 0 1.272090 103.8343
## 304 0.96 0 1.297490 103.8567
## 305 0.96 0 1.297490 103.8567
## 306 1.00 1 1.317400 103.8486
## 307 0.59 0 1.315690 103.8562
## 308 0.38 0 1.311140 103.8605
## 309 0.96 0 1.286580 103.8474
## 310 0.93 1 1.285940 103.8337
## 311 0.41 0 1.299780 103.7996
## 312 NA 0 1.281630 103.8469
## 313 0.00 0 1.301100 103.8605
## 314 0.41 0 1.334470 103.7414
## 315 0.90 0 1.281730 103.8464
## 316 1.00 0 1.311480 103.9512
## 317 0.67 1 1.283020 103.8294
## 318 0.83 0 1.314180 103.9077
## 319 0.96 0 1.281880 103.8449
## 320 0.74 1 1.268170 103.8143
## 321 NA 1 1.295640 103.8338
## 322 NA 1 1.295260 103.8341
## 323 1.00 1 1.291940 103.7678
## 324 0.96 0 1.303290 103.8585
## 325 0.00 0 1.280020 103.8405
## 326 1.00 1 1.317100 103.8278
## 327 1.00 0 1.328480 103.8518
## 328 1.00 0 1.326900 103.8525
## 329 0.02 0 1.310440 103.8608
## 330 0.77 0 1.281160 103.7873
## 331 0.50 1 1.313890 103.8891
## 332 0.41 0 1.300530 103.8842
## 333 0.90 0 1.281810 103.8465
## 334 0.89 1 1.306760 103.8298
## 335 1.00 1 1.281760 103.8457
## 336 0.25 0 1.280200 103.8507
## 337 0.00 0 1.281640 103.8411
## 338 0.93 1 1.284730 103.8336
## 339 0.75 1 1.343580 103.9538
## 340 0.30 0 1.300500 103.8842
## 341 0.75 1 1.354880 103.9652
## 342 1.00 1 1.274270 103.8409
## 343 1.00 0 1.284840 103.8435
## 344 0.00 0 1.301100 103.8604
## 345 NA 0 1.305450 103.8588
## 346 0.99 0 1.311400 103.8623
## 347 0.41 0 1.335880 103.7428
## 348 0.90 0 1.282340 103.8471
## 349 1.00 0 1.283380 103.8450
## 350 1.00 1 1.282870 103.8469
## 351 NA 1 1.284270 103.8328
## 352 NA 1 1.282890 103.8323
## 353 1.00 1 1.278310 103.8508
## 354 1.00 0 1.345950 103.8704
## 355 0.96 0 1.279690 103.7862
## 356 0.99 1 1.297540 103.8517
## 357 0.31 0 1.352970 103.8518
## 358 0.67 1 1.292450 103.8374
## 359 1.00 1 1.317319 103.8264
## 360 0.63 1 1.274400 103.8406
## 361 0.00 0 1.321620 103.9147
## 362 0.84 1 1.323320 103.9166
## 363 NA 0 1.374510 103.8728
## 364 0.88 1 1.323620 103.9146
## 365 0.74 0 1.311330 103.8859
## 366 0.84 1 1.295520 103.8540
## 367 0.50 0 1.278670 103.7850
## 368 0.63 1 1.275800 103.8401
## 369 NA 0 1.383470 103.8367
## 370 0.07 0 1.311670 103.8764
## 371 0.99 0 1.294820 103.8402
## 372 0.80 0 1.283980 103.8027
## 373 0.31 0 1.281850 103.8438
## 374 1.00 0 1.284980 103.8431
## 375 0.00 0 1.306780 103.8534
## 376 0.96 0 1.415850 103.9001
## 377 0.96 0 1.297490 103.8567
## 378 1.00 0 1.357250 103.8280
## 379 0.00 0 1.301610 103.8596
## 380 0.89 1 1.273490 103.8436
## 381 0.07 0 1.311870 103.8756
## 382 0.07 0 1.322730 103.8518
## 383 0.07 0 1.329120 103.8654
## 384 0.80 0 1.273760 103.8333
## 385 0.07 0 1.305840 103.9012
## 386 0.07 0 1.311330 103.8764
## 387 0.07 0 1.329160 103.8657
## 388 0.07 0 1.305890 103.9011
## 389 0.07 0 1.311850 103.8765
## 390 0.07 0 1.311660 103.8774
## 391 0.07 0 1.329220 103.8639
## 392 0.99 0 1.297950 103.8556
## 393 0.84 1 1.294890 103.8540
## 394 0.89 1 1.276300 103.8455
## 395 0.99 1 1.297950 103.8525
## 396 0.99 0 1.313250 103.8621
## 397 0.99 0 1.313400 103.8615
## 398 0.93 1 1.318010 103.8488
## 399 0.99 0 1.296620 103.8401
## 400 0.93 1 1.285560 103.8336
## 401 1.00 0 1.282060 103.8451
## 402 0.99 0 1.306630 103.8560
## 403 0.99 0 1.304690 103.8558
## 404 1.00 1 1.279190 103.8451
## 405 0.84 1 1.287710 103.8481
## 406 NA 1 1.281530 103.8302
## 407 0.97 0 1.295810 103.8380
## 408 0.96 1 1.299860 103.8851
## 409 0.90 0 1.281910 103.8453
## 410 1.00 0 1.312470 103.9512
## 411 0.89 1 1.274120 103.8443
## 412 0.57 0 1.300470 103.8354
## 413 0.80 1 1.327830 103.9065
## 414 1.00 0 1.283260 103.8450
## 415 0.89 1 1.274920 103.8440
## 416 0.89 1 1.275270 103.8454
## 417 1.00 0 1.281270 103.8451
## 418 0.96 0 1.282040 103.8467
## 419 0.88 1 1.318528 103.8475
## 420 1.00 0 1.411420 103.8426
## 421 1.00 0 1.411980 103.8450
## 422 0.99 0 1.296510 103.8555
## 423 0.97 0 1.296650 103.8406
## 424 0.90 0 1.281890 103.8454
## 425 0.90 0 1.281780 103.8468
## 426 1.00 0 1.375990 103.9022
## 427 1.00 0 1.283450 103.8433
## 428 0.90 0 1.321780 103.8514
## 429 0.96 0 1.282650 103.8460
## 430 1.00 0 1.311030 103.8840
## 431 0.84 1 1.287220 103.8483
## 432 0.90 0 1.281850 103.8471
## 433 0.84 1 1.282108 103.8467
## 434 0.30 0 1.279240 103.8463
## 435 0.96 1 1.299510 103.8852
## 436 1.00 1 1.351350 103.8188
## 437 0.84 1 1.288160 103.8483
## 438 0.00 0 1.430120 103.7843
## 439 NA 0 1.313340 103.8938
## 440 0.84 1 1.323810 103.9168
## 441 0.88 1 1.325220 103.9150
## 442 1.00 0 1.296170 103.8416
## 443 0.96 1 1.299510 103.8852
## 444 0.90 0 1.281760 103.8462
## 445 0.90 0 1.283750 103.8449
## 446 NA 0 1.352690 103.7553
## 447 0.91 0 1.281960 103.8429
## 448 0.09 0 1.336610 103.7441
## 449 0.60 0 1.295100 103.8283
## 450 1.00 0 1.283310 103.8455
## 451 NA 0 1.273160 103.8464
## 452 0.39 0 1.281470 103.7853
## 453 0.96 0 1.294590 103.8401
## 454 NA 0 1.345370 103.9589
## 455 0.49 1 1.312890 103.9380
## 456 0.84 1 1.287420 103.8479
## 457 0.90 0 1.281700 103.8455
## 458 0.89 1 1.327060 103.8510
## 459 0.89 1 1.326320 103.8495
## 460 1.00 0 1.281360 103.8451
## 461 0.96 0 1.283380 103.8450
## 462 0.93 1 1.317810 103.8467
## 463 0.89 1 1.275290 103.8439
## 464 0.99 0 1.296430 103.8408
## 465 0.84 1 1.295530 103.8541
## 466 0.90 0 1.318528 103.8475
## 467 1.00 0 1.283360 103.8454
## 468 0.74 0 1.310700 103.8807
## 469 1.00 0 1.296280 103.8568
## 470 0.71 0 1.272190 103.8340
## 471 0.13 0 1.309350 103.9130
## 472 0.84 1 1.282974 103.8447
## 473 0.99 0 1.297050 103.8402
## 474 0.95 0 1.294900 103.8400
## 475 1.00 1 1.281500 103.8471
## 476 0.99 1 1.296920 103.8520
## 477 0.95 0 1.296150 103.8383
## 478 0.90 0 1.282890 103.8470
## 479 1.00 1 1.310720 103.8542
## 480 1.00 1 1.274270 103.8409
## 481 0.13 0 1.309680 103.9129
## 482 0.13 0 1.309930 103.9110
## 483 1.00 1 1.281440 103.8409
## 484 0.84 1 1.281870 103.8450
## 485 0.93 0 1.294040 103.8265
## 486 0.67 0 1.281360 103.7861
## 487 1.00 1 1.310960 103.8520
## 488 0.36 0 1.301530 103.8534
## 489 0.84 1 1.296940 103.8556
## 490 NA 0 1.344010 103.7011
## 491 0.00 0 1.324810 103.8517
## 492 0.90 0 1.283510 103.8451
## 493 0.90 0 1.282960 103.8471
## 494 1.00 0 1.283310 103.8451
## 495 0.96 0 1.283670 103.8456
## 496 0.50 0 1.311030 103.8742
## 497 0.50 0 1.309760 103.8737
## 498 0.89 1 1.273630 103.8473
## 499 1.00 1 1.311100 103.8540
## 500 0.89 1 1.346650 103.7244
## 501 0.96 0 1.303420 103.8584
## 502 1.00 1 1.277520 103.8441
## 503 0.96 1 1.299510 103.8852
## 504 0.96 0 1.287980 103.8490
## 505 0.31 0 1.278260 103.8436
## 506 0.84 1 1.289450 103.8488
## 507 0.96 0 1.304420 103.8584
## 508 0.50 0 1.296420 103.8903
## 509 0.09 0 1.311800 103.8593
## 510 0.24 0 1.324070 103.8536
## 511 0.97 0 1.296400 103.8396
## 512 1.00 0 1.298000 103.8557
## 513 0.71 0 1.274750 103.8340
## 514 1.00 1 1.278290 103.8455
## 515 1.00 0 1.296200 103.8573
## 516 0.96 0 1.294687 103.8403
## 517 0.84 1 1.287380 103.8477
## 518 0.71 0 1.279150 103.7849
## 519 1.00 1 1.299510 103.8852
## 520 0.84 1 1.282400 103.8448
## 521 0.96 1 1.299660 103.8850
## 522 1.00 0 1.281590 103.8465
## 523 0.41 0 1.274990 103.8453
## 524 1.00 0 1.317000 103.8789
## 525 0.88 1 1.322520 103.9151
## 526 0.84 1 1.322850 103.9135
## 527 0.99 0 1.313560 103.8619
## 528 0.99 0 1.296350 103.8403
## 529 0.71 0 1.278830 103.7865
## 530 0.84 1 1.318528 103.8475
## 531 0.75 0 1.309020 103.9026
## 532 0.93 1 1.286410 103.8442
## 533 0.77 0 1.281250 103.7854
## 534 NA 1 1.310940 103.8047
## 535 0.24 0 1.325860 103.8537
## 536 0.97 0 1.295790 103.8397
## 537 0.84 1 1.282313 103.8447
## 538 0.89 1 1.334970 103.7424
## 539 1.00 0 1.294360 103.8291
## 540 0.89 1 1.336960 103.7429
## 541 0.00 0 1.299630 103.8613
## 542 1.00 0 1.391780 103.9118
## 543 0.99 1 1.298060 103.8526
## 544 0.89 1 1.336520 103.7431
## 545 0.25 0 1.289560 103.8507
## 546 0.89 1 1.279960 103.8464
## 547 0.90 0 1.318528 103.8475
## 548 0.96 0 1.281480 103.8464
## 549 0.96 0 1.281660 103.8466
## 550 0.96 0 1.297490 103.8567
## 551 0.96 0 1.297490 103.8567
## 552 0.96 0 1.297490 103.8567
## 553 1.00 1 1.310300 103.8540
## 554 0.99 1 1.298060 103.8526
## 555 0.99 1 1.298060 103.8526
## 556 0.99 1 1.298060 103.8526
## 557 0.99 1 1.298060 103.8526
## 558 0.99 1 1.298060 103.8526
## 559 0.99 1 1.298060 103.8526
## 560 0.99 1 1.299190 103.8537
## 561 0.99 1 1.297400 103.8533
## 562 0.71 0 1.275330 103.8339
## 563 0.71 0 1.273580 103.8344
## 564 0.99 1 1.296840 103.8519
## 565 0.00 0 1.302690 103.8465
## 566 0.99 1 1.297010 103.8521
## 567 0.80 1 1.313050 103.9366
## 568 0.99 1 1.296740 103.8573
## 569 0.99 1 1.298890 103.8518
## 570 0.99 1 1.297690 103.8536
## 571 0.99 1 1.297060 103.8520
## 572 0.25 0 1.321570 103.8430
## 573 0.99 0 1.295470 103.8394
## 574 0.71 0 1.274740 103.8346
## 575 0.71 0 1.274880 103.8329
## 576 0.71 0 1.274970 103.8340
## 577 0.71 0 1.272950 103.8345
## 578 0.96 0 1.294860 103.8392
## 579 0.84 1 1.287560 103.8485
## 580 0.89 1 1.317200 103.7588
## 581 0.95 0 1.294690 103.8401
## 582 0.24 0 1.324950 103.8562
## 583 1.00 0 1.304580 103.8556
## 584 NA 0 1.283590 103.8462
## 585 0.89 1 1.352690 103.8498
## 586 0.89 1 1.352540 103.8498
## 587 0.89 1 1.279030 103.8486
## 588 0.89 1 1.336760 103.7412
## 589 0.89 1 1.278740 103.8469
## 590 NA 1 1.304250 103.9010
## 591 NA 0 1.277160 103.8230
## 592 NA 0 1.306130 103.7809
## 593 1.00 0 1.329270 103.9042
## 594 0.84 1 1.325520 103.9146
## 595 1.00 0 1.300980 103.8449
## 596 NA 0 1.295140 103.8367
## 597 1.00 0 1.333660 103.7423
## 598 0.84 1 1.282350 103.8480
## 599 0.90 0 1.281840 103.8470
## 600 NA 1 1.282660 103.8343
## 601 0.89 1 1.328400 103.8511
## 602 1.00 0 1.281670 103.8455
## 603 1.00 0 1.314390 103.8447
## 604 0.88 1 1.324770 103.9145
## 605 0.00 0 1.306080 103.8531
## 606 NA 0 1.311670 103.8582
## 607 0.00 0 1.403280 103.9065
## 608 0.96 0 1.283760 103.8456
## 609 0.96 0 1.282440 103.8469
## 610 NA 0 1.372500 103.8735
## 611 0.07 0 1.310140 103.8782
## 612 0.07 0 1.314350 103.8754
## 613 0.88 1 1.324300 103.9154
## 614 0.84 1 1.323390 103.9132
## 615 0.96 0 1.281750 103.8467
## 616 0.97 0 1.273860 103.8421
## 617 0.61 0 1.304710 103.9012
## 618 0.63 1 1.274280 103.8413
## 619 0.63 1 1.276190 103.8407
## 620 1.00 0 1.311760 103.8814
## 621 1.00 0 1.301120 103.8523
## 622 0.50 0 1.283340 103.8428
## 623 0.96 0 1.305200 103.8598
## 624 0.96 0 1.304500 103.8581
## 625 0.89 1 1.313860 103.8593
## 626 0.71 0 1.274070 103.8323
## 627 0.63 1 1.274540 103.8400
## 628 0.24 0 1.322150 103.8528
## 629 0.95 0 1.294720 103.8382
## 630 0.85 0 1.310600 103.9331
## 631 0.99 0 1.316330 103.8532
## 632 0.00 0 1.324190 103.8540
## 633 0.00 0 1.323610 103.8539
## 634 0.00 0 1.323660 103.8517
## 635 0.40 1 1.312800 103.7965
## 636 0.96 1 1.299660 103.8850
## 637 0.89 1 1.273160 103.8452
## 638 0.71 0 1.272880 103.8354
## 639 0.71 0 1.274890 103.8328
## 640 1.00 0 1.296490 103.8553
## 641 1.00 1 1.311760 103.8913
## 642 0.90 0 1.283680 103.8451
## 643 0.90 0 1.283160 103.8452
## 644 1.00 1 1.281390 103.8474
## 645 0.96 0 1.304880 103.8585
## 646 0.96 0 1.282150 103.8470
## 647 0.24 0 1.322510 103.8520
## 648 1.00 0 1.283410 103.8451
## 649 0.13 0 1.308190 103.9111
## 650 0.13 0 1.308110 103.9112
## 651 0.89 1 1.315490 103.7587
## 652 0.90 0 1.282190 103.8470
## 653 0.50 0 1.311060 103.8721
## 654 0.86 0 1.297650 103.8363
## 655 0.33 0 1.310210 103.8582
## 656 0.86 0 1.297000 103.8377
## 657 0.13 0 1.296290 103.8521
## 658 0.13 0 1.298190 103.8513
## 659 0.13 0 1.297730 103.8531
## 660 0.13 0 1.296100 103.8527
## 661 0.13 0 1.297450 103.8534
## 662 0.13 0 1.296150 103.8513
## 663 0.83 0 1.303310 103.8487
## 664 0.86 0 1.299170 103.8386
## 665 1.00 1 1.296480 103.8571
## 666 0.99 1 1.298230 103.8556
## 667 0.99 0 1.306580 103.8537
## 668 0.99 1 1.296100 103.8576
## 669 1.00 0 1.306480 103.8551
## 670 0.89 1 1.276330 103.8452
## 671 0.89 1 1.275580 103.8438
## 672 0.89 1 1.274230 103.8440
## 673 0.89 1 1.326390 103.8498
## 674 NA 0 1.304880 103.8491
## 675 0.71 0 1.273420 103.8347
## 676 1.00 1 1.304980 103.8559
## 677 1.00 1 1.277730 103.8455
## 678 0.96 0 1.306100 103.8519
## 679 0.99 0 1.296340 103.8386
## 680 0.96 1 1.305080 103.9053
## 681 1.00 0 1.283180 103.8452
## 682 1.00 1 1.311380 103.8527
## 683 0.71 0 1.274830 103.8347
## 684 0.99 1 1.297900 103.8578
## 685 0.84 1 1.282430 103.8468
## 686 1.00 1 1.309090 103.8546
## 687 0.99 0 1.306200 103.8560
## 688 1.00 0 1.313130 103.8838
## 689 0.86 0 1.297190 103.8386
## 690 0.96 0 1.297810 103.8394
## 691 0.89 1 1.275280 103.8440
## 692 0.67 0 1.306580 103.8373
## 693 0.89 1 1.273170 103.8458
## 694 0.89 1 1.273350 103.8459
## 695 0.88 1 1.317610 103.8484
## 696 0.84 0 1.315580 103.8863
## 697 0.84 1 1.328330 103.9159
## 698 0.84 1 1.289180 103.8493
## 699 0.83 0 1.304770 103.8507
## 700 0.84 1 1.282030 103.8477
## 701 0.89 1 1.274240 103.8443
## 702 0.84 1 1.281250 103.8447
## 703 0.86 0 1.299040 103.8371
## 704 0.84 1 1.295670 103.8556
## 705 0.20 1 1.316580 103.8548
## 706 0.89 1 1.276290 103.8456
## 707 0.13 0 1.306360 103.8545
## 708 0.13 0 1.306190 103.8532
## 709 NA 0 1.335060 103.7856
## 710 0.88 1 1.322100 103.9139
## 711 0.88 1 1.323820 103.9133
## 712 0.84 1 1.324030 103.9147
## 713 0.84 1 1.324120 103.9137
## 714 0.84 1 1.323660 103.9155
## 715 0.97 0 1.274690 103.8424
## 716 1.00 1 1.277930 103.8452
## 717 NA 0 1.319360 103.9166
## 718 0.97 1 1.298960 103.8615
## 719 NA 0 1.328610 103.8641
## 720 0.00 0 1.324370 103.8537
## 721 0.00 0 1.325150 103.8534
## 722 NA 0 1.330840 103.9084
## 723 0.33 1 1.332050 103.9445
## 724 0.89 1 1.273400 103.8442
## 725 0.71 0 1.272330 103.8332
## 726 0.71 0 1.272860 103.8342
## 727 0.89 1 1.273430 103.8456
## 728 0.74 0 1.310540 103.8818
## 729 0.89 1 1.274500 103.8451
## 730 0.89 1 1.275680 103.8458
## 731 0.95 0 1.327730 103.8499
## 732 0.89 1 1.273470 103.8440
## 733 1.00 1 1.294300 103.8296
## 734 0.86 0 1.299070 103.8383
## 735 1.00 1 1.311590 103.8877
## 736 0.97 0 1.297020 103.8400
## 737 0.89 1 1.303180 103.8611
## 738 1.00 1 1.296350 103.8568
## 739 1.00 0 1.441670 103.8238
## 740 0.86 0 1.298920 103.8385
## 741 0.84 1 1.287870 103.8503
## 742 0.91 1 1.323490 103.8660
## 743 0.99 1 1.298150 103.8525
## 744 0.99 1 1.297220 103.8535
## 745 0.99 1 1.299180 103.8521
## 746 1.00 0 1.305800 103.8558
## 747 1.00 1 1.306000 103.8541
## 748 0.67 0 1.290210 103.7703
## 749 0.89 1 1.319110 103.8470
## 750 0.99 1 1.297260 103.8520
## 751 0.99 1 1.297140 103.8535
## 752 0.00 0 1.427680 103.7756
## 753 1.00 1 1.310970 103.8541
## 754 0.71 0 1.274950 103.8330
## 755 0.71 0 1.274150 103.8344
## 756 1.00 1 1.296580 103.8560
## 757 1.00 1 1.279500 103.8433
## 758 1.00 0 1.306530 103.8551
## 759 0.71 0 1.274540 103.8326
## 760 1.00 1 1.279810 103.7867
## 761 0.65 1 1.300620 103.8518
## 762 0.65 1 1.300960 103.8505
## 763 1.00 0 1.296490 103.8553
## 764 0.89 1 1.273700 103.8438
## 765 0.08 0 1.293660 103.8301
## 766 0.84 0 1.315050 103.8863
## 767 0.84 0 1.314540 103.8862
## 768 0.84 0 1.313130 103.8868
## 769 0.84 0 1.314850 103.8883
## 770 0.84 0 1.313380 103.8859
## 771 0.84 1 1.317130 103.9131
## 772 0.84 1 1.317560 103.9125
## 773 NA 0 1.305500 103.8489
## 774 NA 0 1.355940 103.8684
## 775 0.88 1 1.317030 103.9124
## 776 0.84 1 1.325500 103.9160
## 777 0.88 1 1.325510 103.9150
## 778 0.84 1 1.277070 103.8436
## 779 0.84 1 1.316690 103.9126
## 780 0.13 0 1.296850 103.8533
## 781 0.13 0 1.296560 103.8516
## 782 0.13 0 1.298010 103.8536
## 783 0.13 0 1.298060 103.8519
## 784 0.84 1 1.277760 103.8434
## 785 0.80 0 1.281270 103.8037
## 786 1.00 1 1.309540 103.8536
## 787 0.84 1 1.281960 103.8477
## 788 NA 0 1.303530 103.8504
## 789 1.00 0 1.311180 103.8804
## 790 1.00 1 1.296700 103.8554
## 791 0.00 1 1.317400 103.8480
## 792 0.36 1 1.313390 103.8603
## 793 1.00 1 1.331000 103.8063
## 794 0.91 0 1.283600 103.8437
## 795 0.00 1 1.313950 103.9347
## 796 0.00 1 1.312480 103.9363
## 797 0.84 1 1.282420 103.8472
## 798 0.00 0 1.325080 103.8531
## 799 0.00 0 1.323630 103.8520
## 800 0.00 0 1.322850 103.8536
## 801 0.00 0 1.324900 103.8540
## 802 0.99 0 1.296860 103.8384
## 803 0.86 0 1.296850 103.8381
## 804 0.86 0 1.298990 103.8386
## 805 0.11 0 1.324490 103.8431
## 806 0.65 1 1.302140 103.8525
## 807 0.65 1 1.301980 103.8503
## 808 0.86 0 1.297550 103.8368
## 809 NA 0 1.284600 103.8433
## 810 0.86 0 1.298670 103.8367
## 811 0.86 0 1.297760 103.8387
## 812 0.86 0 1.298600 103.8368
## 813 0.96 0 1.281970 103.8430
## 814 1.00 0 1.282570 103.8458
## 815 0.84 1 1.300550 103.8587
## 816 0.50 0 1.309750 103.8725
## 817 0.94 1 1.318230 103.8594
## 818 0.84 1 1.280040 103.8469
## 819 0.89 1 1.274800 103.8470
## 820 0.71 0 1.274840 103.8324
## 821 0.50 0 1.311590 103.8721
## 822 1.00 0 1.306070 103.8558
## 823 1.00 1 1.304690 103.8557
## 824 1.00 1 1.298270 103.8576
## 825 0.96 0 1.297490 103.8567
## 826 0.89 1 1.284290 103.8351
## 827 1.00 0 1.275660 103.8389
## 828 0.89 1 1.335100 103.7417
## 829 0.89 1 1.336920 103.7410
## 830 0.89 1 1.337140 103.7414
## 831 0.89 1 1.276150 103.8450
## 832 0.89 1 1.303260 103.8611
## 833 NA 1 1.319070 103.9102
## 834 0.84 1 1.281556 103.8449
## 835 0.75 0 1.313520 103.8533
## 836 1.00 0 1.296490 103.8553
## 837 0.00 0 1.290570 103.8498
## 838 0.89 1 1.274850 103.8472
## 839 0.91 0 1.282290 103.8452
## 840 0.89 1 1.331850 103.8661
## 841 0.96 0 1.280200 103.7860
## 842 0.95 0 1.295010 103.8379
## 843 0.97 0 1.296730 103.8401
## 844 0.71 0 1.272220 103.8356
## 845 0.71 0 1.273560 103.8327
## 846 0.71 0 1.275250 103.8340
## 847 0.65 1 1.302630 103.8508
## 848 0.65 1 1.300610 103.8520
## 849 0.65 1 1.301040 103.8503
## 850 0.65 1 1.300540 103.8525
## 851 NA 1 1.333890 103.8345
## 852 0.84 0 1.313560 103.8864
## 853 0.84 0 1.313440 103.8879
## 854 0.84 1 1.279520 103.8438
## 855 0.84 1 1.282010 103.8446
## 856 1.00 0 1.299468 103.8623
## 857 0.89 0 1.377660 103.9613
## 858 0.89 1 1.330730 103.8662
## 859 1.00 0 1.297550 103.8574
## 860 0.91 0 1.281550 103.8452
## 861 0.00 0 1.391580 103.8958
## 862 0.89 1 1.303200 103.8626
## 863 0.89 1 1.313770 103.8581
## 864 0.13 0 1.326450 103.8511
## 865 NA 0 1.374180 103.8722
## 866 0.00 0 1.314330 103.8830
## 867 0.88 1 1.324280 103.9135
## 868 0.95 0 1.326530 103.8486
## 869 0.89 1 1.286390 103.8337
## 870 0.70 0 1.276630 103.8450
## 871 0.70 0 1.275250 103.8452
## 872 0.74 0 1.311320 103.8804
## 873 0.94 1 1.317350 103.8617
## 874 0.94 1 1.318810 103.9068
## 875 0.94 1 1.317810 103.9093
## 876 0.70 0 1.274520 103.8450
## 877 0.50 0 1.301470 103.9020
## 878 1.00 0 1.385520 103.8427
## 879 1.00 1 1.304480 103.8546
## 880 0.67 1 1.319920 103.8822
## 881 0.89 1 1.316830 103.7585
## 882 0.99 0 1.318780 103.8525
## 883 1.00 1 1.322300 103.7571
## 884 0.00 0 1.276340 103.8451
## 885 0.74 0 1.312380 103.8804
## 886 0.89 1 1.341920 103.8817
## 887 0.74 0 1.313230 103.8833
## 888 0.65 1 1.300920 103.8505
## 889 0.84 0 1.283780 103.8439
## 890 0.70 1 1.284670 103.8436
## 891 0.84 1 1.281170 103.8419
## 892 0.84 1 1.277270 103.8453
## 893 1.00 0 1.300320 103.8595
## 894 0.97 0 1.294540 103.8403
## 895 0.89 1 1.320010 103.8821
## 896 0.86 1 1.315020 103.8895
## 897 0.00 0 1.307440 103.8526
## 898 1.00 1 1.298380 103.8574
## 899 0.74 0 1.312380 103.8824
## 900 0.74 0 1.315230 103.8833
## 901 0.36 0 1.328120 103.8844
## 902 0.96 0 1.280100 103.7878
## 903 0.95 0 1.295100 103.8389
## 904 0.84 1 1.289150 103.8482
## 905 0.91 0 1.281520 103.8449
## 906 0.96 0 1.287540 103.8499
## 907 0.95 0 1.295280 103.8384
## 908 NA 0 1.301540 103.8594
## 909 0.00 0 1.299730 103.8466
## 910 0.65 1 1.300980 103.8504
## 911 0.89 1 1.305870 103.8977
## 912 0.21 0 1.343490 103.7171
## 913 0.13 0 1.308470 103.9110
## 914 0.67 1 1.314530 103.8997
## 915 0.89 1 1.306860 103.8981
## 916 1.00 0 1.311140 103.8730
## 917 0.89 1 1.284940 103.8337
## 918 1.00 0 1.313160 103.9010
## 919 0.94 1 1.316320 103.8880
## 920 0.65 1 1.300350 103.8513
## 921 NA 0 1.326460 103.9475
## 922 0.89 1 1.307260 103.8986
## 923 0.00 0 1.289760 103.8494
## 924 0.99 0 1.294770 103.8396
## 925 0.00 0 1.357470 103.8478
## 926 0.97 0 1.296820 103.8400
## 927 0.89 1 1.313430 103.8598
## 928 0.77 0 1.294010 103.8294
## 929 0.61 0 1.310700 103.8818
## 930 NA 1 1.299970 103.8854
## 931 1.00 1 1.449275 103.7903
## 932 1.00 1 1.306410 103.8405
## 933 1.00 1 1.304470 103.8385
## 934 0.84 1 1.283243 103.8446
## 935 0.96 0 1.287420 103.8482
## 936 0.00 0 1.312700 103.8613
## 937 0.50 0 1.309590 103.8737
## 938 0.65 1 1.302030 103.8524
## 939 0.40 1 1.309610 103.7977
## 940 0.84 1 1.296680 103.8400
## 941 1.00 0 1.302170 103.8615
## 942 NA 0 1.327070 103.9498
## 943 0.65 1 1.301170 103.8505
## 944 1.00 0 1.295880 103.8405
## 945 0.72 1 1.312670 103.8566
## 946 0.00 0 1.286560 103.8482
## 947 0.99 0 1.296540 103.8392
## 948 0.00 1 1.317350 103.8481
## 949 0.96 0 1.288440 103.8478
## 950 1.00 0 1.274520 103.8452
## 951 1.00 1 1.306890 103.8383
## 952 NA 0 1.282890 103.8466
## 953 1.00 0 1.347300 103.8788
## 954 1.00 0 1.281550 103.8450
## 955 0.96 0 1.279750 103.7875
## 956 0.50 1 1.324190 103.8525
## 957 0.67 0 1.343850 103.8689
## 958 0.84 1 1.318930 103.9126
## 959 0.84 1 1.317160 103.9126
## 960 0.84 1 1.316960 103.9139
## 961 0.84 1 1.318510 103.9123
## 962 0.84 1 1.318550 103.9126
## 963 0.88 1 1.316930 103.9141
## 964 0.88 1 1.318440 103.9124
## 965 0.84 1 1.283300 103.8424
## 966 0.00 0 1.337270 103.6901
## 967 NA 0 1.321960 103.9143
## 968 0.84 1 1.295860 103.8539
## 969 0.88 1 1.317540 103.9124
## 970 0.88 1 1.318780 103.9121
## 971 NA 0 1.329450 103.9463
## 972 0.94 1 1.337480 103.6899
## 973 0.94 1 1.337210 103.6905
## 974 0.30 0 1.321740 103.8145
## 975 NA 0 1.314450 103.8312
## 976 NA 0 1.314200 103.8473
## 977 0.89 1 1.305500 103.8993
## 978 0.80 1 1.281420 103.8537
## 979 0.59 1 1.281350 103.8487
## 980 0.00 1 1.317780 103.8477
## 981 0.59 1 1.282150 103.8486
## 982 0.97 0 1.308520 103.8610
## 983 NA 1 1.321670 103.9056
## 984 NA 0 1.348060 103.9586
## 985 0.84 0 1.295870 103.8406
## 986 0.59 1 1.316420 103.8576
## 987 0.84 0 1.283910 103.8438
## 988 0.59 1 1.281840 103.8489
## 989 0.73 1 1.313220 103.8838
## 990 1.00 0 1.285090 103.8415
## 991 NA 0 1.412590 103.8357
## 992 0.59 1 1.281070 103.8479
## 993 1.00 1 1.283800 103.8341
## 994 0.80 1 1.355820 103.8641
## 995 0.85 1 1.305840 103.8561
## 996 0.13 0 1.309490 103.9126
## 997 0.13 0 1.309750 103.9113
## 998 0.13 0 1.309820 103.9123
## 999 0.13 0 1.309440 103.9109
## 1000 0.13 0 1.309320 103.9111
## 1001 0.13 0 1.309780 103.9108
## 1002 0.13 0 1.307810 103.9124
## 1003 0.89 1 1.301830 103.8614
## 1004 0.89 1 1.302860 103.8633
## 1005 0.89 1 1.303020 103.8628
## 1006 0.97 0 1.294620 103.8392
## 1007 0.89 1 1.302840 103.8634
## 1008 0.59 1 1.315640 103.8546
## 1009 0.00 0 1.295140 103.8372
## 1010 0.20 1 1.316890 103.8548
## 1011 1.00 1 1.357890 103.8274
## 1012 0.36 0 1.328740 103.8844
## 1013 0.96 0 1.288480 103.8479
## 1014 0.89 1 1.312270 103.8582
## 1015 0.99 0 1.296170 103.8395
## 1016 1.00 0 1.314150 103.9029
## 1017 0.84 0 1.283620 103.8458
## 1018 0.00 0 1.403190 103.9173
## 1019 0.67 0 1.400890 103.7454
## 1020 0.95 0 1.294690 103.8378
## 1021 0.84 0 1.313690 103.8862
## 1022 NA 0 1.310150 103.8813
## 1023 0.84 0 1.315050 103.8875
## 1024 NA 0 1.311130 103.8813
## 1025 0.67 0 1.346110 103.8707
## 1026 0.67 0 1.346030 103.8704
## 1027 0.84 0 1.313460 103.8874
## 1028 0.84 1 1.317160 103.9123
## 1029 0.96 0 1.295840 103.8302
## 1030 0.91 1 1.387030 103.8726
## 1031 0.70 1 1.313370 103.8878
## 1032 0.91 1 1.385650 103.8735
## 1033 0.09 0 1.334370 103.7418
## 1034 NA 0 1.319190 103.9104
## 1035 0.50 1 1.344010 103.7728
## 1036 0.84 1 1.282060 103.8455
## 1037 0.09 0 1.336370 103.7414
## 1038 1.00 1 1.293770 103.8290
## 1039 0.91 0 1.283500 103.8351
## 1040 0.00 0 1.305300 103.8409
## 1041 0.84 0 1.284590 103.8438
## 1042 NA 0 1.311440 103.8833
## 1043 NA 0 1.311870 103.8833
## 1044 NA 0 1.321110 103.9140
## 1045 0.96 1 1.311120 103.9067
## 1046 0.00 0 1.312610 103.8026
## 1047 0.20 1 1.315130 103.8547
## 1048 1.00 0 1.299960 103.8594
## 1049 0.14 0 1.377190 103.7684
## 1050 0.13 0 1.324500 103.8504
## 1051 0.13 0 1.325850 103.8509
## 1052 0.00 0 1.315180 103.8884
## 1053 NA 0 1.311400 103.8816
## 1054 0.84 0 1.313700 103.8880
## 1055 0.00 0 1.315460 103.8412
## 1056 0.97 0 1.316210 103.7806
## 1057 NA 0 1.303940 103.8511
## 1058 0.59 1 1.282130 103.8485
## 1059 NA 0 1.314700 103.8929
## 1060 0.40 0 1.317080 103.9343
## 1061 0.40 1 1.341590 103.9581
## 1062 0.82 0 1.346080 103.7219
## 1063 0.97 0 1.284590 103.8347
## 1064 0.75 0 1.347550 103.6934
## 1065 0.92 1 1.304470 103.7850
## 1066 0.89 1 1.307120 103.8997
## 1067 0.00 0 1.359560 103.8842
## 1068 0.00 0 1.317860 103.9059
## 1069 0.84 0 1.313650 103.8861
## 1070 NA 0 1.306000 103.7838
## 1071 0.84 0 1.315460 103.8881
## 1072 NA 0 1.306340 103.9021
## 1073 1.00 0 1.282760 103.8433
## 1074 1.00 0 1.284880 103.8422
## 1075 1.00 0 1.345770 103.8804
## 1076 0.70 1 1.283180 103.8455
## 1077 0.70 1 1.282660 103.8435
## 1078 1.00 0 1.283730 103.8435
## 1079 1.00 0 1.347960 103.8810
## 1080 0.88 0 1.328210 103.8614
## 1081 0.41 0 1.303540 103.8482
## 1082 1.00 0 1.285340 103.8422
## 1083 0.84 0 1.313360 103.8861
## 1084 0.84 0 1.313740 103.8881
## 1085 0.84 0 1.283360 103.8456
## 1086 0.80 1 1.281720 103.8534
## 1087 1.00 0 1.346760 103.7323
## 1088 0.59 1 1.281720 103.8468
## 1089 0.85 1 1.303640 103.8548
## 1090 0.89 0 1.347690 103.6936
## 1091 0.89 1 1.303140 103.8611
## 1092 0.00 0 1.316880 103.8605
## 1093 0.85 1 1.306120 103.8556
## 1094 0.70 1 1.315710 103.8866
## 1095 0.50 0 1.311310 103.8724
## 1096 1.00 1 1.448300 103.7893
## 1097 0.46 0 1.312770 103.9056
## 1098 0.50 0 1.311240 103.8721
## 1099 0.70 1 1.313700 103.8862
## 1100 0.84 1 1.277290 103.8434
## 1101 1.00 1 1.306160 103.8389
## 1102 NA 0 1.295800 103.8364
## 1103 1.00 0 1.434790 103.8001
## 1104 0.93 1 1.285940 103.8446
## 1105 0.70 1 1.314780 103.8876
## 1106 0.85 1 1.305510 103.8560
## 1107 0.70 1 1.314100 103.8859
## 1108 0.00 1 1.307480 103.9000
## 1109 NA 0 1.343610 103.9572
## 1110 0.70 1 1.313550 103.8872
## 1111 0.70 1 1.316140 103.8869
## 1112 0.84 0 1.283240 103.8444
## 1113 0.84 0 1.283170 103.8459
## 1114 0.84 0 1.283410 103.8454
## 1115 0.84 0 1.283810 103.8456
## 1116 0.84 0 1.313280 103.8877
## 1117 0.84 0 1.283490 103.8456
## 1118 NA 0 1.347540 103.9596
## 1119 NA 0 1.345310 103.9610
## 1120 0.70 1 1.313400 103.8865
## 1121 0.84 0 1.313040 103.8880
## 1122 0.36 1 1.305620 103.8405
## 1123 1.00 1 1.293070 103.8295
## 1124 0.89 1 1.313570 103.8574
## 1125 0.67 0 1.322010 103.8576
## 1126 1.00 0 1.320650 103.9201
## 1127 0.56 1 1.315720 103.8395
## 1128 1.00 1 1.358550 103.8828
## 1129 0.70 1 1.314030 103.8860
## 1130 0.45 1 1.346000 103.9626
## 1131 0.84 0 1.314450 103.8881
## 1132 0.84 0 1.315000 103.8882
## 1133 0.84 0 1.315010 103.8879
## 1134 0.84 0 1.315410 103.8868
## 1135 1.00 1 1.347890 103.9397
## 1136 0.84 0 1.283820 103.8457
## 1137 0.80 1 1.405290 103.9012
## 1138 0.84 0 1.315210 103.8879
## 1139 1.00 0 1.320810 103.9219
## 1140 0.84 0 1.283260 103.8452
## 1141 0.78 0 1.306170 103.8612
## 1142 0.84 0 1.314500 103.8859
## 1143 1.00 0 1.381430 103.8698
## 1144 0.91 0 1.327030 103.8646
## 1145 NA 1 1.317360 103.9080
## 1146 NA 1 1.316740 103.9080
## 1147 NA 1 1.317650 103.9064
## 1148 1.00 0 1.315710 103.8841
## 1149 0.94 1 1.337210 103.6910
## 1150 0.33 0 1.342280 103.7165
## 1151 NA 0 1.348100 103.9596
## 1152 0.00 1 1.307750 103.8994
## 1153 1.00 0 1.300510 103.9025
## 1154 0.97 0 1.284100 103.8425
## 1155 0.00 0 1.287750 103.8502
## 1156 0.00 0 1.288480 103.8498
## 1157 0.00 0 1.367410 103.8529
## 1158 0.81 0 1.284200 103.8426
## 1159 0.00 0 1.314010 103.8859
## 1160 0.74 0 1.311930 103.8844
## 1161 1.00 1 1.297840 103.8504
## 1162 0.84 0 1.313180 103.8880
## 1163 0.00 0 1.312340 103.8430
## 1164 0.70 1 1.315580 103.8875
## 1165 0.99 0 1.318040 103.8515
## 1166 1.00 0 1.374610 103.9027
## 1167 1.00 0 1.383280 103.8683
## 1168 1.00 0 1.283400 103.8437
## 1169 0.80 0 1.378740 103.8813
## 1170 0.84 0 1.283280 103.8437
## 1171 NA 0 1.302340 103.7998
## 1172 1.00 1 1.340810 103.8417
## 1173 1.00 1 1.312400 103.8576
## 1174 0.70 1 1.283530 103.8453
## 1175 0.84 0 1.313160 103.8882
## 1176 0.70 1 1.315770 103.8858
## 1177 1.00 1 1.276970 103.8390
## 1178 1.00 1 1.298060 103.8490
## 1179 0.84 0 1.313740 103.8878
## 1180 NA 0 1.320980 103.9145
## 1181 1.00 1 1.338250 103.8414
## 1182 NA 0 1.320760 103.9143
## 1183 1.00 0 1.303130 103.8518
## 1184 NA 0 1.437400 103.7958
## 1185 1.00 0 1.297350 103.8433
## 1186 0.85 0 1.297340 103.8266
## 1187 0.84 0 1.313410 103.8867
## 1188 0.84 0 1.315110 103.8880
## 1189 NA 0 1.311170 103.8831
## 1190 NA 0 1.309930 103.8834
## 1191 NA 0 1.309760 103.8820
## 1192 NA 0 1.310190 103.8833
## 1193 0.84 0 1.313650 103.8861
## 1194 NA 0 1.309550 103.8828
## 1195 0.99 0 1.317980 103.8517
## 1196 0.84 0 1.314000 103.8879
## 1197 0.84 0 1.313770 103.8862
## 1198 0.84 0 1.319780 103.8907
## 1199 0.84 0 1.315150 103.8865
## 1200 0.84 0 1.314430 103.8859
## 1201 0.84 0 1.313350 103.8881
## 1202 0.00 0 1.311420 103.8392
## 1203 0.84 0 1.313270 103.8873
## 1204 0.84 0 1.313070 103.8877
## 1205 0.00 0 1.312680 103.8377
## 1206 0.84 0 1.313160 103.8867
## 1207 0.84 0 1.313900 103.8886
## 1208 0.84 0 1.313710 103.8863
## 1209 NA 0 1.342180 103.7170
## 1210 0.84 0 1.313030 103.8875
## 1211 0.75 0 1.313740 103.8544
## 1212 0.04 1 1.317100 103.8574
## 1213 0.45 1 1.345710 103.9607
## 1214 0.45 1 1.346400 103.9626
## 1215 0.84 0 1.314710 103.8863
## 1216 0.70 1 1.314690 103.8855
## 1217 0.84 0 1.315070 103.8875
## 1218 0.04 1 1.317210 103.8568
## 1219 NA 0 1.284640 103.8255
## 1220 1.00 0 1.310010 103.8410
## 1221 1.00 0 1.329080 103.7234
## 1222 0.25 0 1.290390 103.8269
## 1223 NA 0 1.321430 103.9143
## 1224 1.00 0 1.375730 103.9027
## 1225 1.00 0 1.382960 103.8694
## 1226 NA 0 1.300600 103.7971
## 1227 0.84 0 1.315150 103.8863
## 1228 0.00 0 1.311440 103.8378
## 1229 0.97 0 1.284100 103.8425
## 1230 0.97 0 1.284240 103.8427
## 1231 0.91 1 1.284000 103.8435
## 1232 0.99 0 1.316550 103.8529
## 1233 0.00 0 1.311400 103.8391
## 1234 1.00 0 1.320260 103.9217
## 1235 0.82 0 1.342080 103.7343
## 1236 0.97 0 1.283470 103.8417
## 1237 0.91 1 1.283720 103.8414
## 1238 1.00 0 1.284570 103.8346
## 1239 0.97 0 1.283350 103.8433
## 1240 0.96 0 1.284200 103.8426
## 1241 0.96 0 1.284690 103.8435
## 1242 0.97 0 1.283020 103.8416
## 1243 0.96 0 1.284200 103.8426
## 1244 0.96 0 1.311810 103.8589
## 1245 0.97 0 1.284100 103.8425
## 1246 0.81 0 1.283490 103.8432
## 1247 NA 0 1.345460 103.7218
## 1248 0.36 1 1.312920 103.7976
## 1249 0.97 0 1.311160 103.8581
## 1250 0.97 0 1.284200 103.8426
## 1251 0.97 0 1.283520 103.8432
## 1252 0.96 0 1.285160 103.8420
## 1253 0.97 0 1.284620 103.8416
## 1254 0.84 0 1.315370 103.8868
## 1255 0.84 0 1.313360 103.8863
## 1256 1.00 0 1.371730 103.9485
## 1257 0.84 1 1.316750 103.9127
## 1258 1.00 0 1.308250 103.8400
## 1259 0.84 0 1.315230 103.8879
## 1260 0.84 0 1.314940 103.8860
## 1261 0.84 0 1.314380 103.8882
## 1262 0.84 0 1.313080 103.8878
## 1263 0.84 0 1.315790 103.8880
## 1264 1.00 0 1.297460 103.8415
## 1265 NA 0 1.444180 103.8065
## 1266 0.70 1 1.313820 103.8859
## 1267 0.96 0 1.288090 103.8490
## 1268 0.00 0 1.311290 103.8379
## 1269 0.36 1 1.311070 103.7969
## 1270 0.25 1 1.333030 103.7261
## 1271 1.00 1 1.448820 103.7993
## 1272 NA 1 1.399360 103.9091
## 1273 1.00 0 1.311030 103.8740
## 1274 1.00 0 1.310418 103.8867
## 1275 0.77 0 1.280500 103.7844
## 1276 0.84 0 1.313340 103.8865
## 1277 1.00 0 1.288190 103.8482
## 1278 0.77 0 1.312480 103.7901
## 1279 0.00 0 1.327650 103.8499
## 1280 1.00 1 1.343730 103.7210
## 1281 NA 0 1.353610 103.9670
## 1282 NA 0 1.277620 103.7875
## 1283 NA 0 1.322570 103.8440
## 1284 0.84 0 1.313160 103.8861
## 1285 NA 0 1.322160 103.8540
## 1286 NA 0 1.290230 103.8197
## 1287 NA 0 1.274750 103.8336
## 1288 0.96 0 1.342750 103.8406
## 1289 0.93 0 1.312070 103.8886
## 1290 0.29 0 1.346540 103.7222
## 1291 NA 0 1.353300 103.8345
## 1292 0.00 0 1.358810 103.8309
## 1293 NA 0 1.314790 103.8836
## 1294 0.00 0 1.316210 103.8864
## 1295 NA 0 1.333580 103.7383
## 1296 1.00 1 1.399260 103.7461
## 1297 NA 0 1.344260 103.7258
## 1298 NA 0 1.311100 103.8812
## 1299 NA 0 1.311610 103.8812
## 1300 NA 0 1.309620 103.8817
## 1301 NA 0 1.311020 103.8833
## 1302 NA 0 1.311490 103.8816
## 1303 NA 0 1.311540 103.8816
## 1304 0.70 1 1.317600 103.8945
## 1305 NA 0 1.309800 103.8827
## 1306 NA 0 1.309940 103.8817
## 1307 0.78 0 1.302490 103.8603
## 1308 0.36 1 1.310780 103.7970
## 1309 0.36 1 1.306060 103.8402
## 1310 NA 0 1.310780 103.8813
## 1311 NA 0 1.310320 103.8834
## 1312 NA 0 1.311800 103.8834
## 1313 NA 0 1.312000 103.8826
## 1314 NA 0 1.311520 103.8813
## 1315 NA 0 1.309910 103.8835
## 1316 NA 0 1.309860 103.8816
## 1317 NA 0 1.311290 103.8812
## 1318 NA 0 1.312080 103.8831
## 1319 NA 0 1.284050 103.8442
## 1320 NA 0 1.284050 103.8442
## 1321 0.70 1 1.314030 103.8864
## 1322 NA 0 1.351560 103.6989
## 1323 1.00 0 1.343510 103.7322
## 1324 0.99 0 1.318060 103.8531
## 1325 1.00 0 1.312650 103.9028
## 1326 0.40 0 1.355190 103.7690
## 1327 0.00 1 1.307660 103.8995
## 1328 0.93 0 1.311920 103.8792
## 1329 0.75 0 1.313430 103.8532
## 1330 0.29 0 1.373640 103.9022
## 1331 0.83 0 1.304870 103.8002
## 1332 0.90 0 1.344630 103.7325
## 1333 0.75 0 1.313880 103.8529
## 1334 NA 0 1.283160 103.8462
## 1335 0.83 0 1.304250 103.7998
## 1336 0.59 1 1.345520 103.7053
## 1337 0.59 1 1.345350 103.7051
## 1338 0.59 1 1.344060 103.7040
## 1339 0.45 1 1.344600 103.9622
## 1340 0.22 0 1.316560 103.8396
## 1341 0.33 0 1.346640 103.7604
## 1342 0.36 1 1.312840 103.7974
## 1343 0.90 0 1.309140 103.8923
## 1344 0.00 0 1.346310 103.7164
## 1345 0.50 0 1.348810 103.6959
## 1346 0.75 0 1.313510 103.8535
## 1347 1.00 0 1.325280 103.8504
## 1348 0.75 0 1.314500 103.8539
## 1349 NA 0 1.325970 103.8110
## 1350 0.91 0 1.282860 103.8340
## 1351 1.00 0 1.320080 103.9202
## 1352 1.00 0 1.322260 103.9215
## 1353 0.80 1 1.357310 103.8638
## 1354 0.93 0 1.312490 103.8885
## 1355 0.50 0 1.363210 103.9671
## 1356 0.72 1 1.315920 103.8541
## 1357 0.27 0 1.358720 103.8455
## 1358 0.89 0 1.420350 103.8467
## 1359 0.89 0 1.418630 103.8474
## 1360 0.80 1 1.355600 103.8638
## 1361 0.25 0 1.289220 103.8271
## 1362 0.77 0 1.286520 103.8123
## 1363 0.97 0 1.307200 103.8636
## 1364 0.97 0 1.310110 103.8632
## 1365 0.50 1 1.288430 103.8025
## 1366 0.97 0 1.317640 103.7792
## 1367 0.36 1 1.313240 103.8595
## 1368 0.77 0 1.281350 103.7876
## 1369 0.33 0 1.310270 103.8564
## 1370 0.91 1 1.312890 103.8555
## 1371 0.97 0 1.283380 103.8413
## 1372 0.97 0 1.309830 103.8623
## 1373 0.81 0 1.307840 103.8612
## 1374 0.81 0 1.309570 103.8613
## 1375 0.00 0 1.320000 103.7602
## 1376 0.89 0 1.345090 103.6947
## 1377 0.97 0 1.311120 103.8581
## 1378 0.81 0 1.283790 103.8438
## 1379 0.97 0 1.309070 103.8619
## 1380 0.97 0 1.310880 103.8604
## 1381 0.97 0 1.284480 103.8436
## 1382 0.96 0 1.311280 103.8606
## 1383 0.91 1 1.311350 103.8602
## 1384 0.96 0 1.309600 103.8625
## 1385 0.97 0 1.308210 103.8628
## 1386 0.97 0 1.312290 103.8598
## 1387 0.91 1 1.310390 103.8614
## 1388 0.91 1 1.284100 103.8425
## 1389 0.91 1 1.310680 103.8612
## 1390 0.97 0 1.315660 103.8807
## 1391 0.97 0 1.284100 103.8425
## 1392 0.97 0 1.311930 103.8590
## 1393 0.72 1 1.314770 103.8550
## 1394 0.91 1 1.312630 103.8581
## 1395 0.91 1 1.310830 103.8611
## 1396 0.97 0 1.285130 103.8416
## 1397 0.97 0 1.311890 103.8620
## 1398 0.81 0 1.312340 103.8578
## 1399 1.00 0 1.297620 103.8416
## 1400 0.97 0 1.318040 103.7798
## 1401 0.00 1 1.307750 103.8994
## 1402 0.96 0 1.338960 103.8420
## 1403 0.96 0 1.312410 103.8581
## 1404 0.64 1 1.342650 103.7134
## 1405 1.00 0 1.283200 103.8422
## 1406 0.59 1 1.341800 103.7150
## 1407 1.00 1 1.399440 103.7468
## 1408 1.00 1 1.312710 103.8570
## 1409 0.75 0 1.314020 103.8549
## 1410 1.00 0 1.282560 103.8440
## 1411 0.36 1 1.312690 103.7971
## 1412 0.25 1 1.334330 103.7270
## 1413 0.50 1 1.287830 103.8035
## 1414 0.75 0 1.313580 103.8545
## 1415 1.00 0 1.301420 103.8596
## 1416 NA 0 1.310820 103.9246
## 1417 0.00 0 1.316560 103.8598
## 1418 NA 0 1.398630 103.9062
## 1419 NA 1 1.400880 103.9100
## 1420 0.93 0 1.313140 103.8800
## 1421 0.50 1 1.321670 103.7499
## 1422 NA 0 1.374090 103.8273
## 1423 1.00 0 1.315110 103.9203
## 1424 0.97 0 1.284200 103.8426
## 1425 NA 0 1.373790 103.8288
## 1426 0.96 0 1.284670 103.8417
## 1427 0.50 1 1.320000 103.7503
## 1428 NA 0 1.372890 103.8565
## 1429 0.00 0 1.372880 103.7652
## 1430 NA 0 1.348580 103.7307
## 1431 NA 0 1.307300 103.8573
## 1432 0.91 1 1.313380 103.8584
## 1433 1.00 0 1.301970 103.8600
## 1434 0.77 0 1.290150 103.8081
## 1435 0.97 0 1.316790 103.7813
## 1436 0.92 1 1.297320 103.8397
## 1437 0.97 1 1.326700 103.9085
## 1438 0.72 1 1.311580 103.8561
## 1439 0.00 0 1.285350 103.8506
## 1440 0.81 0 1.309830 103.8620
## 1441 0.73 1 1.313340 103.8833
## 1442 NA 0 1.330360 103.8884
## 1443 0.00 0 1.305500 103.8536
## 1444 1.00 0 1.322120 103.9585
## 1445 1.00 1 1.367220 103.8976
## 1446 NA 0 1.347290 103.7210
## 1447 0.75 0 1.310360 103.9359
## 1448 NA 1 1.335140 103.8762
## 1449 0.00 0 1.324050 103.8637
## 1450 NA 0 1.349880 103.8366
## 1451 NA 1 1.339660 103.6871
## 1452 0.90 0 1.308430 103.8925
## 1453 0.90 0 1.308860 103.8940
## 1454 NA 0 1.308760 103.8920
## 1455 0.00 0 1.319170 103.9431
## 1456 0.00 0 1.320630 103.9454
## 1457 0.00 0 1.383580 103.7454
## 1458 NA 0 1.357510 103.8300
## 1459 NA 0 1.339260 103.7193
## 1460 0.41 0 1.312370 103.8317
## 1461 0.23 0 1.353480 103.8327
## 1462 1.00 0 1.301830 103.8614
## 1463 0.96 0 1.309110 103.8629
## 1464 1.00 0 1.315090 103.8918
## 1465 NA 0 1.310580 103.8767
## 1466 NA 0 1.336380 103.6936
## 1467 1.00 0 1.301130 103.8534
## 1468 1.00 0 1.301400 103.8534
## 1469 1.00 1 1.368660 103.8994
## 1470 0.25 0 1.320310 103.8470
## 1471 0.79 1 1.321370 103.8621
## 1472 0.77 0 1.288280 103.8102
## 1473 0.00 0 1.398290 103.8978
## 1474 0.96 0 1.340960 103.8417
## 1475 NA 0 1.309260 103.8032
## 1476 NA 0 1.311430 103.8607
## 1477 0.00 0 1.294540 103.7679
## 1478 0.50 0 1.311310 103.8724
## 1479 0.97 0 1.315410 103.8822
## 1480 0.91 1 1.308200 103.8609
## 1481 0.97 0 1.309570 103.8611
## 1482 0.81 0 1.307360 103.8622
## 1483 0.91 1 1.310490 103.8613
## 1484 0.91 1 1.309790 103.8615
## 1485 0.84 1 1.314180 103.8988
## 1486 0.81 0 1.314730 103.8816
## 1487 0.91 1 1.314700 103.8816
## 1488 0.81 0 1.311150 103.8622
## 1489 0.81 0 1.311390 103.8625
## 1490 0.97 0 1.309730 103.8621
## 1491 0.97 0 1.311880 103.8601
## 1492 0.96 0 1.310400 103.8617
## 1493 0.81 0 1.310980 103.8601
## 1494 0.91 1 1.314700 103.8816
## 1495 0.91 1 1.310100 103.8621
## 1496 0.00 0 1.305910 103.8534
## 1497 0.96 0 1.288970 103.8480
## 1498 0.96 0 1.288640 103.8500
## 1499 0.84 1 1.316230 103.9000
## 1500 0.91 1 1.310680 103.8612
## 1501 0.96 0 1.310680 103.8612
## 1502 0.91 1 1.311900 103.8614
## 1503 0.96 0 1.311580 103.8609
## 1504 0.97 0 1.309590 103.8614
## 1505 NA 0 1.315730 103.8036
## 1506 0.97 0 1.309530 103.8604
## 1507 0.91 1 1.309730 103.8605
## 1508 0.97 0 1.309680 103.8609
## 1509 0.91 1 1.309650 103.8619
## 1510 0.91 1 1.311310 103.8604
## 1511 1.00 1 1.372140 103.7667
## 1512 0.97 0 1.311600 103.8601
## 1513 0.96 0 1.311410 103.8600
## 1514 0.97 0 1.310060 103.8619
## 1515 0.97 0 1.311900 103.8618
## 1516 0.91 1 1.309630 103.8602
## 1517 0.96 0 1.311610 103.8626
## 1518 0.97 0 1.309680 103.8616
## 1519 0.96 0 1.311210 103.8608
## 1520 0.96 0 1.315830 103.8812
## 1521 0.97 0 1.310330 103.8603
## 1522 0.97 0 1.309990 103.8618
## 1523 0.97 0 1.312930 103.8585
## 1524 NA 0 1.349170 103.9609
## 1525 0.75 0 1.316890 103.8526
## 1526 0.71 1 1.334630 103.8097
## 1527 0.73 1 1.312140 103.8841
## 1528 0.73 1 1.310640 103.8799
## 1529 1.00 0 1.417070 103.8422
## 1530 0.41 0 1.301490 103.8472
## 1531 1.00 0 1.314830 103.8727
## 1532 0.27 0 1.360870 103.8434
## 1533 0.72 1 1.311500 103.8582
## 1534 0.38 0 1.311140 103.8605
## 1535 0.38 0 1.311140 103.8605
## 1536 0.73 1 1.312330 103.8830
## 1537 0.81 0 1.310460 103.8623
## 1538 0.80 0 1.443490 103.7926
## amenities
## 1 Shampoo,Essentials,Long term stays allowed,Carbon monoxide alarm,Hair dryer,Host greets you,Hot water,Pool,TV,Paid parking on premises,Air conditioning,Smoke alarm,Fire extinguisher
## 2 Rice maker,Bidet,Safe,Toaster,Hangers,Bed linens,Hot water kettle,Washer,Hair dryer,Bathtub,Clothing storage,Host greets you,Ethernet connection,TV,High chair,Dedicated workspace,Dining table,Crib,Cleaning products,Wine glasses,Security cameras on property,Long term stays allowed,Drying rack for clothing,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Sauna,Heating,Conditioner,Free parking garage on premises,Hot water,Stove,BBQ grill,Iron,Essentials,Kitchen,First aid kit,Dishes and silverware,Shared pool,Air conditioning,Shower gel,Fire extinguisher
## 3 Shampoo,Breakfast,Essentials,Building staff,Hangers,Bed linens,Long term stays allowed,Washer,Hair dryer,Dryer,First aid kit,Wifi,Hot water,Air conditioning,Smoke alarm,Luggage dropoff allowed,Fire extinguisher
## 4 Shampoo,Breakfast,Essentials,Hangers,Bed linens,Long term stays allowed,Washer,Hair dryer,Dryer,First aid kit,Wifi,Hot water,Air conditioning,Dedicated workspace,Smoke alarm,Luggage dropoff allowed,Fire extinguisher
## 5 Rice maker,Cleaning before checkout,Baby monitor,Hangers,Bed linens,Hot water kettle,Freezer,Coffee maker,Washer,Ping pong table,Carbon monoxide alarm,Bathtub,Hair dryer,Cooking basics,55\\ HDTV,Fire pit,Oven,Clothing storage: closet and dresser,Smart lock,Electrolux stainless steel induction stove,High chair,Electrolux refrigerator,Dining table,Crib,Cleaning products,Wine glasses,Security cameras on property,Shared gym in building,Long term stays allowed,Drying rack for clothing,Laundromat nearby,Elevator,Dryer,Microwave,Waterfront,Wifi,Paid parking garage off premises,Smoke alarm,Luggage dropoff allowed,Shampoo,Shared patio or balcony,Shared garden or backyard,Extra pillows and blankets,Portable fans,Shared outdoor lap pool,Conditioner,Hot tub,Hot water,Body soap,Paid parking garage on premises,Dedicated workspace: office chair,desk,and table,BBQ grill,Iron,Shared sauna,Essentials,Window guards,Window AC unit,Kitchen,First aid kit,Dishes and silverware,Shower gel,Portable heater,Fire extinguisher
## 6 Shampoo,Breakfast,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Elevator,Dryer,Wifi,Hot tub,Gym,Air conditioning,Free parking on premises,Pool
## 7 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Elevator,Free parking on premises,Hot water,Hot tub,Gym,Air conditioning,Dedicated workspace,Pool
## 8 Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Free parking on premises,Hot tub,Gym,Air conditioning,Dedicated workspace,Pool,Iron
## 9 Rice maker,Toaster,Cleaning before checkout,Hangers,Bed linens,Hot water kettle,Freezer,Cooking basics,Smart lock,Carbon monoxide alarm,Bathtub,Hair dryer,Clothing storage,TV,High chair,Children\\u2019s books and toys,Crib,Cleaning products,Wine glasses,Security cameras on property,Long term stays allowed,Drying rack for clothing,Laundromat nearby,Dedicated workspace: table,office chair,and desk,Elevator,Refrigerator,Free washer \\u2013 In unit,Microwave,Waterfront,Outlet covers,Gym,Wifi,Paid parking garage off premises,Children\\u2019s dinnerware,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Free dryer \\u2013 In unit,Extra pillows and blankets,Portable fans,Heating,Conditioner,Stainless steel oven,Hot tub,Hot water,Stove,Body soap,Paid parking garage on premises,Shared sauna,Iron,Essentials,Babysitter recommendations,Pack \\u2019n play/Travel crib,Kitchen,First aid kit,Dishes and silverware,Shared pool,Air conditioning,Shower gel,Fire extinguisher
## 10 Cleaning before checkout,Hangers,Bed linens,Cooking basics,Washer,Single level home,Carbon monoxide alarm,Bathtub,Hair dryer,Oven,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Cable TV,Hot water,Stove,BBQ grill,Iron,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable
## 11 Cleaning before checkout,Safe,Hangers,Bed linens,Hot water kettle,Cooking basics,Washer,Bathtub,Hair dryer,Clothing storage,Oven,TV,Dining table,Dedicated workspace,Free parking on premises,Pool,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 12 Essentials,Security cameras on property,Hangers,Kitchen,Long term stays allowed,Washer,Bathtub,Hair dryer,Cable TV,Elevator,Dryer,Wifi,Free parking on premises,Gym,Air conditioning,Dedicated workspace,Pool,TV with standard cable,Iron,Fire extinguisher
## 13 Rice maker,Bidet,Safe,Toaster,Hangers,Bed linens,Hot water kettle,Washer,Hair dryer,Bathtub,Host greets you,Ethernet connection,TV,High chair,Dedicated workspace,Electric stove,Crib,Dining table,Cleaning products,Wine glasses,Security cameras on property,Long term stays allowed,Drying rack for clothing,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Sauna,Heating,Conditioner,Free parking garage on premises,Hot water,BBQ grill,Iron,Essentials,Clothing storage: closet,Kitchen,First aid kit,Dishes and silverware,Shared pool,Air conditioning,Shower gel,Fire extinguisher
## 14 Hangers,Coffee maker,Cooking basics,Washer,Hair dryer,Oven,TV,Dedicated workspace,Pool,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Shampoo,Dishwasher,Hot tub,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 15 Toaster,Sound system,Safe,Backyard,Cleaning before checkout,Hangers,Bed linens,Hot water kettle,Freezer,Coffee maker,Washer,Cooking basics,Bathtub,Hair dryer,Oven,Outdoor furniture,Paid parking on premises,High chair,Dedicated workspace,Dining table,Crib,Free parking on premises,Pool,Wine glasses,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Baby bath,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Dishwasher,Extra pillows and blankets,Conditioner,Cable TV,Hot water,Stove,Body soap,Iron,Essentials,Babysitter recommendations,Pack \\u2019n play/Travel crib,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 16 Indoor fireplace,Hangers,Washer,Hair dryer,TV,Free parking on premises,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Elevator,Dryer,Gym,Wifi,Shampoo,Breakfast,Heating,Hot tub,Iron,Essentials,Kitchen,Air conditioning
## 17 Cleaning before checkout,Hangers,Bed linens,Cooking basics,Washer,Single level home,Bathtub,Hair dryer,Oven,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Cable TV,Hot water,Stove,BBQ grill,Iron,Building staff,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable
## 18 Dryer \\u2013 In building,Backyard,Hangers,Bed linens,Cooking basics,Single level home,Hair dryer,Oven,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Washer \\u2013\\u00a0In building,Security cameras on property,Long term stays allowed,Laundromat nearby,Refrigerator,Microwave,Baby bath,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Cable TV,Hot water,Stove,BBQ grill,Iron,Building staff,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 19 Essentials,Hangers,Long term stays allowed,First aid kit,Dedicated workspace,Fire extinguisher
## 20 Toaster,Sound system,Cleaning before checkout,Backyard,Hangers,Bed linens,Record player,Hot water kettle,Freezer,Washer,Coffee maker,Cooking basics,Bathtub,Hair dryer,Clothing storage,Host greets you,Oven,Outdoor furniture,High chair,Children\\u2019s books and toys,Dedicated workspace,Crib,Dining table,Free parking on premises,Pool,Wine glasses,Long term stays allowed,Outdoor dining area,Private entrance,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Baby bath,Gym,Wifi,Children\\u2019s dinnerware,Smoke alarm,Board games,Luggage dropoff allowed,Shampoo,Breakfast,Extra pillows and blankets,Heating,Conditioner,Cable TV,Hot water,Stove,Body soap,BBQ grill,Iron,Essentials,Babysitter recommendations,Pack \\u2019n play/Travel crib,Kitchen,Changing table,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 21 Hangers,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,TV,Paid parking on premises,Dedicated workspace,Pool,Long term stays allowed,Elevator,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 22 Backyard,Hangers,Coffee maker,Cooking basics,Washer,Single level home,Carbon monoxide alarm,Hair dryer,TV,Paid parking on premises,Dedicated workspace,Pool,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Keypad,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 23 Sound system,Safe,Backyard,Cleaning before checkout,Hangers,Bed linens,Pool table,Hot water kettle,Freezer,Washer,Coffee maker,Cooking basics,Bathtub,Hair dryer,Clothing storage,Oven,Paid parking on premises,High chair,Children\\u2019s books and toys,Dedicated workspace,Crib,Dining table,Free parking on premises,Pool,Cleaning products,Wine glasses,Long term stays allowed,Private entrance,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Baby bath,Gym,Wifi,Smoke alarm,Board games,Luggage dropoff allowed,Shampoo,Breakfast,Dishwasher,Extra pillows and blankets,Heating,Conditioner,Paid parking off premises,Cable TV,Hot water,Stove,Body soap,BBQ grill,Iron,Essentials,Babysitter recommendations,Pack \\u2019n play/Travel crib,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 24 Hangers,Carbon monoxide alarm,Hair dryer,Ethernet connection,TV,Pool,Crib,Cleaning products,Elevator,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Paid parking lot off premises,Heating,Conditioner,Hot water,Body soap,Outdoor shower,Shared sauna,Essentials,Pack \\u2019n play/Travel crib,First aid kit,Dedicated workspace: table,desk,and office chair,Air conditioning,Fire extinguisher
## 25 Cleaning before checkout,Dryer \\u2013 In building,Hangers,Bed linens,Cooking basics,Single level home,Bathtub,Hair dryer,Oven,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Washer \\u2013\\u00a0In building,Long term stays allowed,Private entrance,Elevator,Refrigerator,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Cable TV,Hot water,Stove,BBQ grill,Iron,Building staff,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable
## 26 Shampoo,Essentials,Long term stays allowed,Hair dryer,Wifi,Hot water,TV,Air conditioning,Free parking on premises
## 27 Breakfast,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Cable TV,Elevator,First aid kit,Wifi,Free parking on premises,Gym,Pool,Air conditioning,Dedicated workspace,Smoke alarm,TV with standard cable,Iron,Fire extinguisher
## 28 Shampoo,Breakfast,Essentials,Hangers,Long term stays allowed,Hair dryer,Lock on bedroom door,Wifi,Free parking on premises,Hot tub,Gym,TV,Pool,Air conditioning,Dedicated workspace,Smoke alarm,Iron
## 29 Backyard,Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Hair dryer,Oven,High chair,Children\\u2019s books and toys,Dedicated workspace,Crib,Free parking on premises,Pool,Long term stays allowed,Private entrance,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Dishwasher,Extra pillows and blankets,Heating,Cable TV,Hot tub,Hot water,Stove,BBQ grill,Iron,Essentials,Babysitter recommendations,Pack \\u2019n play/Travel crib,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 30 Cleaning before checkout,Hangers,Bed linens,Coffee maker,Washer,Bathtub,Hair dryer,Dedicated workspace,Free parking on premises,Room-darkening shades,Pool,Security cameras on property,Long term stays allowed,Elevator,Lock on bedroom door,Pocket wifi,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Heating,Cable TV,Hot water,Iron,Building staff,Essentials,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 31 Shampoo,Breakfast,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Dryer,Wifi,Pool,Gym,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 32 Toaster,Sound system,Safe,Backyard,Cleaning before checkout,Hangers,Bed linens,Record player,Hot water kettle,Freezer,Washer,Cooking basics,Bathtub,Hair dryer,Clothing storage,Host greets you,Oven,Outdoor furniture,High chair,Children\\u2019s books and toys,Dedicated workspace,Crib,Dining table,Free parking on premises,Pool,Wine glasses,Game console,Long term stays allowed,Outdoor dining area,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Baby bath,Gym,Wifi,Children\\u2019s dinnerware,Smoke alarm,Board games,Luggage dropoff allowed,Shampoo,Breakfast,Dishwasher,Extra pillows and blankets,Heating,Conditioner,Cable TV,Hot tub,Hot water,Stove,Body soap,BBQ grill,Iron,Essentials,Babysitter recommendations,Pack \\u2019n play/Travel crib,Kitchen,Private patio or balcony,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 33 Shampoo,Essentials,Hangers,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Hot water,Hot tub,Gym,TV,Air conditioning,Dedicated workspace,Pool
## 34 Cleaning before checkout,Hangers,Bed linens,Hot water kettle,Cooking basics,Bathtub,Hair dryer,Clothing storage,Host greets you,Oven,High chair,Dedicated workspace,Dining table,Crib,Free parking on premises,Pool,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Shampoo,Breakfast,Heating,Cable TV,Hot water,Stove,Iron,Essentials,Babysitter recommendations,Pack \\u2019n play/Travel crib,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 35 Indoor fireplace,Hangers,Bed linens,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,Oven,High chair,Children\\u2019s books and toys,Dedicated workspace,Crib,Free parking on premises,Pool,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Extra pillows and blankets,Heating,Cable TV,Hot tub,Hot water,Stove,BBQ grill,Iron,Essentials,Babysitter recommendations,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 36 Dryer \\u2013 In building,Backyard,Hangers,Bed linens,Cooking basics,Single level home,Hair dryer,Oven,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Washer \\u2013\\u00a0In building,Security cameras on property,Long term stays allowed,Laundromat nearby,Refrigerator,Microwave,Baby bath,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Cable TV,Hot water,Stove,BBQ grill,Iron,Building staff,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 37 Hangers,Coffee maker,Cooking basics,Washer,Hair dryer,Oven,TV,Paid parking on premises,Dedicated workspace,Pool,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Dishwasher,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 38 Hangers,Cooking basics,Hair dryer,TV,Dedicated workspace,Pool,Washer \\u2013\\u00a0In building,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Breakfast,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Fire extinguisher
## 39 Cleaning before checkout,Backyard,Hangers,Bed linens,Hot water kettle,Cooking basics,Freezer,Hair dryer,Bathtub,Clothing storage,Oven,Paid parking on premises,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Wine glasses,Security cameras on property,Long term stays allowed,Outdoor dining area,Private entrance,Elevator,Refrigerator,Microwave,Wifi,Smoke alarm,Shampoo,Heating,Conditioner,Cable TV,Hot water,Stove,Iron,Essentials,Babysitter recommendations,Pack \\u2019n play/Travel crib,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 40 Backyard,Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Oven,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Breakfast,Extra pillows and blankets,Cable TV,Hot water,Stove,BBQ grill,Iron,Essentials,Babysitter recommendations,Pack \\u2019n play/Travel crib,Kitchen,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 41 Backyard,Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Oven,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Private entrance,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Dishwasher,Extra pillows and blankets,Heating,Cable TV,Hot water,Stove,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 42 Hangers,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,Paid parking on premises,High chair,Dedicated workspace,Free parking on premises,Long term stays allowed,Lock on bedroom door,Refrigerator,Microwave,Gym,Free street parking,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Paid parking off premises,Cable TV,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 43 Hangers,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Gym,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Iron,Essentials,First aid kit,Air conditioning,Fire extinguisher
## 44 Shampoo,Essentials,Hangers,Long term stays allowed,Private entrance,Hair dryer,Lock on bedroom door,Elevator,Wifi,Hot water,Hot tub,Gym,TV,Air conditioning,Pool,Iron
## 45 Toaster,Indoor fireplace,Safe,Rice maker,Hangers,Bed linens,Hot water kettle,Washer,Carbon monoxide alarm,Hair dryer,Bathtub,Paid parking on premises,Dining table,Pool,Room-darkening shades,Cleaning products,Wine glasses,Long term stays allowed,Private entrance,Elevator,Patio or balcony,Refrigerator,Microwave,Wifi,Smoke alarm,Shampoo,Conditioner,Cable TV,Hot tub,Hot water,Stove,Clothing storage: wardrobe,Iron,Bread maker,Essentials,Kitchen,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 46 Shampoo,Breakfast,Essentials,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Elevator,Dryer,First aid kit,Wifi,Air conditioning,Smoke alarm,Iron,Fire extinguisher
## 47 Hangers,Coffee maker,Washer,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Pool,Long term stays allowed,Elevator,Lock on bedroom door,Dryer,Gym,Wifi,Smoke alarm,Shampoo,Hot tub,Hot water,Iron,Essentials,Air conditioning,Fire extinguisher
## 48 Toaster,Indoor fireplace,Safe,Rice maker,Hangers,Bed linens,Hot water kettle,Washer,Carbon monoxide alarm,Hair dryer,Bathtub,Clothing storage,Ethernet connection,Paid parking on premises,Dining table,Pool,Room-darkening shades,Cleaning products,Wine glasses,Long term stays allowed,Private entrance,Elevator,Patio or balcony,Refrigerator,Microwave,Wifi,Smoke alarm,Shampoo,Conditioner,Hot water,Stove,Iron,Essentials,Kitchen,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 49 Shampoo,Essentials,Hangers,Bed linens,Coffee maker,Long term stays allowed,Carbon monoxide alarm,Hair dryer,Cable TV,Refrigerator,First aid kit,Wifi,Hot water,Air conditioning,Dedicated workspace,Smoke alarm,TV with standard cable,Fire extinguisher
## 50 Hangers,Washer,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Patio or balcony,Dryer,Gym,Wifi,Smoke alarm,Shampoo,Heating,Hot tub,Hot water,Iron,Essentials,Shared pool,Air conditioning,Fire extinguisher
## 51 Indoor fireplace,Backyard,Hangers,Bed linens,Cooking basics,Carbon monoxide alarm,Hair dryer,Oven,Paid parking on premises,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Extra pillows and blankets,Heating,Cable TV,Hot tub,Hot water,Stove,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 52 Backyard,Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Smart lock,Carbon monoxide alarm,Hair dryer,Oven,Ethernet connection,TV,Paid parking on premises,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Extra pillows and blankets,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 53 Shampoo,Essentials,Hangers,Heating,Kitchen,Paid parking off premises,Washer,Long term stays allowed,Private entrance,Hair dryer,Dryer,Wifi,Pool,TV,Air conditioning,Smoke alarm,BBQ grill,Iron,Fire extinguisher
## 54 Rice maker,Bidet,Safe,Toaster,Hangers,Bed linens,Hot water kettle,Washer,Hair dryer,Bathtub,Host greets you,Ethernet connection,TV,High chair,Dedicated workspace,Dining table,Crib,Cleaning products,Wine glasses,Security cameras on property,Long term stays allowed,Drying rack for clothing,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Luggage dropoff allowed,Shampoo,Induction stove,Extra pillows and blankets,Heating,Conditioner,Free parking garage on premises,Hot water,Shared sauna,BBQ grill,Iron,Essentials,Clothing storage: closet,Kitchen,First aid kit,Dishes and silverware,Shared pool,Air conditioning,Shower gel,Fire extinguisher
## 55 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Elevator,Dryer,First aid kit,Wifi,Free parking on premises,Pool,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 56 Cleaning before checkout,Dryer \\u2013 In building,Hangers,Bed linens,Cooking basics,Single level home,Hair dryer,Bathtub,Oven,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Washer \\u2013\\u00a0In building,Long term stays allowed,Elevator,Refrigerator,Microwave,Gym,Wifi,Luggage dropoff allowed,Shampoo,Cable TV,Hot water,Stove,Body soap,BBQ grill,Iron,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable
## 57 Toaster,Sound system,Cleaning before checkout,Backyard,Hangers,Bed linens,Hot water kettle,Freezer,Coffee maker,Washer,Cooking basics,Bathtub,Hair dryer,Clothing storage,Oven,Outdoor furniture,Paid parking on premises,High chair,Dedicated workspace,Dining table,Crib,Free parking on premises,Pool,Wine glasses,Long term stays allowed,Outdoor dining area,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Baby bath,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Heating,Cable TV,Hot tub,Hot water,Stove,Body soap,BBQ grill,Iron,Essentials,Babysitter recommendations,Pack \\u2019n play/Travel crib,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 58 Hangers,Washer,Carbon monoxide alarm,Hair dryer,TV,High chair,Free parking on premises,Dedicated workspace,Crib,Pool,Long term stays allowed,Elevator,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Keypad,Heating,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Fire extinguisher
## 59 Hangers,Washer,Carbon monoxide alarm,Hair dryer,TV,High chair,Free parking on premises,Dedicated workspace,Crib,Pool,Long term stays allowed,Elevator,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Keypad,Heating,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Fire extinguisher
## 60 Shampoo,Essentials,Hangers,Long term stays allowed,Private entrance,Hair dryer,Lock on bedroom door,Elevator,Wifi,Hot water,Gym,Pool,TV,Air conditioning,Free parking on premises,Smoke alarm,Fire extinguisher
## 61 Shampoo,Building staff,Essentials,Hangers,Coffee maker,Long term stays allowed,Washer,Luggage dropoff allowed,Bathtub,Hair dryer,Cable TV,Refrigerator,Dryer,Wifi,Gym,Air conditioning,Free parking on premises,Pool,TV with standard cable,Iron
## 62 Essentials,Hangers,Long term stays allowed,Washer,Elevator,Lock on bedroom door,Host greets you,Dryer,Wifi,Hot water,Free parking on premises,Gym,Pool,Air conditioning,Dedicated workspace,Dishes and silverware
## 63 Cleaning before checkout,Dryer \\u2013 In building,Hangers,Bed linens,Cooking basics,Single level home,Hair dryer,Bathtub,Oven,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Washer \\u2013\\u00a0In building,Long term stays allowed,Private entrance,Elevator,Refrigerator,Microwave,Gym,Wifi,Luggage dropoff allowed,Shampoo,Cable TV,Hot water,Stove,Body soap,BBQ grill,Iron,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable
## 64 Dryer \\u2013 In building,Backyard,Hangers,Bed linens,Cooking basics,Single level home,Hair dryer,Oven,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Washer \\u2013\\u00a0In building,Security cameras on property,Long term stays allowed,Laundromat nearby,Refrigerator,Microwave,Baby bath,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Cable TV,Hot water,Stove,BBQ grill,Iron,Building staff,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 65 Cleaning before checkout,Hangers,Bed linens,Hot water kettle,Cooking basics,Washer,Bathtub,Clothing storage,Host greets you,Outdoor furniture,Paid parking on premises,Dining table,Dedicated workspace,Pool,Long term stays allowed,Outdoor dining area,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Extra pillows and blankets,Paid parking off premises,Cable TV,Hot water,Stove,BBQ grill,Iron,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 66 Cleaning before checkout,Backyard,Hangers,Bed linens,Hot water kettle,Cooking basics,Washer,Bathtub,Clothing storage,Host greets you,Outdoor furniture,Dining table,Dedicated workspace,Pool,Wine glasses,Long term stays allowed,Outdoor dining area,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Extra pillows and blankets,Heating,Cable TV,Hot water,Stove,BBQ grill,Iron,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 67 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Hot water,TV,Air conditioning,Iron,Fire extinguisher
## 68 Sound system,Backyard,Hangers,Bed linens,Coffee maker,Freezer,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,Oven,High chair,Children\\u2019s books and toys,Dedicated workspace,Free parking on premises,Pool,Game console,Long term stays allowed,Private entrance,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Gym,Wifi,Children\\u2019s dinnerware,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Dishwasher,Extra pillows and blankets,Heating,Conditioner,Cable TV,Hot water,Stove,Body soap,BBQ grill,Iron,Essentials,Babysitter recommendations,Pack \\u2019n play/Travel crib,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 69 Rice maker,Bidet,Safe,Toaster,Hangers,Bed linens,Hot water kettle,Freezer,Cooking basics,Washer,Hair dryer,Bathtub,Host greets you,Ethernet connection,TV,High chair,Dedicated workspace,Dining table,Crib,Pool,Cleaning products,Wine glasses,Security cameras on property,Long term stays allowed,Drying rack for clothing,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Sound system with aux,Gym,Wifi,Luggage dropoff allowed,Shampoo,Induction stove,Extra pillows and blankets,Heating,Conditioner,Free parking garage on premises,Hot water,BBQ grill,Iron,Essentials,Clothing storage: closet,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 70 Rice maker,Bidet,Safe,Toaster,Hangers,Bed linens,Hot water kettle,Washer,Hair dryer,Bathtub,Host greets you,Ethernet connection,TV,High chair,Dedicated workspace,Dining table,Crib,Cleaning products,Wine glasses,Security cameras on property,Long term stays allowed,Drying rack for clothing,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Luggage dropoff allowed,Shampoo,Induction stove,Extra pillows and blankets,Heating,Conditioner,Free parking garage on premises,Hot water,Shared sauna,BBQ grill,Iron,Essentials,Clothing storage: closet,Kitchen,First aid kit,Dishes and silverware,Shared pool,Air conditioning,Shower gel,Fire extinguisher
## 71 Cleaning before checkout,Hangers,Bed linens,Cooking basics,Washer,Bathtub,Hair dryer,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Refrigerator,Dryer,Microwave,Gym,Wifi,Luggage dropoff allowed,Shampoo,Cable TV,Hot water,Stove,BBQ grill,Iron,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 72 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Oven,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Cable TV,Hot water,Stove,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 73 Cleaning before checkout,Backyard,Hangers,Bed linens,Hot water kettle,Cooking basics,Freezer,Hair dryer,Bathtub,Clothing storage,Oven,Outdoor furniture,Paid parking on premises,High chair,Dedicated workspace,Pool,Crib,Wine glasses,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Heating,Cable TV,Hot water,Stove,Body soap,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Bluetooth sound system,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 74 Backyard,Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Oven,Dedicated workspace,Free parking on premises,Pool,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Gym,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Heating,Cable TV,Hot tub,Hot water,Stove,BBQ grill,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 75 Backyard,Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Oven,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Extra pillows and blankets,Cable TV,Hot water,Stove,BBQ grill,Iron,Essentials,Babysitter recommendations,Pack \\u2019n play/Travel crib,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 76 Dryer \\u2013 In building,Backyard,Hangers,Bed linens,Cooking basics,Single level home,Hair dryer,Oven,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Washer \\u2013\\u00a0In building,Security cameras on property,Long term stays allowed,Laundromat nearby,Refrigerator,Microwave,Baby bath,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Cable TV,Hot water,Stove,BBQ grill,Iron,Building staff,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 77 Cleaning before checkout,Hangers,Bed linens,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,Oven,Dedicated workspace,Pool,Crib,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Cable TV,Hot tub,Hot water,Stove,Iron,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 78 Cleaning before checkout,Hangers,Cooking basics,Washer,Hair dryer,Host greets you,Oven,TV,Paid parking on premises,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot tub,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 79 Hangers,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Paid parking on premises,Dedicated workspace,Pool,Long term stays allowed,Elevator,Gym,Wifi,Smoke alarm,Shampoo,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Fire extinguisher
## 80 Cleaning before checkout,Backyard,Hangers,Bed linens,Hot water kettle,Cooking basics,Freezer,Hair dryer,Bathtub,Clothing storage,Host greets you,Oven,Outdoor furniture,Paid parking on premises,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Wine glasses,Long term stays allowed,Private entrance,Elevator,Refrigerator,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Heating,Cable TV,Hot water,Stove,Body soap,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 81 Hangers,Bed linens,Cooking basics,Washer,Smart lock,Hair dryer,Ethernet connection,Dedicated workspace,Free parking on premises,Pool,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Heating,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 82 Hangers,Washer,Smart lock,Carbon monoxide alarm,Hair dryer,TV,Free parking on premises,Pool,Dedicated workspace,Long term stays allowed,Elevator,Dryer,Wifi,Smoke alarm,Shampoo,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Fire extinguisher
## 83 Shampoo,Essentials,Security cameras on property,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Dryer,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron
## 84 Shampoo,Essentials,Coffee maker,Kitchen,Cooking basics,Long term stays allowed,Washer,Private entrance,Hair dryer,Patio or balcony,Refrigerator,Dryer,Wifi,Hot water,Microwave,Lockbox,Air conditioning,Dedicated workspace,Dishes and silverware,Iron
## 85 Shampoo,Essentials,Security cameras on property,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Dryer,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron
## 86 Shampoo,Breakfast,Essentials,Building staff,Hangers,Long term stays allowed,Hair dryer,Lock on bedroom door,Patio or balcony,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Smoke alarm
## 87 Shampoo,Breakfast,Essentials,Hangers,Bed linens,Long term stays allowed,Washer,Hair dryer,Dryer,First aid kit,Wifi,Hot water,Air conditioning,Dedicated workspace,Smoke alarm,Luggage dropoff allowed,Fire extinguisher
## 88 Hangers,Bed linens,Coffee maker,Washer,Hair dryer,TV,Dedicated workspace,Security cameras on property,Long term stays allowed,Patio or balcony,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Breakfast,Extra pillows and blankets,Iron,Essentials,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 89 Cleaning before checkout,Bed linens,Hot water kettle,Cooking basics,Freezer,Washer,Bathtub,Clothing storage,Host greets you,Oven,Outdoor furniture,Paid parking on premises,Dining table,Dedicated workspace,Pool,Wine glasses,Security cameras on property,Long term stays allowed,Outdoor dining area,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Extra pillows and blankets,Cable TV,Hot water,Stove,BBQ grill,Iron,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 90 Cleaning before checkout,Backyard,Bed linens,Hot water kettle,Cooking basics,Freezer,Washer,Bathtub,Clothing storage,Host greets you,Outdoor furniture,Paid parking on premises,Dining table,Dedicated workspace,Pool,Wine glasses,Long term stays allowed,Outdoor dining area,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Extra pillows and blankets,Cable TV,Hot water,Stove,BBQ grill,Iron,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 91 Cleaning before checkout,Backyard,Bed linens,Hot water kettle,Cooking basics,Freezer,Washer,Bathtub,Clothing storage,Host greets you,Outdoor furniture,Paid parking on premises,Dining table,Dedicated workspace,Pool,Wine glasses,Long term stays allowed,Outdoor dining area,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Extra pillows and blankets,Cable TV,Hot water,Stove,BBQ grill,Iron,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 92 Safe,Hangers,Bed linens,Coffee maker,Carbon monoxide alarm,Hair dryer,Bathtub,TV,Dedicated workspace,Pool,Room-darkening shades,Wine glasses,Elevator,Lock on bedroom door,Nespresso machine,Wifi,Smoke alarm,Luggage dropoff allowed,Extra pillows and blankets,Conditioner,Hot tub,Hot water,Mini fridge,Body soap,Iron,Essentials,Dishes and silverware,Air conditioning,Shower gel
## 93 Backyard,Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,Oven,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Security cameras on property,Long term stays allowed,Refrigerator,Dryer,Microwave,Baby bath,Gym,Wifi,Smoke alarm,Shampoo,Cable TV,Hot water,Stove,BBQ grill,Iron,Building staff,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 94 Hangers,Washer,Carbon monoxide alarm,Hair dryer,Lockbox,High chair,Free parking on premises,Pool,Crib,Long term stays allowed,Elevator,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Fire extinguisher
## 95 Hangers,Washer,Hair dryer,TV,High chair,Free parking on premises,Dedicated workspace,Pool,Crib,Long term stays allowed,Elevator,Dryer,Wifi,Luggage dropoff allowed,Shampoo,Keypad,Heating,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Fire extinguisher
## 96 Cleaning before checkout,Backyard,Bed linens,Hot water kettle,Cooking basics,Freezer,Washer,Bathtub,Hair dryer,Clothing storage,Host greets you,Outdoor furniture,Paid parking on premises,Dining table,Dedicated workspace,Pool,Wine glasses,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Extra pillows and blankets,Sauna,Cable TV,Hot water,Stove,BBQ grill,Iron,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 97 Hangers,Washer,Smart lock,Carbon monoxide alarm,Hair dryer,TV,Free parking on premises,Pool,Dedicated workspace,Long term stays allowed,Elevator,Dryer,Wifi,Smoke alarm,Shampoo,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Fire extinguisher
## 98 Hangers,Washer,Smart lock,Carbon monoxide alarm,Hair dryer,TV,Free parking on premises,Pool,Dedicated workspace,Long term stays allowed,Elevator,Dryer,Wifi,Smoke alarm,Shampoo,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Fire extinguisher
## 99 Hangers,Washer,Smart lock,Carbon monoxide alarm,Hair dryer,TV,Free parking on premises,Pool,Dedicated workspace,Long term stays allowed,Elevator,Dryer,Wifi,Smoke alarm,Shampoo,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Fire extinguisher
## 100 Cleaning before checkout,Backyard,Hangers,Bed linens,Hot water kettle,Cooking basics,Washer,Single level home,Hair dryer,Oven,Ethernet connection,Lockbox,Dedicated workspace,Free parking on premises,Pool,Lake access,Long term stays allowed,Private entrance,Elevator,Pocket wifi,Refrigerator,Dryer,Microwave,Waterfront,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Heating,Cable TV,Hot tub,Hot water,Stove,Beach essentials,BBQ grill,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 101 Cleaning before checkout,Dryer \\u2013 In building,Hangers,Bed linens,Cooking basics,Bathtub,Hair dryer,Oven,High chair,Free parking on premises,Pool,Crib,Washer \\u2013\\u00a0In building,Long term stays allowed,Private entrance,Elevator,Refrigerator,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Cable TV,Hot water,Stove,BBQ grill,Iron,Essentials,Clothing storage: closet,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable
## 102 Shampoo,Breakfast,Essentials,Building staff,Hangers,Long term stays allowed,Hair dryer,Lock on bedroom door,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm
## 103 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Single level home,Hair dryer,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Elevator,Pocket wifi,Refrigerator,Dryer,Microwave,Baby bath,Gym,Wifi,Children\\u2019s dinnerware,Luggage dropoff allowed,Shampoo,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Building staff,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 104 Hangers,Cooking basics,Washer,Single level home,Carbon monoxide alarm,Hair dryer,Dedicated workspace,Free parking on premises,Crib,Pool,Security cameras on property,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Cable TV,Hot water,Iron,Building staff,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 105 Cleaning before checkout,Hangers,Bed linens,Cooking basics,Washer,Single level home,Bathtub,Hair dryer,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Refrigerator,Dryer,Microwave,Gym,Wifi,Luggage dropoff allowed,Shampoo,Cable TV,Hot water,Stove,BBQ grill,Iron,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 106 Shampoo,Breakfast,Essentials,Long term stays allowed,Washer,Hair dryer,Dryer,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 107 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Single level home,Hair dryer,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Elevator,Pocket wifi,Refrigerator,Dryer,Microwave,Baby bath,Gym,Wifi,Children\\u2019s dinnerware,Luggage dropoff allowed,Shampoo,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Building staff,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 108 Essentials,Hangers,Bed linens,Kitchen,Long term stays allowed,Washer,Elevator,Refrigerator,Dryer,Oven,Wifi,Hot water,Stove,Pool,TV,Air conditioning,Free parking on premises,Dishes and silverware,Iron
## 109 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Hair dryer,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Elevator,Pocket wifi,Refrigerator,Dryer,Microwave,Baby bath,Gym,Wifi,Children\\u2019s dinnerware,Luggage dropoff allowed,Shampoo,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Building staff,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 110 Essentials,Coffee maker,Kitchen,Cooking basics,Long term stays allowed,Washer,Luggage dropoff allowed,Bathtub,Hair dryer,Cable TV,Refrigerator,Dryer,Wifi,Microwave,Gym,Air conditioning,Free parking on premises,Pool,TV with standard cable,Iron
## 111 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Hair dryer,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Elevator,Pocket wifi,Refrigerator,Dryer,Microwave,Baby bath,Gym,Wifi,Children\\u2019s dinnerware,Luggage dropoff allowed,Shampoo,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Building staff,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 112 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Host greets you,Oven,TV,Paid parking on premises,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Paid parking off premises,Hot water,Stove,Iron,Kitchen,Air conditioning,Dishes and silverware
## 113 Shampoo,Breakfast,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Cable TV,Elevator,Dryer,First aid kit,Wifi,Air conditioning,Dedicated workspace,Smoke alarm,TV with standard cable,Iron,Fire extinguisher
## 114 Shampoo,Breakfast,Essentials,Building staff,Hangers,Long term stays allowed,Hair dryer,Lock on bedroom door,Wifi,TV,Air conditioning,Dedicated workspace,Iron,Fire extinguisher
## 115 Hangers,Washer,Hair dryer,TV,High chair,Free parking on premises,Dedicated workspace,Crib,Pool,Long term stays allowed,Private entrance,Elevator,Dryer,Wifi,Luggage dropoff allowed,Shampoo,Keypad,Heating,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Fire extinguisher
## 116 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Dryer,Wifi,Pool,Gym,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 117 Hangers,Washer,Hair dryer,TV,High chair,Free parking on premises,Dedicated workspace,Crib,Pool,Long term stays allowed,Private entrance,Elevator,Dryer,Wifi,Luggage dropoff allowed,Shampoo,Keypad,Heating,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Fire extinguisher
## 118 Hangers,Washer,Hair dryer,TV,High chair,Free parking on premises,Dedicated workspace,Crib,Pool,Long term stays allowed,Private entrance,Elevator,Dryer,Wifi,Luggage dropoff allowed,Shampoo,Keypad,Heating,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Fire extinguisher
## 119 Hangers,Washer,Carbon monoxide alarm,Hair dryer,Lockbox,High chair,Free parking on premises,Dedicated workspace,Crib,Pool,Long term stays allowed,Elevator,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Heating,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Fire extinguisher
## 120 Hangers,Washer,Carbon monoxide alarm,Hair dryer,Lockbox,High chair,Free parking on premises,Dedicated workspace,Crib,Pool,Long term stays allowed,Elevator,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Heating,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Fire extinguisher
## 121 Hangers,Washer,Carbon monoxide alarm,Hair dryer,Lockbox,High chair,Free parking on premises,Dedicated workspace,Crib,Pool,Long term stays allowed,Elevator,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Heating,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Fire extinguisher
## 122 Essentials,Backyard,Hangers,Kitchen,Cooking basics,Long term stays allowed,Washer,Refrigerator,Dryer,Wifi,Microwave,Gym,Pool,TV,Air conditioning,Dedicated workspace,Smoke alarm,BBQ grill
## 123 Cleaning before checkout,Hangers,Bed linens,Hot water kettle,Cooking basics,Freezer,Washer,Bathtub,Clothing storage,Host greets you,Outdoor furniture,Paid parking on premises,Dining table,Dedicated workspace,Pool,Wine glasses,Long term stays allowed,Outdoor dining area,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Paid parking off premises,Cable TV,Hot water,Stove,BBQ grill,Iron,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 124 Cleaning before checkout,Hangers,Bed linens,Hot water kettle,Cooking basics,Freezer,Washer,Bathtub,Clothing storage,Host greets you,Outdoor furniture,Paid parking on premises,Dining table,Dedicated workspace,Pool,Wine glasses,Long term stays allowed,Outdoor dining area,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Paid parking off premises,Cable TV,Hot water,Stove,BBQ grill,Iron,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 125 Shampoo,Essentials,Dishwasher,Hangers,Bed linens,Long term stays allowed,Hair dryer,Cable TV,First aid kit,Wifi,Hot water,Air conditioning,Dedicated workspace,TV with standard cable,Fire extinguisher
## 126 Dryer \\u2013 In building,Backyard,Hangers,Bed linens,Cooking basics,Single level home,Hair dryer,Oven,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Washer \\u2013\\u00a0In building,Security cameras on property,Long term stays allowed,Refrigerator,Microwave,Baby bath,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Cable TV,Hot water,Stove,BBQ grill,Iron,Building staff,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 127 Shampoo,Breakfast,Essentials,Security cameras on property,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Free parking on premises,Gym,Pool,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron
## 128 Shampoo,Security cameras on property,Hangers,Kitchen,Long term stays allowed,Private entrance,Hair dryer,First aid kit,Wifi,Free parking on premises,Gym,Pool,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron
## 129 Rice maker,Cleaning before checkout,Backyard,Hangers,Bed linens,Hot water kettle,Freezer,Cooking basics,Washer,Bathtub,Hair dryer,Oven,Outdoor furniture,Paid parking on premises,Dining table,Dedicated workspace,Free parking on premises,Crib,Pool,Clothing storage: walk-in closet,Wine glasses,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Conditioner,Cable TV,Hot water,Stove,Body soap,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 130 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Host greets you,Dryer,Air conditioning,First aid kit,Hot water,Wifi,TV,Paid parking on premises,High chair,Dedicated workspace,Iron
## 131 Hangers,Coffee maker,Cooking basics,Washer,Hair dryer,TV,Paid parking on premises,Dedicated workspace,Pool,Long term stays allowed,Elevator,Refrigerator,Dryer,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 132 Hangers,Bed linens,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Cable TV,Hot water,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 133 Shampoo,Breakfast,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Cable TV,Elevator,Dryer,First aid kit,Wifi,Air conditioning,Dedicated workspace,Smoke alarm,TV with standard cable,Iron,Fire extinguisher
## 134 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Stove,Iron,Building staff,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 135 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Elevator,Dryer,First aid kit,Wifi,Free parking on premises,Pool,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 136 Security cameras on property,Hangers,Kitchen,Cooking basics,Long term stays allowed,Washer,Refrigerator,Dryer,Wifi,Microwave,Stove,Dishes and silverware,TV,Gym,Air conditioning,Dedicated workspace,Smoke alarm,Pool,Iron
## 137 Hangers,Bed linens,Kitchen,Long term stays allowed,Washer,Refrigerator,Dryer,Wifi,Microwave,Stove,Dishes and silverware,TV,Gym,Air conditioning,Dedicated workspace,Smoke alarm,Pool,Iron
## 138 Toaster,Sound system,Safe,Backyard,Cleaning before checkout,Hangers,Bed linens,Hot water kettle,Cooking basics,Washer,Hair dryer,Bathtub,Clothing storage,Oven,Dining table,Dedicated workspace,Free parking on premises,Pool,Cleaning products,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Gym,Wifi,Smoke alarm,Shampoo,Breakfast,Extra pillows and blankets,Heating,Cable TV,Hot water,Stove,Body soap,BBQ grill,Iron,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 139 Shampoo,Breakfast,Essentials,Hangers,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Lock on bedroom door,Dryer,Wifi,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 140 Shampoo,Essentials,Security cameras on property,Backyard,Hangers,Paid parking off premises,Long term stays allowed,Luggage dropoff allowed,Hair dryer,Elevator,Host greets you,First aid kit,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 141 Hangers,Washer,Hair dryer,TV,Free parking on premises,Pool,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Patio or balcony,Refrigerator,Microwave,Wifi,Shampoo,BBQ grill,Iron,Essentials,Kitchen,Air conditioning,Shower gel
## 142 Shampoo,Breakfast,Essentials,Security cameras on property,Building staff,Hangers,Long term stays allowed,Hair dryer,Elevator,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron
## 143 Shampoo,Breakfast,Essentials,Hangers,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Cable TV,Elevator,Dryer,First aid kit,Wifi,Air conditioning,Dedicated workspace,Smoke alarm,TV with standard cable,Iron,Fire extinguisher
## 144 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Single level home,Hair dryer,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Elevator,Pocket wifi,Refrigerator,Dryer,Microwave,Baby bath,Gym,Wifi,Children\\u2019s dinnerware,Luggage dropoff allowed,Shampoo,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Building staff,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 145 Hangers,Washer,Hair dryer,Host greets you,TV,Paid parking on premises,High chair,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Wifi,Shampoo,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware
## 146 Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Microwave,Stove,Dishes and silverware,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron
## 147 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Elevator,Dryer,First aid kit,Wifi,Free parking on premises,Pool,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 148 Hangers,Bed linens,Freezer,Cooking basics,Hair dryer,TV,Dedicated workspace,Washer \\u2013\\u00a0In building,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Hot water,Stove,Iron,Essentials,Kitchen,Shared pool,Air conditioning,Fire extinguisher
## 149 Cleaning before checkout,Bed linens,Hot water kettle,Cooking basics,Freezer,Washer,Bathtub,Clothing storage,Host greets you,Outdoor furniture,Dining table,Dedicated workspace,Pool,Wine glasses,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Extra pillows and blankets,Cable TV,Hot water,Stove,BBQ grill,Iron,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 150 Toaster,Sound system,Hangers,Bed linens,Hot water kettle,Coffee maker,Carbon monoxide alarm,Hair dryer,TV,Outdoor furniture,Dining table,Security cameras on property,Outdoor dining area,Private entrance,Refrigerator,Microwave,Waterfront,Wifi,Smoke alarm,Shampoo,Portable fans,Paid parking off premises,Hot water,Mini fridge,Essentials,First aid kit,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 151 Hangers,Bed linens,Coffee maker,Washer,Hair dryer,TV,Dedicated workspace,Pool,Long term stays allowed,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Hot water,Iron,Building staff,Essentials,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 152 Shampoo,Essentials,Heating,Kitchen,Long term stays allowed,Private entrance,Hair dryer,First aid kit,Wifi,Free parking on premises,Pool,TV,Air conditioning,Washer \\u2013\\u00a0In unit,Smoke alarm,Fire extinguisher
## 153 Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Elevator,Dryer,Wifi,Air conditioning,Dedicated workspace,Pool,Iron
## 154 Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Elevator,Dryer,Wifi,TV,Air conditioning,Dedicated workspace,Pool,Iron
## 155 Essentials,Long term stays allowed,Outdoor dining area,Paid parking lot on premises,Air conditioning,BBQ grill
## 156 Hangers,Bed linens,Washer,Carbon monoxide alarm,Hair dryer,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Dryer,Wifi,Smoke alarm,Shampoo,Heating,Paid parking off premises,Cable TV,Hot water,Iron,Building staff,Essentials,First aid kit,Air conditioning,TV with standard cable,Fire extinguisher
## 157 Hangers,Washer,Smart lock,Carbon monoxide alarm,Hair dryer,TV,Free parking on premises,Pool,Dedicated workspace,Long term stays allowed,Elevator,Dryer,Wifi,Smoke alarm,Shampoo,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Fire extinguisher
## 158 Backyard,Hangers,Bed linens,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Cable TV,Hot water,Iron,Building staff,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 159 Hangers,Bed linens,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,TV,Paid parking on premises,Dedicated workspace,Pool,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Building staff,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 160 Hangers,Cooking basics,Washer,Hair dryer,TV,Dedicated workspace,Pool,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Gym,Wifi,Shampoo,Hot tub,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 161 Shampoo,Essentials,Hangers,Kitchen,Cooking basics,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Gym,TV,Air conditioning,Dedicated workspace,Pool,Iron
## 162 Shampoo,Essentials,Hangers,Kitchen,Cooking basics,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Gym,TV,Air conditioning,Dedicated workspace,Pool,Iron
## 163 Hangers,Coffee maker,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,TV,Paid parking on premises,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Shampoo,Dishwasher,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware
## 164 Security cameras on property,Kitchen,Long term stays allowed,Washer,Lock on bedroom door,Outdoor shower,First aid kit,Wifi,Free parking on premises,TV,Air conditioning,Dedicated workspace,Fire extinguisher
## 165 Shampoo,Breakfast,Essentials,Building staff,Hangers,Bed linens,Heating,Long term stays allowed,Washer,Luggage dropoff allowed,Hair dryer,Dryer,First aid kit,Wifi,Hot water,Air conditioning,Dedicated workspace,Smoke alarm,Iron
## 166 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Wifi,Hot water,Gym,TV,Air conditioning,Dedicated workspace,Pool,Iron
## 167 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Single level home,Hair dryer,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Elevator,Pocket wifi,Refrigerator,Dryer,Microwave,Baby bath,Gym,Wifi,Children\\u2019s dinnerware,Luggage dropoff allowed,Shampoo,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Building staff,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 168 Essentials,Backyard,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Elevator,Refrigerator,Dryer,Wifi,Pool,Gym,TV,Air conditioning,Dedicated workspace,Dishes and silverware,Iron
## 169 Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Elevator,Dryer,Wifi,Gym,TV,Air conditioning,Pool,Iron
## 170 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Single level home,Hair dryer,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Elevator,Pocket wifi,Refrigerator,Dryer,Microwave,Baby bath,Gym,Wifi,Children\\u2019s dinnerware,Luggage dropoff allowed,Shampoo,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Building staff,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 171 Shampoo,Breakfast,Essentials,Security cameras on property,Building staff,Hangers,Long term stays allowed,Hair dryer,Elevator,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron
## 172 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Single level home,Hair dryer,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Elevator,Pocket wifi,Refrigerator,Dryer,Microwave,Baby bath,Gym,Wifi,Children\\u2019s dinnerware,Luggage dropoff allowed,Shampoo,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Building staff,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 173 Toaster,Cleaning before checkout,Backyard,Bed linens,Hot water kettle,Cooking basics,Freezer,Washer,Carbon monoxide alarm,Bathtub,Clothing storage,Host greets you,Outdoor furniture,Dining table,Dedicated workspace,Pool,Wine glasses,Security cameras on property,Long term stays allowed,Outdoor dining area,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Extra pillows and blankets,Cable TV,Hot water,Stove,BBQ grill,Iron,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 174 Shampoo,Essentials,Hangers,Kitchen,Cooking basics,Long term stays allowed,Washer,Hair dryer,Patio or balcony,Refrigerator,Elevator,Oven,Wifi,Microwave,Gym,Pool,TV,Air conditioning,Dishes and silverware,Iron
## 175 Essentials,Hangers,Heating,Kitchen,Cooking basics,Washer,Long term stays allowed,Elevator,Dryer,Wifi,Gym,TV,Air conditioning,Dedicated workspace,Pool,Iron
## 176 Backyard,Hangers,Cooking basics,Hair dryer,TV,Dedicated workspace,Pool,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Breakfast,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Fire extinguisher
## 177 Cleaning before checkout,Dryer \\u2013 In building,Hangers,Bed linens,Cooking basics,Bathtub,Hair dryer,Oven,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Washer \\u2013\\u00a0In building,Long term stays allowed,Private entrance,Elevator,Refrigerator,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Cable TV,Hot water,Stove,BBQ grill,Iron,Building staff,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable
## 178 Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Elevator,Dryer,Wifi,TV,Air conditioning,Dedicated workspace,Pool,Iron
## 179 Hangers,Washer,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Elevator,Dryer,Gym,Wifi,Smoke alarm,Shampoo,Keypad,Hot water,Iron,Essentials,Kitchen,Air conditioning
## 180 Backyard,Hangers,Cooking basics,Single level home,Hair dryer,Oven,TV,Paid parking on premises,Lockbox,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Refrigerator,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,Private patio or balcony,Air conditioning,Dishes and silverware,Fire extinguisher
## 181 Backyard,Hangers,Cooking basics,Single level home,Hair dryer,Oven,TV,Paid parking on premises,Lockbox,Dedicated workspace,Room-darkening shades,Long term stays allowed,Private entrance,Refrigerator,Microwave,Wifi,Smoke alarm,Shampoo,Hot water,Body soap,Iron,Essentials,Kitchen,Private patio or balcony,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 182 Backyard,Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Dedicated workspace,Free parking on premises,Crib,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Cable TV,Hot water,Iron,Building staff,Essentials,Kitchen,First aid kit,Shared pool,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 183 Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Elevator,Dryer,Wifi,Gym,TV,Air conditioning,Dedicated workspace,Pool,Iron
## 184 Hangers,Bed linens,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Private entrance,Refrigerator,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Dishwasher,Hot water,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 185 Long term stays allowed,Washer,Lock on bedroom door,Dryer,First aid kit,Wifi,TV,Air conditioning,Smoke alarm,Iron,Fire extinguisher
## 186 Essentials,Coffee maker,Long term stays allowed,Washer,Luggage dropoff allowed,Bathtub,Hair dryer,Cable TV,Refrigerator,Dryer,Wifi,Gym,Air conditioning,Free parking on premises,Pool,TV with standard cable,Iron
## 187 Essentials,Coffee maker,Long term stays allowed,Washer,Luggage dropoff allowed,Bathtub,Hair dryer,Cable TV,Refrigerator,Dryer,Wifi,Gym,Air conditioning,Free parking on premises,Pool,TV with standard cable,Iron
## 188 Building staff,Essentials,Coffee maker,Long term stays allowed,Washer,Luggage dropoff allowed,Bathtub,Hair dryer,Cable TV,Refrigerator,Dryer,Wifi,Gym,Air conditioning,Free parking on premises,Pool,TV with standard cable,Iron
## 189 Essentials,Coffee maker,Long term stays allowed,Washer,Luggage dropoff allowed,Bathtub,Hair dryer,Cable TV,Refrigerator,Dryer,Wifi,Gym,Air conditioning,Free parking on premises,Pool,TV with standard cable,Iron
## 190 Essentials,Coffee maker,Long term stays allowed,Washer,Luggage dropoff allowed,Bathtub,Hair dryer,Cable TV,Refrigerator,Dryer,Wifi,Gym,Air conditioning,Free parking on premises,Pool,TV with standard cable,Iron
## 191 Essentials,Coffee maker,Long term stays allowed,Washer,Luggage dropoff allowed,Bathtub,Hair dryer,Cable TV,Refrigerator,Dryer,Wifi,Gym,Air conditioning,Free parking on premises,Pool,TV with standard cable,Iron
## 192 Shampoo,Essentials,Hangers,Long term stays allowed,Washer,Elevator,Lock on bedroom door,Wifi,Hot water,Gym,TV,Air conditioning,Free parking on premises,Pool
## 193 Ceiling fan,Essentials,Hangers,Bed linens,Kitchen,Cooking basics,Long term stays allowed,Washer,Carbon monoxide alarm,Refrigerator,Dryer,Oven,Wifi,Microwave,Gym,Pool,TV,Air conditioning,Dedicated workspace,Smoke alarm
## 194 Shampoo,Breakfast,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Free parking on premises,Gym,Pool,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron
## 195 Hangers,Cooking basics,Washer,Carbon monoxide alarm,Bathtub,Hair dryer,TV,Dedicated workspace,Room-darkening shades,Long term stays allowed,Private entrance,Patio or balcony,Refrigerator,Dryer,Free street parking,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Keypad,Hot water,Iron,Essentials,Kitchen,Air conditioning,Fire extinguisher
## 196 Hangers,Bed linens,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,Oven,TV,Paid parking on premises,Dedicated workspace,Pool,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Dryer,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Building staff,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 197 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Single level home,Hair dryer,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Security cameras on property,Long term stays allowed,Elevator,Pocket wifi,Refrigerator,Dryer,Microwave,Baby bath,Gym,Wifi,Children\\u2019s dinnerware,Luggage dropoff allowed,Shampoo,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Building staff,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 198 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Single level home,Bathtub,Hair dryer,Oven,Ethernet connection,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Baby bath,Gym,Wifi,Luggage dropoff allowed,Shampoo,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Building staff,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 199 Hangers,Cooking basics,Washer,Single level home,Hair dryer,TV,Free parking on premises,Pool,Long term stays allowed,Private entrance,Elevator,Patio or balcony,Refrigerator,Microwave,Wifi,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Shower gel
## 200 Cleaning before checkout,Hangers,Bed linens,Hot water kettle,Cooking basics,Hair dryer,Clothing storage,Oven,High chair,Dedicated workspace,Dining table,Crib,Free parking on premises,Pool,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Heating,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 201 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Single level home,Bathtub,Hair dryer,Oven,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Elevator,Pocket wifi,Refrigerator,Dryer,Microwave,Baby bath,Gym,Wifi,Luggage dropoff allowed,Shampoo,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Building staff,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 202 Shampoo,Essentials,Hangers,Heating,Long term stays allowed,Washer,Hair dryer,Patio or balcony,Refrigerator,Elevator,Dryer,Wifi,Hot water,Microwave,TV,Shared pool,Air conditioning,Dedicated workspace,Iron,Fire extinguisher
## 203 Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Elevator,Dryer,Wifi,TV,Air conditioning,Dedicated workspace,Pool,Iron
## 204 Toaster,Bidet,Sound system,Rice maker,Hangers,Bed linens,Hot water kettle,Cooking basics,Freezer,Washer,Bathtub,Hair dryer,TV,Outdoor furniture,Dining table,Dedicated workspace,Free parking on premises,Lockbox,Cleaning products,Clothing storage: closet,dresser,and wardrobe,Long term stays allowed,Outdoor dining area,Private entrance,Pocket wifi,Refrigerator,Waterfront,Wifi,Smoke alarm,Induction stove,Dishwasher,Extra pillows and blankets,Portable fans,Hot water,Mini fridge,Iron,Essentials,Boat slip,Kitchen,EV charger,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 205 Shampoo,Long term stays allowed,Hair dryer,Wifi,TV,Air conditioning,Free parking on premises
## 206 Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,Ethernet connection,Paid parking on premises,Dedicated workspace,Crib,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Extra pillows and blankets,Heating,Cable TV,Hot tub,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 207 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Single level home,Hair dryer,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Elevator,Pocket wifi,Refrigerator,Dryer,Microwave,Baby bath,Gym,Wifi,Children\\u2019s dinnerware,Luggage dropoff allowed,Shampoo,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Building staff,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 208 Dryer \\u2013 In building,Backyard,Hangers,Bed linens,Cooking basics,Single level home,Hair dryer,Oven,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Washer \\u2013\\u00a0In building,Security cameras on property,Long term stays allowed,Laundromat nearby,Refrigerator,Microwave,Baby bath,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Cable TV,Hot water,Stove,BBQ grill,Iron,Building staff,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 209 Beachfront,Free parking on premises,Free street parking
## 210 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Elevator,Dryer,First aid kit,Wifi,Free parking on premises,Pool,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 211 Hangers,Washer,Carbon monoxide alarm,Hair dryer,TV,High chair,Free parking on premises,Pool,Dedicated workspace,Long term stays allowed,Elevator,Dryer,Wifi,Smoke alarm,Shampoo,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Fire extinguisher
## 212 Hangers,Washer,Smart lock,Carbon monoxide alarm,Hair dryer,TV,Free parking on premises,Pool,Dedicated workspace,Long term stays allowed,Elevator,Dryer,Wifi,Smoke alarm,Shampoo,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Fire extinguisher
## 213 Shampoo,Breakfast,Essentials,Hangers,Heating,Long term stays allowed,Washer,Hair dryer,Dryer,Wifi,Air conditioning,Smoke alarm,Iron,Fire extinguisher
## 214 Hangers,Cooking basics,Carbon monoxide alarm,Bathtub,Hair dryer,Oven,TV,Dedicated workspace,Free parking on premises,Long term stays allowed,Lock on bedroom door,Refrigerator,Microwave,Free street parking,Private hot tub,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Heating,Hot water,Stove,Iron,Essentials,Kitchen,Private patio or balcony,Air conditioning,Dishes and silverware
## 215 Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,Host greets you,Oven,Ethernet connection,TV,Paid parking on premises,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Window guards,Kitchen,First aid kit,Air conditioning,Dishes and silverware
## 216 Hangers,Bed linens,Coffee maker,Washer,Carbon monoxide alarm,Hair dryer,Dedicated workspace,Free parking on premises,Long term stays allowed,Lock on bedroom door,Refrigerator,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Heating,Cable TV,Hot water,Iron,Essentials,First aid kit,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 217 Shampoo,Building staff,Essentials,Security cameras on property,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron
## 218 Shampoo,Breakfast,Essentials,Security cameras on property,Building staff,Hangers,Long term stays allowed,Hair dryer,Elevator,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron
## 219 Rice maker,Bidet,Toaster,Backyard,Cleaning before checkout,Hangers,Bed linens,Hot water kettle,Freezer,Cooking basics,Single level home,Hair dryer,Bathtub,Host greets you,Ethernet connection,Outdoor furniture,Dining table,Electric stove,Miele oven,Room-darkening shades,Cleaning products,Mosquito net,Miele refrigerator,Paid parking lot on premises,Long term stays allowed,Drying rack for clothing,Private entrance,Elevator,Free washer \\u2013 In unit,Gym,Wifi,Luggage dropoff allowed,Shampoo,Free dryer \\u2013 In unit,Shared outdoor rooftop pool,Extra pillows and blankets,Portable fans,Conditioner,Paid parking off premises,50\\ HDTV with Netflix,Apple TV,Amazon Prime Video,Chromecast,standard cable,HBO Max,Cable TV,Hot water,Body soap,Iron,Essentials,Clothing storage: closet,Kitchen,Private patio or balcony,Dedicated workspace: table and desk,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 220 Shampoo,Essentials,Heating,Long term stays allowed,Private entrance,Hair dryer,Dryer,First aid kit,Wifi,Free parking on premises,Gym,Pool,TV,Air conditioning,Washer \\u2013\\u00a0In unit,Smoke alarm,Fire extinguisher
## 221 Shampoo,Breakfast,Hangers,Long term stays allowed,Hair dryer,First aid kit,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 222 Shampoo,Breakfast,Hangers,Long term stays allowed,Hair dryer,First aid kit,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 223 Breakfast,Essentials,Long term stays allowed,Hair dryer,Wifi,Air conditioning,Dedicated workspace,Iron,Fire extinguisher
## 224 Shampoo,Essentials,Hangers,Kitchen,Cooking basics,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Elevator,Dryer,Wifi,Gym,TV,Air conditioning,Dedicated workspace,Pool,Iron,Fire extinguisher
## 225 Shampoo,Essentials,Hangers,Kitchen,Cooking basics,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Elevator,Dryer,Wifi,Gym,TV,Air conditioning,Dedicated workspace,Pool,Iron,Fire extinguisher
## 226 Cleaning before checkout,Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,Oven,TV,Dedicated workspace,Free parking on premises,Private pool,Long term stays allowed,Refrigerator,Dryer,Microwave,Gym,Free street parking,Wifi,Shampoo,Extra pillows and blankets,Hot water,Stove,BBQ grill,Iron,Shower gel,Essentials,Kitchen,Private patio or balcony,Air conditioning,Dishes and silverware
## 227 Hangers,Bed linens,Cooking basics,Freezer,Clothing storage,TV,Lockbox,Dining table,Dedicated workspace,Electric stove,Room-darkening shades,Free parking on premises,Cleaning products,Wine glasses,Shared gym in building,Long term stays allowed,Drying rack for clothing,Outdoor dining area,Private entrance,Elevator,Refrigerator,Free washer \\u2013 In unit,Wifi,Shampoo,Shared garden or backyard,Free dryer \\u2013 In unit,Shared outdoor lap pool,Stainless steel oven,Hot water,Body soap,Shower gel,Essentials,Kitchen,Private patio or balcony,Air conditioning,Dishes and silverware
## 228 Essentials,Heating,Kitchen,Long term stays allowed,Washer,Private entrance,Hair dryer,Dryer,Wifi,TV,Lockbox,Air conditioning,Dedicated workspace,Smoke alarm,Iron
## 229 Shampoo,Essentials,Heating,Long term stays allowed,Washer,Private entrance,Hair dryer,Dryer,First aid kit,Wifi,Pool,Gym,TV,Air conditioning,Free parking on premises,Smoke alarm,Fire extinguisher
## 230 Bidet,Hangers,Bed linens,Hot water kettle,Washer,Carbon monoxide alarm,Hair dryer,TV,High chair,Pool,Crib,Room-darkening shades,Cleaning products,Long term stays allowed,Elevator,Patio or balcony,Dryer,Microwave,Wifi,Smoke alarm,Children\\u2019s dinnerware,Luggage dropoff allowed,Shampoo,Dishwasher,Portable fans,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Shower gel,Fire extinguisher
## 231 Shampoo,Essentials,Hangers,Heating,Long term stays allowed,Carbon monoxide alarm,Hair dryer,Lock on bedroom door,First aid kit,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 232 Shampoo,Essentials,Hangers,Bed linens,Luggage dropoff allowed,Hair dryer,Elevator,Refrigerator,Wifi,Hot water,Pool,TV,Air conditioning,Free parking on premises,Smoke alarm,Iron
## 233 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Single level home,Hair dryer,Paid parking on premises,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Elevator,Pocket wifi,Refrigerator,Dryer,Microwave,Baby bath,Gym,Wifi,Children\\u2019s dinnerware,Luggage dropoff allowed,Shampoo,Cable TV,Hot water,Stove,Iron,Building staff,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 234 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Single level home,Hair dryer,Paid parking on premises,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Elevator,Pocket wifi,Refrigerator,Dryer,Microwave,Baby bath,Gym,Wifi,Children\\u2019s dinnerware,Luggage dropoff allowed,Shampoo,Cable TV,Hot water,Stove,Iron,Building staff,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 235 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Single level home,Hair dryer,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Elevator,Pocket wifi,Refrigerator,Dryer,Microwave,Baby bath,Gym,Wifi,Children\\u2019s dinnerware,Luggage dropoff allowed,Shampoo,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Building staff,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 236 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Single level home,Hair dryer,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Elevator,Pocket wifi,Refrigerator,Dryer,Microwave,Baby bath,Gym,Wifi,Children\\u2019s dinnerware,Luggage dropoff allowed,Shampoo,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Building staff,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 237 Shampoo,Breakfast,Essentials,Hangers,Bed linens,Long term stays allowed,Washer,Hair dryer,Dryer,First aid kit,Wifi,Hot water,Air conditioning,Dedicated workspace,Smoke alarm,Luggage dropoff allowed,Fire extinguisher
## 238 Breakfast,Essentials,Hangers,Long term stays allowed,First aid kit,Wifi,Air conditioning,Dedicated workspace,Fire extinguisher
## 239 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Single level home,Hair dryer,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Elevator,Pocket wifi,Refrigerator,Dryer,Microwave,Baby bath,Gym,Wifi,Children\\u2019s dinnerware,Luggage dropoff allowed,Shampoo,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Building staff,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 240 Hangers,Bed linens,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,Dedicated workspace,Room-darkening shades,Long term stays allowed,Private entrance,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Shampoo,Extra pillows and blankets,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 241 Hangers,Washer,Carbon monoxide alarm,Hair dryer,TV,Lockbox,High chair,Pool,Crib,Long term stays allowed,Elevator,Refrigerator,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Heating,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Fire extinguisher
## 242 Bidet,Hangers,Bed linens,Hot water kettle,Washer,Carbon monoxide alarm,Hair dryer,TV,High chair,Dedicated workspace,Pool,Crib,Room-darkening shades,Cleaning products,Long term stays allowed,Elevator,Patio or balcony,Dryer,Microwave,Wifi,Smoke alarm,Children\\u2019s dinnerware,Luggage dropoff allowed,Shampoo,Dishwasher,Portable fans,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Shower gel,Fire extinguisher
## 243 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Hair dryer,Dedicated workspace,Free parking on premises,Pool,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Extra pillows and blankets,Heating,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 244 Shampoo,Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Wifi,Pool,Dishes and silverware,Air conditioning,Smoke alarm,Iron
## 245 Cooking basics,Washer,Hair dryer,TV,High chair,Free parking on premises,Pool,Crib,Long term stays allowed,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Heating,Hot water,Stove,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 246 Shampoo,Breakfast,Essentials,Building staff,Hangers,Long term stays allowed,Hair dryer,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron
## 247 Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Elevator,Host greets you,Dryer,Wifi,Gym,TV,Air conditioning,Dedicated workspace,Pool,Iron
## 248 Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Elevator,Host greets you,Dryer,Wifi,Gym,TV,Air conditioning,Dedicated workspace,Pool,Iron
## 249 Essentials,Security cameras on property,Keypad,Heating,Kitchen,Paid parking off premises,Washer,Long term stays allowed,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Stove,TV,Air conditioning,Dedicated workspace,Dishes and silverware,Iron
## 250 Keypad,Heating,Kitchen,Cooking basics,Washer,Long term stays allowed,Private entrance,Hair dryer,Refrigerator,Dryer,Wifi,Hot water,Stove,Dishes and silverware,TV,Air conditioning,Smoke alarm
## 251 Sound system,Cleaning before checkout,Backyard,Hangers,Bed linens,Hot water kettle,Cooking basics,Freezer,Washer,Bathtub,Clothing storage,Oven,TV,Outdoor furniture,High chair,Dining table,Free parking on premises,Crib,Pool,Paid parking on premises,Wine glasses,Long term stays allowed,Outdoor dining area,Laundromat nearby,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Extra pillows and blankets,Hot water,Stove,BBQ grill,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 252 Shampoo,Building staff,Essentials,Long term stays allowed,Hair dryer,Lock on bedroom door,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Fire extinguisher
## 253 Shampoo,Building staff,Essentials,Long term stays allowed,Hair dryer,Lock on bedroom door,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Fire extinguisher
## 254 Shampoo,Building staff,Essentials,Long term stays allowed,Hair dryer,Lock on bedroom door,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Fire extinguisher
## 255 Shampoo,Building staff,Essentials,Hangers,Bed linens,Paid parking off premises,Long term stays allowed,Luggage dropoff allowed,Hair dryer,Elevator,First aid kit,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Iron,Fire extinguisher
## 256 Safe,Backyard,Hangers,Bed linens,Cooking basics,Washer,Bathtub,Hair dryer,Oven,Dedicated workspace,Pool,Crib,Long term stays allowed,Drying rack for clothing,Private entrance,Patio or balcony,Refrigerator,Dryer,Microwave,Gym,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Cable TV,Hot water,Stove,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 257 Shampoo,Washer \\u2013\\u00a0In building,Essentials,Heating,Long term stays allowed,Private entrance,Hair dryer,Dryer,First aid kit,Wifi,Pool,Gym,TV,Air conditioning,Free parking on premises,Smoke alarm,Fire extinguisher
## 258 Shampoo,Breakfast,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Luggage dropoff allowed,Carbon monoxide alarm,Bathtub,Hair dryer,Lock on bedroom door,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron
## 259 Hangers,Washer,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Pool,Long term stays allowed,Elevator,Dryer,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Keypad,Hot water,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Fire extinguisher
## 260 Hangers,Washer,Smart lock,Carbon monoxide alarm,Hair dryer,TV,Free parking on premises,Pool,Dedicated workspace,Long term stays allowed,Elevator,Dryer,Wifi,Smoke alarm,Shampoo,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Fire extinguisher
## 261 Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Stove,Microwave,TV,Gym,Air conditioning,Dedicated workspace,Smoke alarm,Pool,Iron
## 262 Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Elevator,Wifi,Hot water,TV,Air conditioning,Pool
## 263 Shampoo,Essentials,Bed linens,Kitchen,Long term stays allowed,Washer,Lock on bedroom door,Refrigerator,Dryer,Oven,Wifi,Hot water,Microwave,Gym,Air conditioning,Pool,Iron
## 264 Essentials,Hangers,Long term stays allowed,Wifi,Pool,Gym,TV,Air conditioning,Smoke alarm
## 265 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,TV,Air conditioning,Dedicated workspace,Iron,Fire extinguisher
## 266 Hangers,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Pool,Long term stays allowed,Elevator,Dryer,Gym,Wifi,Shampoo,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 267 Shampoo,Essentials,Hangers,Kitchen,Cooking basics,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Elevator,Dryer,Wifi,Free parking on premises,Gym,TV,Air conditioning,Dedicated workspace,Pool,Iron,Fire extinguisher
## 268 Shampoo,Breakfast,Essentials,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Dryer,Wifi,TV,Air conditioning,Dedicated workspace,Iron,Fire extinguisher
## 269 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Single level home,Carbon monoxide alarm,Bathtub,Hair dryer,Host greets you,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Extra pillows and blankets,Heating,Cable TV,Hot tub,Hot water,Stove,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 270 Cleaning before checkout,Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Single level home,Carbon monoxide alarm,Bathtub,Hair dryer,Host greets you,TV,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Extra pillows and blankets,Heating,Hot tub,Hot water,Stove,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,First aid kit,Air conditioning,Dishes and silverware
## 271 Hangers,Washer,Carbon monoxide alarm,Hair dryer,TV,Lockbox,High chair,Pool,Crib,Long term stays allowed,Elevator,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Heating,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Fire extinguisher
## 272 Hangers,Washer,Carbon monoxide alarm,Hair dryer,TV,Lockbox,High chair,Pool,Crib,Long term stays allowed,Elevator,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Heating,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Fire extinguisher
## 273 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 274 Hangers,Bed linens,Freezer,Washer,Hair dryer,Bathtub,TV,Dedicated workspace,Free parking on premises,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Clothing storage: walk-in closet,closet,and dresser,Refrigerator,Dryer,Patio or balcony,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Heating,Conditioner,Hot water,BBQ grill,Iron,Building staff,Essentials,First aid kit,Shared pool,Air conditioning,Shower gel
## 275 Hangers,Bed linens,Hair dryer,Host greets you,Dedicated workspace,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Shampoo,Heating,Hot water,Stove,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 276 Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Elevator,Dryer,Wifi,Gym,TV,Air conditioning,Dedicated workspace,Pool,Iron
## 277 Hangers,Bed linens,Coffee maker,Cooking basics,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Microwave,Wifi,Smoke alarm,Shampoo,Hot water,Iron,Shower gel,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 278 Shampoo,Building staff,Essentials,Hangers,Kitchen,Paid parking off premises,Long term stays allowed,Luggage dropoff allowed,Hair dryer,Cable TV,Patio or balcony,Elevator,First aid kit,Wifi,Hot water,Air conditioning,Dedicated workspace,TV with standard cable,Iron,Fire extinguisher
## 279 Hangers,Bed linens,Carbon monoxide alarm,Hair dryer,Dedicated workspace,Crib,Long term stays allowed,Elevator,Refrigerator,Wifi,Smoke alarm,Shampoo,Heating,Paid parking off premises,Cable TV,Hot water,Iron,Building staff,Essentials,First aid kit,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 280 Backyard,Hangers,Coffee maker,Cooking basics,Washer,Single level home,Carbon monoxide alarm,Hair dryer,Host greets you,Oven,TV,Dedicated workspace,Free parking on premises,Pool,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Dishwasher,Hot tub,Hot water,Stove,BBQ grill,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 281 Hangers,Cooking basics,Washer,Hair dryer,Host greets you,Oven,TV,Paid parking on premises,Dedicated workspace,Pool,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Luggage dropoff allowed,Shampoo,Heating,Hot tub,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware
## 282 Shampoo,Building staff,Essentials,Security cameras on property,Hangers,Kitchen,Paid parking off premises,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,First aid kit,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron
## 283 Hangers,Bed linens,Washer,Hair dryer,Oven,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Shampoo,Dishwasher,Extra pillows and blankets,Cable TV,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 284 Rice maker,Backyard,Hangers,Bed linens,Cooking basics,Single level home,Hair dryer,Host greets you,Oven,TV,Dedicated workspace,Pool,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Patio or balcony,Gym,Wifi,Luggage dropoff allowed,Shampoo,Breakfast,Extra pillows and blankets,Portable fans,Conditioner,Hot tub,Hot water,Stove,Beach essentials,Body soap,Iron,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Washer \\u2013\\u00a0In unit,Shower gel
## 285 Shampoo,Long term stays allowed,Carbon monoxide alarm,Hair dryer,Wifi,Hot water,TV,Air conditioning,Smoke alarm
## 286 Shampoo,Essentials,Hangers,Long term stays allowed,Carbon monoxide alarm,Hair dryer,Elevator,Wifi,Hot tub,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 287 Cleaning before checkout,Hangers,Coffee maker,Cooking basics,Washer,Single level home,Smart lock,Hair dryer,Dedicated workspace,Long term stays allowed,Private entrance,Patio or balcony,Refrigerator,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Heating,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 288 Hangers,Washer,Smart lock,Carbon monoxide alarm,Hair dryer,TV,Free parking on premises,Pool,Dedicated workspace,Long term stays allowed,Elevator,Dryer,Wifi,Smoke alarm,Shampoo,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Fire extinguisher
## 289 Shampoo,Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Cable TV,Elevator,Wifi,Hot tub,Gym,Air conditioning,Pool,TV with standard cable,Fire extinguisher
## 290 Hangers,Bed linens,Washer,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Heating,Paid parking off premises,Hot water,Iron,Building staff,Essentials,First aid kit,Air conditioning,Fire extinguisher
## 291 Shampoo,Essentials,Hangers,Bed linens,Luggage dropoff allowed,Hair dryer,Elevator,Refrigerator,Wifi,Hot water,Pool,TV,Air conditioning,Free parking on premises,Smoke alarm,Iron
## 292 Shampoo,Essentials,Kitchen,Long term stays allowed,Private entrance,Hair dryer,Lock on bedroom door,First aid kit,Wifi,TV,Air conditioning,Smoke alarm,Iron,Fire extinguisher
## 293 Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Elevator,Host greets you,Dryer,Wifi,Hot tub,Gym,TV,Air conditioning,Dedicated workspace,Pool,Iron
## 294 Essentials,Hangers,Heating,Kitchen,Cooking basics,Washer,Long term stays allowed,Elevator,Host greets you,Dryer,Wifi,Gym,TV,Air conditioning,Dedicated workspace,Pool,Iron
## 295 Hangers,Cooking basics,Washer,Hair dryer,Fire pit,Outdoor furniture,TV,Dedicated workspace,Long term stays allowed,Outdoor dining area,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Waterfront,Gym,Wifi,Shampoo,Hot water,BBQ grill,Iron,Essentials,Kitchen,Private fenced garden or backyard,Shared pool,Air conditioning,Dishes and silverware,Fire extinguisher
## 296 Hangers,Washer,Hair dryer,Dedicated workspace,Long term stays allowed,Patio or balcony,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Breakfast,Paid parking off premises,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 297 Hangers,Bed linens,Cooking basics,Washer,Single level home,Carbon monoxide alarm,Hair dryer,Ethernet connection,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Shampoo,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable
## 298 Hangers,Coffee maker,Hot water kettle,Cooking basics,Washer,Carbon monoxide alarm,TV,Dining table,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Breakfast,Heating,Paid parking off premises,Hot water,Stove,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 299 Shampoo,Essentials,Hangers,Kitchen,Cooking basics,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Elevator,Dryer,Wifi,Free parking on premises,Gym,TV,Air conditioning,Dedicated workspace,Pool,Iron,Fire extinguisher
## 300 Hangers,Bed linens,Cooking basics,Washer,Single level home,Carbon monoxide alarm,Hair dryer,Paid parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Shampoo,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 301 Hangers,Bed linens,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Shampoo,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 302 Hangers,Bed linens,Cooking basics,Washer,Single level home,Carbon monoxide alarm,Hair dryer,Paid parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Shampoo,Keypad,Heating,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 303 Hangers,Bed linens,Cooking basics,Washer,Single level home,Carbon monoxide alarm,Hair dryer,Ethernet connection,Dedicated workspace,Long term stays allowed,Private entrance,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Shampoo,Keypad,Heating,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 304 Shampoo,Essentials,Smoke alarm,Hangers,Bed linens,Paid parking off premises,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Cable TV,Lock on bedroom door,Wifi,Hot water,Body soap,Air conditioning,Dedicated workspace,Shower gel,TV with standard cable,Luggage dropoff allowed
## 305 Shampoo,Essentials,Smoke alarm,Hangers,Bed linens,Paid parking off premises,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Cable TV,Lock on bedroom door,Wifi,Hot water,Body soap,Air conditioning,Dedicated workspace,Shower gel,TV with standard cable,Luggage dropoff allowed
## 306 Shampoo,Essentials,Heating,Long term stays allowed,Washer,Private entrance,Hair dryer,Dryer,First aid kit,Wifi,Pool,Gym,TV,Air conditioning,Free parking on premises,Smoke alarm,Fire extinguisher
## 307 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Shared hot tub,TV,Outdoor furniture,Free parking on premises,Long term stays allowed,Outdoor dining area,Elevator,Gym,Wifi,Smoke alarm,Shampoo,Hot water,Body soap,Iron,Essentials,Kitchen,Shared pool,Air conditioning
## 308 Shampoo,Breakfast,Essentials,Building staff,Hangers,Long term stays allowed,Washer,Hair dryer,Dryer,First aid kit,Wifi,Hot water,Free street parking,TV,Paid parking on premises,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 309 Hangers,Bed linens,Washer,Carbon monoxide alarm,Hair dryer,Dedicated workspace,Long term stays allowed,Elevator,Pocket wifi,Refrigerator,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Heating,Paid parking off premises,Cable TV,Hot water,Iron,Building staff,Essentials,First aid kit,Air conditioning,TV with standard cable,Fire extinguisher
## 310 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,TV,Air conditioning,Dedicated workspace,Iron,Fire extinguisher
## 311 Toaster,Cleaning before checkout,Backyard,Hangers,Bed linens,Hot water kettle,Cooking basics,Freezer,Washer,Bathtub,Clothing storage,Host greets you,Oven,Outdoor furniture,Paid parking on premises,Dining table,Dedicated workspace,Pool,Crib,Wine glasses,Long term stays allowed,Elevator,Refrigerator,Microwave,Gym,Wifi,Smoke alarm,Extra pillows and blankets,Cable TV,Hot water,Stove,BBQ grill,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 312 Hangers,Bed linens,Washer,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Crib,Long term stays allowed,Elevator,Refrigerator,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Paid parking off premises,Hot water,Iron,Building staff,Essentials,Air conditioning,Fire extinguisher
## 313 Shampoo,Breakfast,Essentials,Long term stays allowed,Washer,Hair dryer,Dryer,First aid kit,Wifi,Air conditioning,Dedicated workspace,Smoke alarm,Fire extinguisher
## 314 Cleaning before checkout,Backyard,Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Host greets you,Oven,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Private entrance,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Extra pillows and blankets,Heating,Cable TV,Hot water,Stove,BBQ grill,Iron,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 315 Essentials,Security cameras on property,Keypad,Kitchen,Paid parking off premises,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Stove,TV,Air conditioning,Dedicated workspace,Dishes and silverware,Iron
## 316 Beachfront,Free parking on premises,Free street parking
## 317 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Hair dryer,Paid parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Refrigerator,Dryer,Microwave,Wifi,Shampoo,Keypad,Heating,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 318 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Wifi,Free parking on premises,Gym,TV,Air conditioning,Dedicated workspace,Iron
## 319 Keypad,Bed linens,Kitchen,Long term stays allowed,Washer,Luggage dropoff allowed,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 320 Hangers,Bed linens,Hot water kettle,Cooking basics,Freezer,Washer,Hair dryer,Bathtub,Oven,TV,Baking sheet,Dining table,Outdoor furniture,Pool,Cleaning products,Long term stays allowed,Outdoor dining area,Elevator,Patio or balcony,Dryer,Microwave,Waterfront,Gym,Wifi,Shampoo,Gas stove,Dishwasher,Extra pillows and blankets,Heating,Conditioner,Hot tub,Hot water,Body soap,BBQ grill,Iron,Essentials,Kitchen,Game console: PS4,Free residential garage on premises,Dishes and silverware,Air conditioning,Shower gel
## 321 Hangers,Cooking basics,Washer,Single level home,Hair dryer,Oven,TV,Free parking on premises,Pool,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Keypad,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 322 Hangers,Cooking basics,Washer,Single level home,Hair dryer,Oven,TV,Free parking on premises,Pool,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Keypad,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 323 Hangers,Bed linens,Coffee maker,Washer,Carbon monoxide alarm,Hair dryer,Dedicated workspace,Free parking on premises,Long term stays allowed,Lock on bedroom door,Refrigerator,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Heating,Cable TV,Hot water,Iron,Essentials,First aid kit,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 324 Shampoo,Essentials,Hangers,Bed linens,Luggage dropoff allowed,Hair dryer,Elevator,Refrigerator,Wifi,Hot water,Pool,TV,Air conditioning,Free parking on premises,Smoke alarm,Iron
## 325 Hangers,Coffee maker,Washer,Hair dryer,TV,Dedicated workspace,Security cameras on property,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Shampoo,Iron,Building staff,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 326 Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Baby bath,Gym,Wifi,Children\\u2019s dinnerware,Luggage dropoff allowed,Shampoo,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Building staff,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 327 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Wifi,Hot water,Free parking on premises,Gym,TV,Air conditioning,Dedicated workspace,Pool,Iron
## 328 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Wifi,Hot water,Free parking on premises,Gym,TV,Air conditioning,Dedicated workspace,Pool,Iron
## 329 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Carbon monoxide alarm,Bathtub,Hair dryer,Host greets you,TV,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Extra pillows and blankets,Heating,Hot tub,Hot water,Stove,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware
## 330 Hangers,Bed linens,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,Dedicated workspace,Security cameras on property,Long term stays allowed,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,Microwave,Free street parking,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Paid parking off premises,Hot water,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 331 Toaster,Cleaning before checkout,Hangers,Bed linens,Hot water kettle,Coffee maker,Cooking basics,Washer,Freezer,Single level home,Hair dryer,Smart lock,Oven,Dining table,Dedicated workspace,Wine glasses,Security cameras on property,Long term stays allowed,Drying rack for clothing,Private entrance,Patio or balcony,Refrigerator,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Ceiling fan,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 332 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Patio or balcony,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Extra pillows and blankets,Hot water,Stove,BBQ grill,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 333 Essentials,Keypad,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Hot water,TV,Paid parking on premises,Air conditioning,Dedicated workspace,Iron
## 334 Hangers,Bed linens,Cooking basics,Washer,Bathtub,Hair dryer,TV,Pool,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Shampoo,Heating,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 335 Essentials,Hangers,Keypad,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Iron
## 336 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Oven,Paid parking on premises,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Extra pillows and blankets,Keypad,Cable TV,Hot tub,Hot water,Stove,Iron,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 337 Shampoo,Building staff,Essentials,Security cameras on property,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron
## 338 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,TV,Air conditioning,Iron,Fire extinguisher
## 339 Backyard,Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,TV,Dedicated workspace,Free parking on premises,Room-darkening shades,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Shampoo,Heating,Hot water,Stove,BBQ grill,Iron,Building staff,Essentials,Kitchen,Private patio or balcony,Shared pool,Air conditioning,Dishes and silverware,Fire extinguisher
## 340 Cleaning before checkout,Backyard,Hangers,Bed linens,Hot water kettle,Freezer,Washer,Hair dryer,Bathtub,Oven,TV,Outdoor furniture,Dining table,Dedicated workspace,Pool,Crib,Paid parking on premises,Wine glasses,Long term stays allowed,Outdoor dining area,Elevator,Refrigerator,Dryer,Microwave,Gym,Outlet covers,Free street parking,Wifi,Smoke alarm,Shampoo,Dishwasher,Extra pillows and blankets,Conditioner,Hot water,Body soap,BBQ grill,Iron,Essentials,Clothing storage: closet,Window guards,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 341 Hangers,Cooking basics,Washer,Host greets you,TV,Dedicated workspace,Free parking on premises,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Shared garden or backyard,Heating,Hot water,Stove,Iron,Essentials,Kitchen,Private patio or balcony,Shared pool,Air conditioning,Dishes and silverware
## 342 Hangers,Bed linens,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,TV,Paid parking on premises,Dedicated workspace,Pool,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Dryer,Wifi,Smoke alarm,Shampoo,Hot water,Building staff,Essentials,Kitchen,Air conditioning
## 343 Shampoo,Essentials,Security cameras on property,Backyard,Hangers,Paid parking off premises,Long term stays allowed,Luggage dropoff allowed,Hair dryer,Elevator,Host greets you,First aid kit,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 344 Shampoo,Breakfast,Essentials,Building staff,Hangers,Bed linens,Long term stays allowed,Washer,Luggage dropoff allowed,Hair dryer,Dryer,First aid kit,Wifi,Hot water,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 345 Shampoo,Essentials,Long term stays allowed,Hair dryer,Lock on bedroom door,First aid kit,Wifi,TV,Air conditioning,Iron,Fire extinguisher
## 346 Shampoo,Building staff,Essentials,Hangers,Heating,Long term stays allowed,Carbon monoxide alarm,Hair dryer,Lock on bedroom door,First aid kit,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 347 Backyard,Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Host greets you,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Extra pillows and blankets,Heating,Cable TV,Hot water,Stove,BBQ grill,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 348 Keypad,Kitchen,Cooking basics,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Stove,TV,Air conditioning,Dedicated workspace,Dishes and silverware
## 349 Essentials,Security cameras on property,Hangers,Keypad,Kitchen,Cooking basics,Long term stays allowed,Washer,Bathtub,Hair dryer,Refrigerator,Elevator,Dryer,Wifi,Hot water,Stove,TV,Air conditioning,Dishes and silverware
## 350 Essentials,Hangers,Keypad,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,TV,Air conditioning,Dedicated workspace
## 351 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Hair dryer,TV,Dedicated workspace,Room-darkening shades,Long term stays allowed,Refrigerator,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Keypad,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 352 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Hair dryer,TV,Dedicated workspace,Room-darkening shades,Long term stays allowed,Refrigerator,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 353 Rice maker,Toaster,Safe,Hangers,Bed linens,Hot water kettle,Freezer,Coffee maker,Washer,Cooking basics,Single level home,Hair dryer,Clothing storage,Host greets you,Oven,Paid parking on premises,Dining table,Dedicated workspace,Room-darkening shades,Cleaning products,Wine glasses,Security cameras on property,Long term stays allowed,Laundromat nearby,Elevator,Nespresso machine,Pocket wifi,Refrigerator,Dryer,Pour-over coffee,Microwave,Gym,Wifi,Beachfront,Board games,Luggage dropoff allowed,Shampoo,Breakfast,Extra pillows and blankets,Portable fans,Heating,Conditioner,Cable TV,Hot water,Stove,Beach essentials,Body soap,BBQ grill,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Private patio or balcony,Dishes and silverware,Shared pool,Air conditioning,Shower gel,TV with standard cable
## 354 Shampoo,Essentials,Backyard,Kitchen,Cooking basics,Long term stays allowed,Private entrance,Hair dryer,Lock on bedroom door,Wifi,Microwave,Pool,TV,Air conditioning,Smoke alarm,Iron,Fire extinguisher
## 355 Essentials,Heating,Kitchen,Long term stays allowed,Washer,Private entrance,Hair dryer,Dryer,Wifi,TV,Lockbox,Air conditioning,Dedicated workspace,Smoke alarm
## 356 Cleaning before checkout,Backyard,Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Single level home,Hair dryer,Ethernet connection,Paid parking on premises,Dedicated workspace,Crib,Security cameras on property,Long term stays allowed,Private entrance,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Extra pillows and blankets,Heating,Cable TV,Hot tub,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable
## 357 Security cameras on property,Hangers,Kitchen,Cooking basics,Long term stays allowed,Washer,Refrigerator,Dryer,Wifi,Microwave,Gym,TV,Air conditioning,Dedicated workspace,Pool,Fire extinguisher
## 358 Toaster,Bidet,Hangers,Bed linens,Hot water kettle,Coffee maker,Cooking basics,Freezer,Bathtub,Ethernet connection,Dining table,Free parking on premises,Room-darkening shades,Dedicated workspace: office chair,table,desk,and monitor,Cleaning products,Wine glasses,Long term stays allowed,Outdoor dining area,Laundromat nearby,Central air conditioning,Private entrance,Elevator,Refrigerator,Free washer \\u2013 In unit,Microwave,HDTV with Chromecast,Netflix,Wifi,Shampoo,Free dryer \\u2013 In unit,Extra pillows and blankets,Keypad,Paid parking off premises,Hot water,Body soap,Iron,Essentials,Kitchen,Private patio or balcony,First aid kit,Dishes and silverware,Shower gel
## 359 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Elevator,Pocket wifi,Refrigerator,Dryer,Microwave,Baby bath,Gym,Wifi,Luggage dropoff allowed,Shampoo,Cable TV,Hot water,Stove,Iron,Building staff,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 360 Hangers,Coffee maker,Hot water kettle,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Paid parking off premises,Stove,Body soap,Iron,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 361 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Hair dryer,Host greets you,First aid kit,Wifi,TV,Air conditioning,Free parking on premises
## 362 Backyard,Hangers,Bed linens,Washer,Hair dryer,TV,Free parking on premises,Dedicated workspace,Pool,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Wifi,Shampoo,Heating,Hot water,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 363 Shampoo,Essentials,Extra pillows and blankets,Hangers,Heating,Paid parking off premises,Long term stays allowed,Elevator,Lock on bedroom door,Wifi,Air conditioning,Dishes and silverware,Luggage dropoff allowed
## 364 Backyard,Hangers,Hot water kettle,Washer,Hair dryer,Host greets you,TV,Free parking on premises,Pool,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Heating,Hot water,Stove,Iron,Bread maker,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 365 Hangers,Bed linens,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Long term stays allowed,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Shampoo,Paid parking off premises,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 366 Hangers,Bed linens,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 367 Cleaning before checkout,Hangers,Coffee maker,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Free parking on premises,Pool,Long term stays allowed,Private entrance,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Waterfront,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Heating,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 368 Hangers,Hot water kettle,Cooking basics,Washer,Hair dryer,TV,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Shampoo,Paid parking off premises,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 369 Shampoo,Breakfast,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Elevator,Dryer,First aid kit,Wifi,Hot water,Gym,TV,Air conditioning,Free parking on premises,Pool,Iron
## 370 Shampoo,Essentials,Hangers,Kitchen,Cooking basics,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Elevator,Dryer,Wifi,Free parking on premises,TV,Air conditioning,Dedicated workspace,Iron,Fire extinguisher
## 371 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Patio or balcony,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Dishwasher,Extra pillows and blankets,Heating,Hot water,Stove,Iron,Essentials,Kitchen,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 372 Hangers,Washer,Carbon monoxide alarm,Hair dryer,TV,Free parking on premises,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Elevator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware
## 373 Essentials,Kitchen,Cooking basics,Long term stays allowed,Dryer,Wifi,TV,Air conditioning,Smoke alarm
## 374 Shampoo,Essentials,Backyard,Hangers,Paid parking off premises,Long term stays allowed,Luggage dropoff allowed,Hair dryer,Elevator,Refrigerator,Host greets you,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron
## 375 Shampoo,Breakfast,Essentials,Hangers,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Lock on bedroom door,Dryer,Wifi,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 376 Sound system,Hangers,Bed linens,Coffee maker,Hair dryer,TV,Paid parking on premises,Lockbox,Room-darkening shades,Security cameras on property,Long term stays allowed,Patio or balcony,Pour-over coffee,Microwave,Waterfront,Wifi,Smoke alarm,Shampoo,Extra pillows and blankets,Hot water,Mini fridge,Essentials,Kitchen,EV charger,First aid kit,Air conditioning,Shower gel,Fire extinguisher
## 377 Shampoo,Essentials,Smoke alarm,Hangers,Bed linens,Paid parking off premises,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Cable TV,Lock on bedroom door,Wifi,Hot water,Body soap,Air conditioning,Dedicated workspace,Shower gel,TV with standard cable,Luggage dropoff allowed
## 378 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,Oven,Ethernet connection,TV,Outdoor furniture,Dedicated workspace,Free parking on premises,Long term stays allowed,Outdoor dining area,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Stove,BBQ grill,Iron,Essentials,Kitchen,Private patio or balcony,First aid kit,Dishes and silverware,Shared pool,Air conditioning,Shower gel,Fire extinguisher
## 379 Shampoo,Breakfast,Essentials,Building staff,Hangers,Bed linens,Heating,Long term stays allowed,Washer,Hair dryer,Dryer,First aid kit,Wifi,Hot water,Air conditioning,Dedicated workspace,Smoke alarm,Luggage dropoff allowed,Fire extinguisher
## 380 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Host greets you,TV,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Free street parking,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 381 Shampoo,Essentials,Hangers,Kitchen,Cooking basics,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Elevator,Dryer,First aid kit,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 382 Shampoo,Essentials,Hangers,Kitchen,Cooking basics,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Elevator,Dryer,Wifi,Pool,Gym,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 383 Shampoo,Essentials,Hangers,Kitchen,Cooking basics,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Elevator,Dryer,Wifi,Gym,TV,Air conditioning,Dedicated workspace,Pool,Iron,Fire extinguisher
## 384 Indoor fireplace,Hangers,Bed linens,Cooking basics,Washer,Single level home,Carbon monoxide alarm,Hair dryer,Ethernet connection,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Shampoo,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable
## 385 Shampoo,Essentials,Hangers,Kitchen,Cooking basics,Long term stays allowed,Washer,Hair dryer,Dryer,Wifi,TV,Air conditioning,Dedicated workspace,Iron
## 386 Shampoo,Essentials,Hangers,Kitchen,Cooking basics,Long term stays allowed,Washer,Hair dryer,Wifi,TV,Air conditioning,Dedicated workspace,Iron
## 387 Shampoo,Breakfast,Essentials,Hangers,Kitchen,Cooking basics,Long term stays allowed,Washer,Hair dryer,Dryer,Wifi,Gym,TV,Air conditioning,Dedicated workspace,Pool,Iron
## 388 Shampoo,Essentials,Hangers,Kitchen,Cooking basics,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Dryer,Wifi,TV,Air conditioning,Dedicated workspace,Iron,Fire extinguisher
## 389 Shampoo,Essentials,Hangers,Kitchen,Cooking basics,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Wifi,Free parking on premises,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 390 Shampoo,Essentials,Hangers,Kitchen,Cooking basics,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Dryer,Wifi,Free parking on premises,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 391 Shampoo,Essentials,Hangers,Kitchen,Cooking basics,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Dryer,Wifi,Pool,Gym,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 392 Coffee maker,Bed linens,Cooking basics,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Microwave,Wifi,Smoke alarm,Shampoo,Hot water,Iron,Shower gel,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 393 Hangers,Bed linens,Free dryer \\u2013 In building,Smart lock,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Free washer \\u2013 In building,Long term stays allowed,Elevator,Refrigerator,Microwave,Wifi,Smoke alarm,Shampoo,Hot water,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 394 Hangers,Bed linens,Washer,Hair dryer,TV,High chair,Dedicated workspace,Pool,Long term stays allowed,Patio or balcony,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Hot water,Stove,BBQ grill,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 395 Cleaning before checkout,Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,Ethernet connection,Paid parking on premises,Dedicated workspace,Crib,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Extra pillows and blankets,Heating,Cable TV,Hot tub,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable
## 396 Shampoo,Building staff,Essentials,Hangers,Heating,Long term stays allowed,Carbon monoxide alarm,Hair dryer,Lock on bedroom door,Elevator,First aid kit,Wifi,Free parking on premises,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 397 Shampoo,Building staff,Essentials,Hangers,Heating,Long term stays allowed,Carbon monoxide alarm,Hair dryer,Lock on bedroom door,First aid kit,Wifi,Free parking on premises,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 398 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Hair dryer,Oven,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Extra pillows and blankets,Heating,Cable TV,Hot water,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 399 Building staff,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Luggage dropoff allowed,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Microwave,Stove,TV,Air conditioning,Dedicated workspace,Iron,Fire extinguisher
## 400 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,TV,Air conditioning,Dedicated workspace,Iron,Fire extinguisher
## 401 Essentials,Dishwasher,Hangers,Keypad,Kitchen,Cooking basics,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Stove,TV,Air conditioning,Dishes and silverware,Iron
## 402 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Elevator,Dryer,First aid kit,Wifi,TV,Air conditioning,Smoke alarm,Fire extinguisher
## 403 Shampoo,Essentials,Long term stays allowed,Washer,Private entrance,Hair dryer,Lock on bedroom door,Dryer,First aid kit,Wifi,TV,Air conditioning,Smoke alarm,Iron,Fire extinguisher
## 404 Shampoo,TV,Essentials,Smoke alarm,Hangers,Bed linens,Conditioner,Long term stays allowed,Smart lock,Hair dryer,Bathtub,Lock on bedroom door,Elevator,Wifi,Hot water,Body soap,Air conditioning,Shower gel,Iron,Fire extinguisher
## 405 Shampoo,Essentials,Security cameras on property,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Dryer,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron
## 406 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,Oven,Dedicated workspace,Room-darkening shades,Long term stays allowed,Refrigerator,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Keypad,Paid parking off premises,Hot water,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 407 Hangers,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Heating,Cable TV,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 408 Hangers,Bed linens,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Cable TV,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 409 Keypad,Kitchen,Cooking basics,Long term stays allowed,Washer,Private entrance,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Stove,Dishes and silverware,TV,Air conditioning,Dedicated workspace,Smoke alarm,Fire extinguisher
## 410 Beachfront,Free parking on premises,Free street parking
## 411 Hangers,Bed linens,Washer,Hair dryer,TV,High chair,Dedicated workspace,Pool,Long term stays allowed,Patio or balcony,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Hot water,Stove,BBQ grill,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 412 Backyard,Bed linens,Cooking basics,Washer,Hair dryer,TV,Dedicated workspace,Security cameras on property,Long term stays allowed,Patio or balcony,Refrigerator,Dryer,Microwave,Wifi,Shampoo,Heating,Barbecue utensils,Stove,BBQ grill,Iron,Bread maker,Shower gel,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 413 Hangers,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,Oven,Shared hot tub,TV,Outdoor furniture,Dedicated workspace,Free parking on premises,Private pool,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Hot water,Stove,BBQ grill,Iron,Essentials,Kitchen,Private patio or balcony,Air conditioning,Fire extinguisher
## 414 Shampoo,Breakfast,Essentials,Paid parking off premises,Washer,Hair dryer,Lock on bedroom door,Dryer,Wifi,Hot water,Air conditioning,Smoke alarm,Iron,Fire extinguisher
## 415 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Host greets you,TV,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Stove,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 416 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Stove,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 417 Essentials,Dishwasher,Hangers,Coffee maker,Kitchen,Cooking basics,Keypad,Washer,Long term stays allowed,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Stove,TV,Air conditioning,Dishes and silverware,Iron
## 418 Hangers,Cooking basics,Washer,Hair dryer,TV,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Wifi,Smoke alarm,Keypad,Heating,Hot water,Stove,Iron,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 419 Shampoo,Essentials,Indoor fireplace,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Bathtub,Hair dryer,Elevator,Wifi,TV,Air conditioning,Free parking on premises,Smoke alarm,Iron
## 420 Shampoo,Building staff,Essentials,Long term stays allowed,Cable TV,Elevator,Wifi,Hot water,Gym,Air conditioning,Free parking on premises,Pool,TV with standard cable
## 421 Shampoo,Essentials,Long term stays allowed,Cable TV,Hair dryer,Patio or balcony,Elevator,Wifi,Gym,Air conditioning,Free parking on premises,Pool,TV with standard cable,Iron
## 422 Shampoo,Essentials,Kitchen,Long term stays allowed,Private entrance,Hair dryer,Lock on bedroom door,First aid kit,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 423 Hangers,Washer,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Dishwasher,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 424 Keypad,Kitchen,Cooking basics,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,TV,Air conditioning,Dedicated workspace
## 425 Keypad,Kitchen,Cooking basics,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Stove,Dishes and silverware,TV,Paid parking on premises,Air conditioning,Dedicated workspace,Smoke alarm
## 426 Hangers,Cooking basics,Washer,Hair dryer,Oven,TV,Free parking on premises,Pool,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 427 Shampoo,Essentials,Security cameras on property,Backyard,Paid parking off premises,Long term stays allowed,Luggage dropoff allowed,Hair dryer,Elevator,First aid kit,Wifi,TV,Air conditioning,Smoke alarm,Iron,Fire extinguisher
## 428 Hangers,Bed linens,Cooking basics,Washer,Single level home,Carbon monoxide alarm,Hair dryer,TV,Pool,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 429 Hangers,Keypad,Heating,Kitchen,Cooking basics,Washer,Long term stays allowed,Private entrance,Hair dryer,Elevator,Dryer,Wifi,Dishes and silverware,TV,Air conditioning,Smoke alarm
## 430 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Elevator,First aid kit,Wifi,Hot water,Air conditioning,Pool,Fire extinguisher
## 431 Shampoo,Essentials,Security cameras on property,Hangers,Kitchen,Long term stays allowed,Hair dryer,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron
## 432 Essentials,Keypad,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Dishes and silverware,Iron
## 433 Hangers,Bed linens,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Security cameras on property,Long term stays allowed,Lock on bedroom door,Refrigerator,Free washer \\u2013 In unit,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Free dryer \\u2013 In unit,Induction stove,Hot water,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 434 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Oven,Dedicated workspace,Pool,Crib,Security cameras on property,Long term stays allowed,Private entrance,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Extra pillows and blankets,Heating,Cable TV,Hot water,Stove,BBQ grill,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 435 Hangers,Bed linens,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Cable TV,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 436 Hangers,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Pool,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 437 Hangers,Free dryer \\u2013 In building,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Free washer \\u2013 In building,Long term stays allowed,Elevator,Refrigerator,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Essentials,Kitchen,Air conditioning,Shower gel,Fire extinguisher
## 438 Bidet,Hangers,Bed linens,Hot water kettle,Freezer,Washer,Hair dryer,TV,Electrolux stainless steel induction stove,Dining table,Dedicated workspace,Pool,Room-darkening shades,Cleaning products,Wine glasses,Long term stays allowed,Drying rack for clothing,Laundromat nearby,Refrigerator,Dryer,Microwave,Gym,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Portable fans,Hot water,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware
## 439 Hangers,Bed linens,Washer,Carbon monoxide alarm,Hair dryer,Oven,TV,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Shampoo,Extra pillows and blankets,Heating,Hot water,Stove,Iron,Essentials,Kitchen,Private patio or balcony,Shared pool,Air conditioning,Dishes and silverware
## 440 Backyard,Hangers,Bed linens,Washer,Hair dryer,TV,Free parking on premises,Pool,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Shampoo,Heating,Hot water,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 441 Indoor fireplace,Backyard,Hangers,Hot water kettle,Washer,Hair dryer,TV,Dedicated workspace,Free parking on premises,Pool,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Wifi,Shampoo,Heating,Iron,Bread maker,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 442 Hangers,Bed linens,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,Oven,Lockbox,Dedicated workspace,Free parking on premises,Long term stays allowed,Lock on bedroom door,Refrigerator,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Heating,Cable TV,Hot water,Stove,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 443 Hangers,Bed linens,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Private entrance,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Cable TV,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 444 Essentials,Keypad,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Stove,TV,Air conditioning,Dedicated workspace,Dishes and silverware,Iron
## 445 Keypad,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,TV,Air conditioning,Dedicated workspace,Iron
## 446 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Elevator,First aid kit,Wifi,Hot water,TV,Paid parking on premises,Air conditioning,Dedicated workspace,Iron
## 447 Shampoo,Essentials,Long term stays allowed,Carbon monoxide alarm,Hair dryer,Elevator,Wifi,Hot water,TV,Air conditioning,Smoke alarm,Fire extinguisher
## 448 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Elevator,Wifi,Hot water,Gym,Air conditioning,Dedicated workspace,Pool
## 449 Shampoo,Breakfast,Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Wifi,Air conditioning,Free parking on premises,Pool,Iron
## 450 Essentials,Hangers,Keypad,Kitchen,Cooking basics,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,TV,Air conditioning,Dishes and silverware,Iron
## 451 Hangers,Washer,Carbon monoxide alarm,Hair dryer,TV,Lockbox,Dedicated workspace,Pool,Long term stays allowed,Elevator,Dryer,Gym,Wifi,Smoke alarm,Shampoo,Hot tub,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 452 Bed linens,Washer,Carbon monoxide alarm,Hair dryer,Dedicated workspace,Long term stays allowed,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,Microwave,Free street parking,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Paid parking off premises,Hot water,Iron,Shower gel,Essentials,Air conditioning,Dishes and silverware,Fire extinguisher
## 453 Hangers,Bed linens,Hot water kettle,Washer,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Elevator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Mini fridge,Stove,Iron,Building staff,Essentials,Kitchen,Air conditioning
## 454 Hangers,Cooking basics,Washer,Hair dryer,Fire pit,Shared hot tub,Outdoor furniture,TV,Dedicated workspace,Children\\u2019s books and toys,Long term stays allowed,Outdoor dining area,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Free street parking,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Keypad,Hot water,BBQ grill,Iron,Essentials,Kitchen,Private fenced garden or backyard,Air conditioning,Fire extinguisher
## 455 Hangers,Bed linens,Washer,Hair dryer,Host greets you,TV,Free parking on premises,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Elevator,Pocket wifi,Dryer,Gym,Wifi,Shampoo,Extra pillows and blankets,Heating,Hot water,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 456 Hangers,Bed linens,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Essentials,Kitchen,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 457 Essentials,Hangers,Keypad,Kitchen,Long term stays allowed,Washer,Elevator,Refrigerator,Dryer,Wifi,Dishes and silverware,Stove,TV,Air conditioning,Dedicated workspace,Smoke alarm,Fire extinguisher
## 458 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Stove,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware
## 459 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Private entrance,Elevator,Refrigerator,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 460 Essentials,Keypad,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,TV,Air conditioning
## 461 Hangers,Keypad,Kitchen,Cooking basics,Long term stays allowed,Washer,Hair dryer,Elevator,Wifi,TV,Air conditioning,Dishes and silverware
## 462 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Dedicated workspace,Free parking on premises,Pool,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Extra pillows and blankets,Heating,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 463 Hangers,Washer,Hair dryer,TV,High chair,Pool,Crib,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Stove,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 464 Hangers,Bed linens,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Heating,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 465 Shampoo,Essentials,Security cameras on property,Hangers,Kitchen,Long term stays allowed,Washer,Smart lock,Carbon monoxide alarm,Hair dryer,Elevator,Dryer,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 466 Hangers,Bed linens,Hot water kettle,Freezer,Cooking basics,Smart lock,Bathtub,Hair dryer,Clothing storage: closet and wardrobe,TV,Dining table,Dedicated workspace,Free parking on premises,Cleaning products,Wine glasses,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Refrigerator,Free washer \\u2013 In unit,Dryer,Microwave,Free street parking,Private hot tub,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Conditioner,Hot water,Mini fridge,Body soap,Iron,Essentials,Kitchen,Private fenced garden or backyard,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 467 Shampoo,Essentials,Backyard,Hangers,Bed linens,Paid parking off premises,Long term stays allowed,Luggage dropoff allowed,Hair dryer,Cable TV,Elevator,Host greets you,Wifi,Hot water,Air conditioning,Dedicated workspace,Smoke alarm,TV with standard cable,Iron
## 468 Hangers,Bed linens,Cooking basics,Washer,Single level home,Carbon monoxide alarm,Hair dryer,Host greets you,Oven,TV,Dedicated workspace,Pool,Room-darkening shades,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Children\\u2019s dinnerware,Shampoo,Paid parking off premises,Hot water,Stove,Iron,Essentials,Babysitter recommendations,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 469 Shampoo,Essentials,Kitchen,Long term stays allowed,Private entrance,Hair dryer,Lock on bedroom door,First aid kit,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Fire extinguisher
## 470 Hangers,Hair dryer,Host greets you,Oven,TV,Paid parking on premises,Dedicated workspace,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 471 Shampoo,Building staff,Essentials,Long term stays allowed,Hair dryer,Wifi,TV,Air conditioning,Smoke alarm,Fire extinguisher
## 472 Hangers,Bed linens,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Security cameras on property,Long term stays allowed,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Essentials,Kitchen,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 473 Hangers,Bed linens,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Heating,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 474 Hangers,Bed linens,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Heating,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 475 Hangers,Coffee maker,Kitchen,Cooking basics,Keypad,Washer,Long term stays allowed,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Stove,TV,Air conditioning,Dedicated workspace,Dishes and silverware
## 476 Cleaning before checkout,Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,Ethernet connection,Paid parking on premises,Dedicated workspace,Crib,Security cameras on property,Long term stays allowed,Private entrance,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Heating,Cable TV,Hot tub,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable
## 477 Shampoo,Building staff,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Dryer,Wifi,Stove,TV,Air conditioning,Dedicated workspace,Iron,Fire extinguisher
## 478 Essentials,Security cameras on property,Hangers,Keypad,Kitchen,Cooking basics,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Stove,TV,Air conditioning,Dedicated workspace,Dishes and silverware,Iron
## 479 Hangers,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Free parking on premises,Crib,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Refrigerator,Microwave,Free street parking,Wifi,Smoke alarm,Shampoo,Shared patio or balcony,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 480 Shampoo,Building staff,Essentials,Security cameras on property,Hangers,Kitchen,Cooking basics,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Elevator,Dryer,Wifi,Hot water,Pool,TV,Paid parking on premises,Air conditioning,Smoke alarm
## 481 Shampoo,Building staff,Essentials,Long term stays allowed,Hair dryer,Lock on bedroom door,Wifi,TV,Air conditioning,Smoke alarm,Fire extinguisher
## 482 Shampoo,Building staff,Essentials,Long term stays allowed,Hair dryer,Lock on bedroom door,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Fire extinguisher
## 483 Hangers,Bed linens,Washer,Single level home,Hair dryer,Host greets you,Oven,TV,Dedicated workspace,Pool,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Extra pillows and blankets,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 484 Hangers,Bed linens,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,Dedicated workspace,Security cameras on property,Long term stays allowed,Lock on bedroom door,Refrigerator,TV with Netflix,Dryer,Microwave,Gym,Paid street parking off premises,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Iron,Essentials,Kitchen,Air conditioning,Shower gel
## 485 Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Elevator,Wifi,Hot water,Gym,Pool,TV,Air conditioning,Smoke alarm
## 486 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Carbon monoxide alarm,Dryer,First aid kit,Wifi,Free parking on premises,Air conditioning,Dedicated workspace,Smoke alarm,Fire extinguisher
## 487 Hangers,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Free parking on premises,Crib,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Refrigerator,Microwave,Free street parking,Wifi,Smoke alarm,Shampoo,Shared patio or balcony,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 488 Hangers,Bed linens,Cooking basics,Washer,Carbon monoxide alarm,Bathtub,Hair dryer,Oven,Lockbox,High chair,Children\\u2019s books and toys,Dedicated workspace,Crib,Room-darkening shades,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Baby bath,Gym,Wifi,Children\\u2019s dinnerware,Smoke alarm,Shampoo,Extra pillows and blankets,Cable TV,Hot tub,Hot water,Stove,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,First aid kit,Shared pool,Air conditioning,Dishes and silverware,TV with standard cable
## 489 Hangers,Bed linens,Free dryer \\u2013 In building,Smart lock,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Free washer \\u2013 In building,Long term stays allowed,Elevator,Refrigerator,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 490 Hangers,Bed linens,Washer,Hair dryer,Host greets you,TV,High chair,Dedicated workspace,Crib,Long term stays allowed,Refrigerator,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Breakfast,Extra pillows and blankets,Hot water,Essentials,Air conditioning,Dishes and silverware
## 491 Hangers,Bed linens,Washer,Hair dryer,High chair,Free parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Dryer,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Cable TV,Hot water,Iron,Essentials,Kitchen,Air conditioning,TV with standard cable,Fire extinguisher
## 492 Security cameras on property,Keypad,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,TV,Air conditioning,Dedicated workspace,Dishes and silverware,Iron
## 493 Essentials,Keypad,Kitchen,Cooking basics,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Stove,TV,Air conditioning,Dedicated workspace,Dishes and silverware
## 494 Essentials,Keypad,Kitchen,Cooking basics,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Stove,TV,Air conditioning,Dishes and silverware,Iron
## 495 Keypad,Bed linens,Kitchen,Cooking basics,Long term stays allowed,Washer,Luggage dropoff allowed,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,TV,Air conditioning,Dedicated workspace,Dishes and silverware,Iron,Fire extinguisher
## 496 Hangers,Long term stays allowed,Washer,First aid kit,Wifi,Air conditioning,Smoke alarm,Iron,Fire extinguisher
## 497 Long term stays allowed,Washer,Lock on bedroom door,Dryer,First aid kit,Wifi,Air conditioning,Smoke alarm,Iron,Fire extinguisher
## 498 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,High chair,Dedicated workspace,Pool,Crib,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Refrigerator,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Stove,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 499 Hangers,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Free parking on premises,Crib,Long term stays allowed,Private entrance,Elevator,Refrigerator,Microwave,Free street parking,Wifi,Smoke alarm,Shampoo,Shared patio or balcony,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 500 Indoor fireplace,Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,Dedicated workspace,Pool,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 501 Shampoo,Essentials,Hangers,Luggage dropoff allowed,Hair dryer,Elevator,Refrigerator,Wifi,Pool,TV,Air conditioning,Free parking on premises,Smoke alarm,Iron
## 502 Shampoo,Essentials,Kitchen,Long term stays allowed,Private entrance,Hair dryer,Lock on bedroom door,First aid kit,Wifi,TV,Air conditioning,Smoke alarm,Iron,Fire extinguisher
## 503 Hangers,Bed linens,Cooking basics,Washer,Single level home,Carbon monoxide alarm,Hair dryer,High chair,Dedicated workspace,Free parking on premises,Crib,Room-darkening shades,Pool,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Cable TV,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 504 Building staff,Security cameras on property,Hangers,Dedicated workspace,Paid parking off premises,Luggage dropoff allowed,Carbon monoxide alarm,Elevator,First aid kit,Wifi,Children\\u2019s books and toys,Smoke alarm,Iron,Fire extinguisher
## 505 Dining table,Hangers,Bed linens,Kitchen,Long term stays allowed,Washer,Hair dryer,Cable TV,Refrigerator,Dryer,Wifi,Microwave,Air conditioning,Dedicated workspace,Smoke alarm,TV with standard cable,Iron
## 506 Hangers,Bed linens,Free dryer \\u2013 In building,Smart lock,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Free washer \\u2013 In building,Long term stays allowed,Elevator,Refrigerator,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 507 Shampoo,Essentials,Hangers,Bed linens,Luggage dropoff allowed,Hair dryer,Elevator,Refrigerator,Wifi,Hot water,Pool,TV,Air conditioning,Free parking on premises,Smoke alarm,Iron
## 508 Kitchen,Long term stays allowed,Private entrance,Hair dryer,Elevator,Wifi,Hot water,Gym,TV,Air conditioning,Dedicated workspace,Pool,Iron
## 509 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Host greets you,Oven,TV,Dedicated workspace,Long term stays allowed,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Dishwasher,Extra pillows and blankets,Heating,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware
## 510 Backyard,Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,TV,Paid parking on premises,Dedicated workspace,Pool,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Microwave,Gym,Wifi,Shampoo,Extra pillows and blankets,Paid parking off premises,Hot water,Stove,BBQ grill,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 511 Shampoo,Essentials,Hangers,Bed linens,Kitchen,Long term stays allowed,Washer,Luggage dropoff allowed,Hair dryer,Refrigerator,Dryer,Wifi,Microwave,Stove,TV,Air conditioning,Dedicated workspace,Shower gel,Iron,Fire extinguisher
## 512 Shampoo,Essentials,Kitchen,Long term stays allowed,Private entrance,Hair dryer,Lock on bedroom door,First aid kit,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Fire extinguisher
## 513 Hangers,Bed linens,Hair dryer,Host greets you,TV,Paid parking on premises,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Microwave,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 514 Shampoo,Essentials,Kitchen,Long term stays allowed,Private entrance,Hair dryer,Lock on bedroom door,First aid kit,Wifi,TV,Air conditioning,Smoke alarm,Iron,Fire extinguisher
## 515 Shampoo,TV,Bed linens,Kitchen,Long term stays allowed,Hair dryer,Lock on bedroom door,Wifi,Hot water,Body soap,Air conditioning,Smoke alarm
## 516 Building staff,Essentials,Kitchen,Hot water kettle,Long term stays allowed,Washer,Luggage dropoff allowed,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Microwave,Stove,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron
## 517 Toaster,Bidet,Safe,Hangers,Bed linens,Freezer,Free dryer \\u2013 In building,Carbon monoxide alarm,Hair dryer,Clothing storage,Host greets you,Dedicated workspace,Wine glasses,Security cameras on property,Free washer \\u2013 In building,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Microwave,Paid street parking off premises,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Stove,Iron,Essentials,TV with Apple TV,Kitchen,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 518 Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Elevator,Dryer,Wifi,Gym,TV,Air conditioning,Dedicated workspace,Pool,Iron
## 519 Hangers,Bed linens,Cooking basics,Washer,Single level home,Carbon monoxide alarm,Hair dryer,High chair,Dedicated workspace,Free parking on premises,Crib,Room-darkening shades,Pool,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Cable TV,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 520 Hangers,Bed linens,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Security cameras on property,Long term stays allowed,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Essentials,Kitchen,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 521 Hangers,Bed linens,Cooking basics,Washer,Single level home,Carbon monoxide alarm,Hair dryer,High chair,Dedicated workspace,Free parking on premises,Crib,Room-darkening shades,Pool,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Cable TV,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 522 Security cameras on property,Keypad,Kitchen,Cooking basics,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Stove,TV,Air conditioning,Dishes and silverware
## 523 Backyard,Bed linens,Cooking basics,Washer,Hair dryer,Host greets you,Oven,Dedicated workspace,Pool,Crib,Long term stays allowed,Private entrance,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Extra pillows and blankets,Heating,Cable TV,Hot water,Stove,BBQ grill,Iron,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 524 Hangers,Cooking basics,Washer,Hair dryer,Host greets you,TV,Pool,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Shampoo,Hot water,Beach essentials,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 525 Shampoo,Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Dryer,Wifi,Free parking on premises,TV,Air conditioning,Dedicated workspace,Pool,Iron
## 526 Shampoo,Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Dryer,Wifi,Free parking on premises,TV,Air conditioning,Dedicated workspace,Pool,Iron
## 527 Shampoo,Building staff,Essentials,Hangers,Heating,Long term stays allowed,Carbon monoxide alarm,Hair dryer,Lock on bedroom door,First aid kit,Wifi,Free parking on premises,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 528 Hangers,Washer,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Elevator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Heating,Mini fridge,Stove,Iron,Building staff,Essentials,Kitchen,Air conditioning
## 529 Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Elevator,Dryer,Wifi,Gym,TV,Air conditioning,Dedicated workspace,Pool,Iron
## 530 Shampoo,Essentials,Indoor fireplace,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Wifi,Hot water,Free parking on premises,Hot tub,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron
## 531 Hangers,Cooking basics,Washer,Hair dryer,TV,Dedicated workspace,Cleaning products,Long term stays allowed,Private entrance,Patio or balcony,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Heating,Paid parking off premises,Hot water,Stove,Body soap,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 532 Hangers,Washer,Hair dryer,Host greets you,TV,Paid parking on premises,High chair,Dedicated workspace,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Dryer,Wifi,Shampoo,Hot tub,Hot water,Iron,Essentials,First aid kit,Air conditioning
## 533 Hangers,Washer,Carbon monoxide alarm,Hair dryer,Lockbox,Dedicated workspace,Security cameras on property,Long term stays allowed,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,Microwave,Free street parking,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Paid parking off premises,Hot water,Shower gel,Essentials,Air conditioning,Dishes and silverware,Fire extinguisher
## 534 Shampoo,Essentials,Hangers,Keypad,Kitchen,Long term stays allowed,Washer,Hair dryer,Refrigerator,Dryer,Wifi,Microwave,Dishes and silverware,Gym,TV,Pool,Air conditioning,Free parking on premises,Smoke alarm,Iron
## 535 Backyard,Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,TV,Paid parking on premises,Dedicated workspace,Pool,Long term stays allowed,Patio or balcony,Refrigerator,Microwave,Gym,Wifi,Shampoo,Conditioner,Paid parking off premises,Barbecue utensils,Hot water,Stove,Body soap,BBQ grill,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 536 Hangers,Bed linens,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Heating,Cable TV,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 537 Toaster,Hangers,Bed linens,Hot water kettle,Free dryer \\u2013 In building,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Wine glasses,Security cameras on property,Free washer \\u2013 In building,Long term stays allowed,Lock on bedroom door,Refrigerator,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Induction stove,Hot water,Iron,Essentials,Kitchen,Air conditioning,Shower gel,Fire extinguisher
## 538 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Host greets you,TV,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Stove,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 539 Toaster,Bidet,Hangers,Bed linens,Hot water kettle,Cooking basics,Freezer,Washer,Single level home,Hair dryer,Shared fenced garden or backyard,Host greets you,Oven,Dining table,Dedicated workspace,Free parking on premises,Cleaning products,Long term stays allowed,Drying rack for clothing,Laundromat nearby,Elevator,Refrigerator,Microwave,Gym,Wifi,Paid parking lot on premises \\u2013 1 space,Shampoo,Free dryer \\u2013 In unit,Extra pillows and blankets,Cable TV,Hot water,Stove,Body soap,Iron,Essentials,Clothing storage: closet,Kitchen,Dishes and silverware,Shared pool,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 540 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 541 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Wifi,Hot water,TV,Air conditioning,Iron
## 542 Hangers,Washer,Hair dryer,TV,Free parking on premises,Pool,Children\\u2019s books and toys,Dedicated workspace,Long term stays allowed,Elevator,Microwave,Gym,Wifi,Shampoo,Keypad,Hot water,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 543 Cleaning before checkout,Backyard,Hangers,Bed linens,Cooking basics,Washer,Single level home,Bathtub,Hair dryer,Ethernet connection,Paid parking on premises,Dedicated workspace,Crib,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Extra pillows and blankets,Heating,Cable TV,Hot tub,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 544 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Host greets you,Oven,TV,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Elevator,Refrigerator,Dryer,Gym,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 545 Backyard,Hangers,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Free parking on premises,Pool,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Patio or balcony,Dryer,Gym,Free street parking,Wifi,Smoke alarm,Shampoo,Keypad,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 546 Hangers,Washer,Hair dryer,High chair,Pool,Crib,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Stove,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 547 Bidet,Backyard,Hangers,Bed linens,Hot water kettle,Freezer,Cooking basics,Washer,Hair dryer,Bathtub,Clothing storage,Ethernet connection,TV,Lockbox,Dining table,Dedicated workspace,Free parking on premises,Room-darkening shades,Cleaning products,Wine glasses,Long term stays allowed,Laundromat nearby,Private entrance,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Conditioner,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 548 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Keypad,Heating,Hot water,Stove,Iron,Kitchen,Air conditioning,Dishes and silverware
## 549 Bed linens,Cooking basics,Washer,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Keypad,Heating,Hot water,Stove,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 550 Shampoo,Essentials,Smoke alarm,Hangers,Bed linens,Paid parking off premises,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Cable TV,Lock on bedroom door,Wifi,Hot water,Body soap,Air conditioning,Dedicated workspace,Shower gel,TV with standard cable,Luggage dropoff allowed
## 551 Shampoo,Essentials,Smoke alarm,Hangers,Bed linens,Paid parking off premises,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Cable TV,Lock on bedroom door,Wifi,Hot water,Body soap,Air conditioning,Dedicated workspace,Shower gel,TV with standard cable,Luggage dropoff allowed
## 552 Shampoo,Essentials,Smoke alarm,Hangers,Bed linens,Paid parking off premises,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Cable TV,Lock on bedroom door,Wifi,Hot water,Body soap,Air conditioning,Dedicated workspace,Shower gel,TV with standard cable,Luggage dropoff allowed
## 553 Hangers,Cooking basics,Washer,Hair dryer,TV,Lockbox,High chair,Dedicated workspace,Free parking on premises,Crib,Security cameras on property,Long term stays allowed,Elevator,Refrigerator,Microwave,Baby bath,Free street parking,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,Private patio or balcony,Air conditioning,Dishes and silverware,Fire extinguisher
## 554 Backyard,Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Single level home,Bathtub,Hair dryer,Ethernet connection,Paid parking on premises,Dedicated workspace,Crib,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Extra pillows and blankets,Heating,Cable TV,Hot tub,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 555 Cleaning before checkout,Backyard,Hangers,Bed linens,Cooking basics,Washer,Single level home,Bathtub,Hair dryer,Ethernet connection,Paid parking on premises,Dedicated workspace,Crib,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Extra pillows and blankets,Heating,Cable TV,Hot tub,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 556 Backyard,Hangers,Bed linens,Cooking basics,Washer,Bathtub,Hair dryer,Ethernet connection,Paid parking on premises,Dedicated workspace,Crib,Security cameras on property,Long term stays allowed,Private entrance,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Breakfast,Extra pillows and blankets,Heating,Cable TV,Hot tub,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 557 Backyard,Hangers,Bed linens,Cooking basics,Washer,Single level home,Bathtub,Hair dryer,Ethernet connection,Paid parking on premises,Dedicated workspace,Crib,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Extra pillows and blankets,Heating,Cable TV,Hot tub,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 558 Cleaning before checkout,Backyard,Hangers,Bed linens,Cooking basics,Washer,Single level home,Bathtub,Hair dryer,Ethernet connection,Paid parking on premises,Dedicated workspace,Crib,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Extra pillows and blankets,Heating,Cable TV,Hot tub,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 559 Backyard,Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,Ethernet connection,Paid parking on premises,Dedicated workspace,Crib,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Extra pillows and blankets,Heating,Cable TV,Hot tub,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 560 Cleaning before checkout,Backyard,Hangers,Bed linens,Cooking basics,Washer,Single level home,Bathtub,Hair dryer,Ethernet connection,Paid parking on premises,Dedicated workspace,Crib,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Extra pillows and blankets,Heating,Cable TV,Hot tub,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable
## 561 Backyard,Hangers,Bed linens,Cooking basics,Washer,Bathtub,Hair dryer,Ethernet connection,Dedicated workspace,Crib,Security cameras on property,Long term stays allowed,Private entrance,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Breakfast,Extra pillows and blankets,Heating,Cable TV,Hot tub,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 562 Hangers,Hair dryer,Host greets you,Oven,TV,Paid parking on premises,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Microwave,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 563 Hangers,Bed linens,Hair dryer,Host greets you,TV,Paid parking on premises,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Microwave,Wifi,Smoke alarm,Shampoo,Hot water,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 564 Backyard,Hangers,Bed linens,Cooking basics,Washer,Bathtub,Hair dryer,Ethernet connection,Paid parking on premises,Dedicated workspace,Crib,Security cameras on property,Long term stays allowed,Private entrance,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Breakfast,Extra pillows and blankets,Heating,Cable TV,Hot tub,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 565 Cleaning before checkout,Hangers,Washer,TV,Dedicated workspace,Security cameras on property,Long term stays allowed,Lock on bedroom door,Refrigerator,Dryer,Wifi,Shampoo,Hot water,Stove,Shower gel,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 566 Cleaning before checkout,Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,Ethernet connection,Paid parking on premises,Dedicated workspace,Crib,Security cameras on property,Long term stays allowed,Private entrance,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Extra pillows and blankets,Heating,Cable TV,Hot tub,Hot water,Iron,Building staff,Essentials,Kitchen,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable
## 567 Rice maker,Sound system,Toaster,Panasonic conditioner,Cleaning before checkout,Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Single level home,Bathtub,Hair dryer,Shared fenced garden or backyard,TV,Dedicated workspace,Free parking on premises,Room-darkening shades,Pool,Cleaning products,Long term stays allowed,Drying rack for clothing,Private entrance,Elevator,Patio or balcony,Gym,Free street parking,Wifi,Mix body soap,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Heating,LG refrigerator,Hot tub,Hot water,Stove,Clothing storage: wardrobe and closet,Iron,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 568 Shampoo,Essentials,Kitchen,Long term stays allowed,Private entrance,Hair dryer,Lock on bedroom door,First aid kit,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Fire extinguisher
## 569 Bidet,Safe,Backyard,Cleaning before checkout,Hangers,Bed linens,Hot water kettle,Freezer,Cooking basics,Washer,Single level home,Bathtub,Hair dryer,Ethernet connection,Paid parking on premises,Dedicated workspace,Room-darkening shades,Crib,Long term stays allowed,Drying rack for clothing,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,In-House Brand body soap,Breakfast,Extra pillows and blankets,Heating,Cable TV,Hot tub,Hot water,Stove,Shared sauna,Iron,Building staff,Essentials,Clothing storage: closet,Kitchen,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable
## 570 Bidet,Safe,Backyard,Hangers,Bed linens,Hot water kettle,Freezer,Coffee maker,Washer,Cooking basics,Single level home,Bathtub,Hair dryer,Ethernet connection,Paid parking on premises,Dedicated workspace,Room-darkening shades,Crib,Long term stays allowed,Drying rack for clothing,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Extra pillows and blankets,Heating,Cable TV,Hot tub,Hot water,Stove,Body soap,Shared sauna,Iron,Building staff,Essentials,Clothing storage: closet,Kitchen,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable
## 571 Backyard,Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,Ethernet connection,Paid parking on premises,Dedicated workspace,Free parking on premises,Crib,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Extra pillows and blankets,Heating,Cable TV,Hot tub,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 572 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,Free parking on premises,Dedicated workspace,Long term stays allowed,Dryer,Microwave,Wifi,Shampoo,Extra pillows and blankets,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware
## 573 Cleaning before checkout,Hangers,Bed linens,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Heating,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 574 Hangers,Bed linens,Hair dryer,Host greets you,TV,Paid parking on premises,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Microwave,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 575 Hangers,Bed linens,Hair dryer,Host greets you,TV,Paid parking on premises,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Microwave,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 576 Hangers,Bed linens,Hair dryer,Host greets you,TV,Paid parking on premises,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Microwave,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 577 Hangers,Bed linens,Hair dryer,Host greets you,TV,Paid parking on premises,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Microwave,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 578 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Heating,Hot water,Stove,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 579 Shampoo,Bidet,Essentials,Safe,Hangers,Free washer \\u2013 In building,Free dryer \\u2013 In building,Long term stays allowed,Hair dryer,TV with Netflix,Wifi,Air conditioning,Dedicated workspace,Shower gel,Iron
## 580 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Stove,Iron,Building staff,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 581 Hangers,Bed linens,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Heating,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 582 Backyard,Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,TV,Paid parking on premises,Dedicated workspace,Pool,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Gym,Wifi,Shampoo,Extra pillows and blankets,Paid parking off premises,Hot water,Stove,BBQ grill,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 583 Security cameras on property,Kitchen,Long term stays allowed,Washer,Lock on bedroom door,Wifi,TV,Air conditioning,Smoke alarm,Fire extinguisher
## 584 Backyard,Hangers,Bed linens,Coffee maker,Washer,Hair dryer,Host greets you,Dedicated workspace,Game console,Long term stays allowed,Patio or balcony,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 585 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 586 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 587 Hangers,Washer,Hair dryer,TV,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 588 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Host greets you,TV,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Stove,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 589 Hangers,Cooking basics,Washer,Hair dryer,TV,High chair,Pool,Crib,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Stove,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 590 Hangers,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Lock on bedroom door,Refrigerator,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Dishwasher,Hot water,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 591 Long term stays allowed,Host greets you
## 592 Hangers,Bed linens,Cooking basics,Washer,Bathtub,Hair dryer,Host greets you,Oven,Dedicated workspace,Pool,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Microwave,Wifi,Shampoo,Extra pillows and blankets,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 593 Hangers,Cooking basics,Washer,Smart lock,Hair dryer,Shared fenced garden or backyard,Oven,Outdoor furniture,TV,Dedicated workspace,Free parking on premises,Long term stays allowed,Outdoor dining area,Refrigerator,Dryer,Microwave,Gym,Wifi,Shampoo,Heating,Hot water,Stove,BBQ grill,Iron,Essentials,Kitchen,Private patio or balcony,Shared pool,Air conditioning,Dishes and silverware
## 594 Backyard,Hangers,Bed linens,Washer,Hair dryer,TV,Free parking on premises,Pool,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Shampoo,Heating,Hot water,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 595 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Hair dryer,Host greets you,Oven,TV,Dedicated workspace,Pool,Security cameras on property,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Gym,Wifi,Shampoo,Extra pillows and blankets,Heating,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 596 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Cable TV,Elevator,Dryer,First aid kit,Wifi,Free parking on premises,Gym,Air conditioning,Dedicated workspace,Pool,TV with standard cable
## 597 Hangers,Kitchen,Long term stays allowed,Washer,Carbon monoxide alarm,Private entrance,Elevator,Host greets you,Dryer,Wifi,Hot water,Free parking on premises,Gym,TV,Pool,Air conditioning,Dedicated workspace,Smoke alarm,Iron
## 598 Hangers,Bed linens,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Long term stays allowed,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Iron,Essentials,Kitchen,Air conditioning,Shower gel,Fire extinguisher
## 599 Shampoo,Essentials,Hangers,Keypad,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Stove,TV,Air conditioning,Dedicated workspace,Dishes and silverware,Iron
## 600 Hangers,Bed linens,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Room-darkening shades,Long term stays allowed,Private entrance,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Keypad,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 601 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Extra pillows and blankets,Heating,Hot water,Stove,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 602 Essentials,Security cameras on property,Keypad,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Stove,TV,Air conditioning,Dishes and silverware,Iron
## 603 Hangers,Cooking basics,Washer,Single level home,Hair dryer,Host greets you,TV,Paid parking on premises,Children\\u2019s books and toys,Long term stays allowed,Drying rack for clothing,Elevator,Lock on bedroom door,Refrigerator,Patio or balcony,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Hot water,Stove,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 604 Backyard,Hangers,Hot water kettle,Washer,Hair dryer,TV,Dedicated workspace,Free parking on premises,Pool,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,Microwave,Wifi,Shampoo,Heating,Hot water,Iron,Bread maker,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 605 Shampoo,Breakfast,Essentials,Hangers,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Lock on bedroom door,Dryer,Wifi,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 606 Hangers,Washer,Hair dryer,Dedicated workspace,Long term stays allowed,Patio or balcony,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Breakfast,Paid parking off premises,Hot water,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 607 Shampoo,Essentials,Kitchen,Washer,Hair dryer,Elevator,First aid kit,Air conditioning,Dedicated workspace,Iron
## 608 Essentials,Hangers,Coffee maker,Kitchen,Cooking basics,Keypad,Washer,Long term stays allowed,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,TV,Air conditioning,Dedicated workspace,Dishes and silverware,Iron
## 609 Hangers,Keypad,Heating,Kitchen,Cooking basics,Washer,Long term stays allowed,Private entrance,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,TV,Air conditioning,Dishes and silverware
## 610 Essentials,Heating,Paid parking off premises,Long term stays allowed,Elevator,Lock on bedroom door,Wifi,Air conditioning,Luggage dropoff allowed
## 611 Shampoo,Essentials,Hangers,Kitchen,Cooking basics,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Free parking on premises,TV,Air conditioning,Dedicated workspace,Iron,Fire extinguisher
## 612 Shampoo,Essentials,Hangers,Kitchen,Cooking basics,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Elevator,Dryer,First aid kit,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 613 Shampoo,Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Dryer,Wifi,Free parking on premises,TV,Air conditioning,Dedicated workspace,Pool,Iron
## 614 Shampoo,Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Dryer,Wifi,Free parking on premises,TV,Air conditioning,Dedicated workspace,Pool,Iron
## 615 Hangers,Keypad,Heating,Kitchen,Long term stays allowed,Washer,Private entrance,Hair dryer,Elevator,Dryer,Wifi,Dishes and silverware,TV,Air conditioning,Smoke alarm
## 616 Shampoo,Essentials,Hangers,Kitchen,Cooking basics,Long term stays allowed,Washer,Private entrance,Hair dryer,Elevator,Dryer,First aid kit,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 617 Shampoo,Essentials,Hangers,Kitchen,Cooking basics,Long term stays allowed,Washer,Hair dryer,Dryer,Wifi,TV,Air conditioning,Iron
## 618 Hot water kettle,Washer,Carbon monoxide alarm,TV,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Paid parking off premises,Hot water,Shower gel,Essentials,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 619 Hot water kettle,Washer,Carbon monoxide alarm,TV,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Paid parking off premises,Shower gel,Essentials,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 620 Hangers,Bed linens,Cooking basics,Washer,Single level home,Free parking on premises,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Gym,Wifi,Smoke alarm,Heating,Cable TV,Hot water,Stove,BBQ grill,Iron,Kitchen,Private patio or balcony,Shared pool,Air conditioning,TV with standard cable,Fire extinguisher
## 621 Hangers,Washer,Hair dryer,Host greets you,TV,Paid parking on premises,Dedicated workspace,Pool,Long term stays allowed,Elevator,Dryer,Gym,Wifi,Shampoo,Breakfast,Paid parking off premises,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning
## 622 Shampoo,Breakfast,Essentials,Security cameras on property,Hangers,Kitchen,Washer,Hair dryer,Lock on bedroom door,Dryer,Wifi,Air conditioning,Smoke alarm,Iron,Fire extinguisher
## 623 Shampoo,Essentials,Hangers,Bed linens,Luggage dropoff allowed,Hair dryer,Elevator,Wifi,Hot water,Pool,TV,Air conditioning,Free parking on premises,Smoke alarm,Iron
## 624 Shampoo,Essentials,Hangers,Bed linens,Luggage dropoff allowed,Hair dryer,Elevator,Refrigerator,Wifi,Hot water,Pool,TV,Air conditioning,Free parking on premises,Smoke alarm,Iron
## 625 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Gym,TV,Air conditioning,Pool,Iron,Fire extinguisher
## 626 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Elevator,Host greets you,Refrigerator,Oven,Wifi,Hot water,Stove,Microwave,TV,Paid parking on premises,Air conditioning,Dedicated workspace,Dishes and silverware,Iron
## 627 Hangers,Hot water kettle,Washer,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Paid parking off premises,Hot water,Shower gel,Essentials,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 628 Backyard,Hangers,Cooking basics,Washer,Single level home,Hair dryer,TV,Paid parking on premises,Dedicated workspace,Pool,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Microwave,Gym,Wifi,Shampoo,Extra pillows and blankets,Paid parking off premises,Hot water,Stove,BBQ grill,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 629 Shampoo,Essentials,Hangers,Kitchen,Hot water kettle,Long term stays allowed,Washer,Luggage dropoff allowed,Hair dryer,Dryer,Wifi,Mini fridge,Stove,Microwave,TV,Air conditioning,Dedicated workspace,Iron,Fire extinguisher
## 630 Rice maker,Bidet,Hangers,Bed linens,Hot water kettle,Freezer,Coffee maker,Washer,Cooking basics,Single level home,Bathtub,Hair dryer,Clothing storage,Fire pit,Oven,Ethernet connection,Baking sheet,Dining table,Dedicated workspace,Wine glasses,Sound Bar | Bose bluetooth speaker Bluetooth sound system,Long term stays allowed,Drying rack for clothing,Private entrance,Elevator,Refrigerator,Paid parking lot on premises \\u2013 100 spaces,Microwave,Waterfront,Free street parking,Beachfront,Luggage dropoff allowed,Shampoo,Fast wifi \\u2013 366 Mbps,Free dryer \\u2013 In unit,Extra pillows and blankets,Keypad,Conditioner,Barbecue utensils,Cable TV,Hot water,Mini fridge,Stove,Body soap,Bikes,Beach essentials,BBQ grill,Iron,Essentials,Shared gym nearby,Kitchen,Game console: PS4,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable
## 631 Backyard,Hangers,Cooking basics,Washer,Single level home,Hair dryer,Oven,TV,Lockbox,Dedicated workspace,Room-darkening shades,Long term stays allowed,Private entrance,Patio or balcony,Refrigerator,Free street parking,Wifi,Luggage dropoff allowed,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 632 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,High chair,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 633 Hangers,Bed linens,Washer,Hair dryer,High chair,Free parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Dryer,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Cable TV,Hot water,Iron,Essentials,Kitchen,Air conditioning,TV with standard cable,Fire extinguisher
## 634 Hangers,Bed linens,Washer,Hair dryer,High chair,Free parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Cable TV,Hot water,Iron,Essentials,Kitchen,Air conditioning,TV with standard cable,Fire extinguisher
## 635 Hangers,Cooking basics,Washer,Hair dryer,Host greets you,TV,Paid parking on premises,Dedicated workspace,Free parking on premises,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Heating,Hot water,Stove,Iron,Essentials,Kitchen,EV charger,First aid kit,Air conditioning,Dishes and silverware
## 636 Hangers,Bed linens,Cooking basics,Washer,Single level home,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Free parking on premises,Crib,Room-darkening shades,Pool,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 637 Hangers,Bed linens,Washer,Hair dryer,Oven,TV,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 638 Hangers,Hair dryer,Host greets you,Oven,TV,Paid parking on premises,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Microwave,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 639 Hangers,Hair dryer,Host greets you,Oven,TV,Paid parking on premises,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Microwave,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 640 Shampoo,Building staff,Essentials,Hangers,Bed linens,Paid parking off premises,Long term stays allowed,Luggage dropoff allowed,Hair dryer,Cable TV,Elevator,First aid kit,Wifi,Hot water,Air conditioning,Dedicated workspace,TV with standard cable,Iron,Fire extinguisher
## 641 Cleaning before checkout,Hangers,Bed linens,Cooking basics,Washer,Single level home,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Free parking on premises,Room-darkening shades,Long term stays allowed,Private entrance,Elevator,Refrigerator,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Keypad,Heating,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Dishes and silverware,Shared pool,Air conditioning,Shower gel,Fire extinguisher
## 642 Hangers,Washer,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Dryer,Wifi,Smoke alarm,Shampoo,Keypad,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 643 Hangers,Cooking basics,Washer,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Dryer,Wifi,Smoke alarm,Shampoo,Dishwasher,Keypad,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 644 Essentials,Hangers,Keypad,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Stove,TV,Air conditioning,Dedicated workspace,Dishes and silverware,Iron
## 645 Shampoo,Essentials,Hangers,Bed linens,Luggage dropoff allowed,Hair dryer,Elevator,Refrigerator,Wifi,Hot water,Pool,TV,Air conditioning,Free parking on premises,Smoke alarm,Iron
## 646 Security cameras on property,Hangers,Keypad,Kitchen,Cooking basics,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Hot water,Dishes and silverware,TV,Air conditioning,Smoke alarm
## 647 Backyard,Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,Oven,TV,Paid parking on premises,Dedicated workspace,Pool,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Microwave,Gym,Wifi,Shampoo,Extra pillows and blankets,Paid parking off premises,Barbecue utensils,Hot water,Stove,BBQ grill,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 648 Shampoo,Breakfast,Essentials,Paid parking off premises,Washer,Luggage dropoff allowed,Hair dryer,Patio or balcony,Dryer,First aid kit,Wifi,Hot water,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 649 Shampoo,Building staff,Essentials,Long term stays allowed,Hair dryer,Lock on bedroom door,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Fire extinguisher
## 650 Shampoo,Building staff,Essentials,Long term stays allowed,Hair dryer,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Fire extinguisher
## 651 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Extra pillows and blankets,Heating,Hot water,Stove,Iron,Building staff,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 652 Essentials,Keypad,Kitchen,Long term stays allowed,Washer,Private entrance,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Stove,TV,Air conditioning,Dedicated workspace,Iron
## 653 Long term stays allowed,Washer,Lock on bedroom door,Dryer,First aid kit,Wifi,Air conditioning,Smoke alarm,Iron,Fire extinguisher
## 654 Hangers,Bed linens,Washer,Carbon monoxide alarm,Hair dryer,Free parking on premises,Dedicated workspace,Long term stays allowed,Elevator,Dryer,Wifi,Smoke alarm,Extra pillows and blankets,Cable TV,Hot water,Iron,Building staff,Essentials,Kitchen,Air conditioning,TV with standard cable,Fire extinguisher
## 655 Shampoo,Breakfast,Essentials,Hangers,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Elevator,Dryer,First aid kit,Wifi,Air conditioning,Smoke alarm,Iron,Fire extinguisher
## 656 Hangers,Bed linens,Washer,Carbon monoxide alarm,Hair dryer,Free parking on premises,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Extra pillows and blankets,Cable TV,Hot water,Iron,Building staff,Essentials,Kitchen,Air conditioning,TV with standard cable,Fire extinguisher
## 657 Shampoo,Building staff,Essentials,Hangers,Paid parking off premises,Long term stays allowed,Hair dryer,Lock on bedroom door,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Smoke alarm,Luggage dropoff allowed
## 658 Shampoo,Building staff,Essentials,Long term stays allowed,Hair dryer,Lock on bedroom door,Elevator,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Smoke alarm,Luggage dropoff allowed
## 659 Shampoo,Building staff,Essentials,Hangers,Paid parking off premises,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Elevator,Dryer,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Smoke alarm,Luggage dropoff allowed
## 660 Shampoo,Building staff,Essentials,Hangers,Paid parking off premises,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Elevator,Dryer,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Smoke alarm,Luggage dropoff allowed
## 661 Shampoo,Building staff,Essentials,Paid parking off premises,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Elevator,Dryer,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Smoke alarm,Luggage dropoff allowed
## 662 Shampoo,Building staff,Essentials,Hangers,Paid parking off premises,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Elevator,Dryer,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Smoke alarm,Luggage dropoff allowed
## 663 Hangers,Cooking basics,Washer,Hair dryer,TV,Lockbox,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Refrigerator,Dryer,Microwave,Wifi,Shampoo,Breakfast,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 664 Backyard,Hangers,Bed linens,Washer,Hair dryer,Oven,Dedicated workspace,Free parking on premises,Security cameras on property,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Gym,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Cable TV,Hot water,Iron,Building staff,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 665 Shampoo,Essentials,Kitchen,Long term stays allowed,Hair dryer,Lock on bedroom door,First aid kit,Wifi,TV,Air conditioning,Smoke alarm,Fire extinguisher
## 666 Shampoo,Essentials,Kitchen,Long term stays allowed,Private entrance,Hair dryer,Lock on bedroom door,First aid kit,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Fire extinguisher
## 667 Essentials,Long term stays allowed,Washer,Private entrance,Hair dryer,Lock on bedroom door,Dryer,First aid kit,Wifi,TV,Air conditioning,Smoke alarm,Iron,Fire extinguisher
## 668 Shampoo,TV,Bed linens,Kitchen,Long term stays allowed,Hair dryer,Lock on bedroom door,Wifi,Hot water,Body soap,Air conditioning,Smoke alarm
## 669 Security cameras on property,Long term stays allowed,Hair dryer,Lock on bedroom door,Elevator,Wifi,TV,Air conditioning,Smoke alarm,Fire extinguisher
## 670 Hangers,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,TV,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Shampoo,Heating,Hot water,Stove,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware
## 671 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,Dedicated workspace,Pool,Crib,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 672 Indoor fireplace,Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Host greets you,Oven,TV,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Stove,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 673 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 674 Shampoo,Breakfast,Indoor fireplace,Security cameras on property,Long term stays allowed,Hair dryer,Dryer,Wifi,Air conditioning,Smoke alarm,Iron,Fire extinguisher
## 675 Hangers,Bed linens,Hair dryer,Host greets you,TV,Paid parking on premises,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Microwave,Wifi,Shampoo,Hot water,Stove,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 676 Shampoo,Essentials,Smoke alarm,Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Dryer,First aid kit,Wifi,Hot water,TV,Air conditioning,Shower gel,Iron,Fire extinguisher
## 677 Shampoo,TV,Bed linens,Long term stays allowed,Smart lock,Hair dryer,Lock on bedroom door,Wifi,Hot water,Body soap,Air conditioning,Dedicated workspace,Smoke alarm
## 678 Shampoo,Essentials,Smoke alarm,Hangers,Bed linens,Hot water kettle,Paid street parking off premises,Long term stays allowed,Carbon monoxide alarm,Hair dryer,Lock on bedroom door,Elevator,Wifi,Hot water,Pool,TV,Air conditioning,Shower gel,Luggage dropoff allowed
## 679 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Heating,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 680 Hangers,Bed linens,Washer,Single level home,Hair dryer,Oven,TV,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Shampoo,Extra pillows and blankets,Paid parking off premises,Hot water,Stove,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 681 Essentials,Security cameras on property,Keypad,Kitchen,Cooking basics,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Stove,TV,Air conditioning,Dishes and silverware,Iron
## 682 Hangers,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Free parking on premises,Crib,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Refrigerator,Microwave,Free street parking,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,Private patio or balcony,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 683 Hangers,Bed linens,Hair dryer,Host greets you,TV,Paid parking on premises,Dedicated workspace,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Microwave,Wifi,Shampoo,Hot water,Stove,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 684 Shampoo,Essentials,Kitchen,Long term stays allowed,Private entrance,Hair dryer,Lock on bedroom door,First aid kit,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Fire extinguisher
## 685 Hangers,Free dryer \\u2013 In building,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Free washer \\u2013 In building,Long term stays allowed,Lock on bedroom door,Refrigerator,Microwave,Wifi,Smoke alarm,Shampoo,Induction stove,Hot water,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 686 Hangers,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Free parking on premises,Crib,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Refrigerator,Microwave,Free street parking,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,Private patio or balcony,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 687 Shampoo,Essentials,Long term stays allowed,Washer,Private entrance,Hair dryer,Lock on bedroom door,Dryer,First aid kit,Wifi,TV,Air conditioning,Smoke alarm,Iron,Fire extinguisher
## 688 Shampoo,Essentials,Kitchen,Cooking basics,Long term stays allowed,Washer,Private entrance,Elevator,Wifi,Gym,TV,Air conditioning,Pool
## 689 Building staff,Essentials,Backyard,Hangers,Kitchen,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Cable TV,Elevator,Dryer,Wifi,Free parking on premises,Air conditioning,Dedicated workspace,Smoke alarm,TV with standard cable,Iron,Fire extinguisher
## 690 Cleaning before checkout,Hangers,Bed linens,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Heating,Cable TV,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 691 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Stove,Iron,Building staff,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 692 Hangers,Bed linens,Coffee maker,Washer,Hair dryer,TV,Free parking on premises,Dedicated workspace,Room-darkening shades,Pool,Long term stays allowed,Elevator,Lock on bedroom door,Patio or balcony,Dryer,Microwave,Gym,Wifi,Extra pillows and blankets,Heating,Hot water,Iron,Essentials,Air conditioning,Dishes and silverware
## 693 Indoor fireplace,Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Host greets you,TV,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Stove,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 694 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,High chair,Dedicated workspace,Pool,Crib,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Stove,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 695 Shampoo,Essentials,Indoor fireplace,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Hot tub,TV,Air conditioning,Free parking on premises,Smoke alarm,Iron,Fire extinguisher
## 696 Hangers,Kitchen,Long term stays allowed,Hair dryer,Refrigerator,Dryer,Hot water,Microwave,Pool,TV,Wifi,Paid washer \\u2013 In building,Dishes and silverware,Iron
## 697 Backyard,Hangers,Bed linens,Washer,Hair dryer,TV,Free parking on premises,Pool,Long term stays allowed,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Shampoo,Heating,Hot water,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 698 Hangers,Bed linens,Free dryer \\u2013 In building,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Security cameras on property,Free washer \\u2013 In building,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Shower gel,Fire extinguisher
## 699 Backyard,Hangers,Washer,Hair dryer,Oven,TV,Lockbox,Dedicated workspace,Long term stays allowed,Private entrance,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Paid parking off premises,Hot water,Iron,Essentials,Shared pool,Air conditioning,Dishes and silverware
## 700 Hangers,Bed linens,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Long term stays allowed,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Iron,Essentials,Kitchen,Air conditioning,Shower gel,Fire extinguisher
## 701 Hangers,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,TV,High chair,Dedicated workspace,Pool,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Stove,Iron,Building staff,Essentials,Pack \\u2019n play/Travel crib,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 702 Hangers,Bed linens,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Long term stays allowed,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 703 Hangers,Bed linens,Hair dryer,Dedicated workspace,Free parking on premises,Security cameras on property,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Shampoo,Heating,Cable TV,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 704 Hangers,Bed linens,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 705 Hangers,Bed linens,Cooking basics,Washer,Smart lock,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Lock on bedroom door,Refrigerator,Patio or balcony,Microwave,Free street parking,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 706 Indoor fireplace,Hangers,Bed linens,Washer,Hair dryer,Host greets you,TV,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Stove,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 707 Shampoo,Essentials,Heating,Long term stays allowed,Carbon monoxide alarm,First aid kit,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm
## 708 Shampoo,Essentials,Heating,Long term stays allowed,Carbon monoxide alarm,First aid kit,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm
## 709 Hangers,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,Dedicated workspace,Pool,Long term stays allowed,Elevator,Lock on bedroom door,Wifi,Smoke alarm,Shampoo,Breakfast,Hot water,Stove,Essentials,Kitchen,Air conditioning,Fire extinguisher
## 710 Shampoo,Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Wifi,Free parking on premises,TV,Air conditioning,Dedicated workspace,Pool,Iron
## 711 Shampoo,Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Dryer,Wifi,Free parking on premises,TV,Air conditioning,Dedicated workspace,Pool,Iron
## 712 Shampoo,Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Dryer,Wifi,Free parking on premises,TV,Air conditioning,Dedicated workspace,Pool,Iron
## 713 Shampoo,Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Dryer,Wifi,Free parking on premises,TV,Shared pool,Air conditioning,Dedicated workspace,Iron
## 714 Shampoo,Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Dryer,Wifi,Free parking on premises,TV,Air conditioning,Dedicated workspace,Pool,Iron
## 715 Hangers,Cooking basics,Washer,Hair dryer,Host greets you,TV,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Dryer,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Fire extinguisher
## 716 Shampoo,Essentials,Kitchen,Long term stays allowed,Hair dryer,Lock on bedroom door,Elevator,First aid kit,Wifi,TV,Air conditioning,Smoke alarm,Iron,Fire extinguisher
## 717 Backyard,Hangers,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,Lockbox,Children\\u2019s books and toys,Dedicated workspace,Free parking on premises,Long term stays allowed,Private entrance,Refrigerator,Microwave,Free street parking,Wifi,Smoke alarm,Children\\u2019s dinnerware,Luggage dropoff allowed,Shampoo,Cable TV,Hot water,Iron,Essentials,Kitchen,Changing table,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable
## 718 Rice maker,Bidet,Dryer \\u2013 In building,Hangers,Bed linens,Hot water kettle,Freezer,Cooking basics,Single level home,Hair dryer,Lockbox,High chair,Dedicated workspace,Electric stove,Room-darkening shades,Dining table,Cleaning products,Wine glasses,Lake access,Long term stays allowed,Drying rack for clothing,Laundromat nearby,Central air conditioning,Private entrance,Elevator,Refrigerator,Paid parking lot on premises \\u2013 100 spaces,Microwave,TV with Chromecast,Baby bath,Waterfront,Paid street parking off premises,Wifi,Children\\u2019s dinnerware,Smoke alarm,Luggage dropoff allowed,Shampoo,Ceiling fan,Extra pillows and blankets,Portable fans,Conditioner,Hot water,Clothing storage: wardrobe,Body soap,Iron,Essentials,Kitchen,First aid kit,Dishes and silverware,Washer \\u2013\\u00a0In unit,Shower gel
## 719 Essentials,Kitchen,Long term stays allowed,Wifi,Hot water,Air conditioning
## 720 Hangers,Bed linens,Washer,Hair dryer,High chair,Free parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Dryer,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Cable TV,Hot water,Iron,Essentials,Kitchen,Air conditioning,TV with standard cable,Fire extinguisher
## 721 Hangers,Washer,Hair dryer,High chair,Free parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Dryer,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Cable TV,Hot water,Iron,Essentials,Kitchen,Air conditioning,TV with standard cable,Fire extinguisher
## 722 Backyard,Hangers,Hot water kettle,Cooking basics,Washer,Bathtub,Host greets you,Electric stove,Dedicated workspace,Private pool,Long term stays allowed,Outdoor dining area,Elevator,Refrigerator,Microwave,Free street parking,Luggage dropoff allowed,32\\ TV,Free parking garage on premises,Hot water,BBQ grill,Iron,Essentials,Kitchen,Private patio or balcony,Air conditioning,Dishes and silverware
## 723 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Hair dryer,Oven,Ethernet connection,TV,Lockbox,Dedicated workspace,Free parking on premises,Long term stays allowed,Private entrance,Refrigerator,Microwave,Free street parking,Wifi,Smoke alarm,Shampoo,Dishwasher,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 724 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Host greets you,TV,High chair,Dedicated workspace,Pool,Crib,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 725 Hangers,Hair dryer,Host greets you,Oven,TV,Paid parking on premises,Dedicated workspace,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Microwave,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 726 Hangers,Hair dryer,Host greets you,Oven,TV,Paid parking on premises,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Microwave,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 727 Hangers,Bed linens,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,TV,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Heating,Hot water,Stove,Iron,Building staff,Essentials,Pack \\u2019n play/Travel crib,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 728 Hangers,Bed linens,Cooking basics,Washer,Single level home,Carbon monoxide alarm,Hair dryer,Host greets you,Oven,TV,Dedicated workspace,Room-darkening shades,Elevator,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Children\\u2019s dinnerware,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 729 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 730 Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,Oven,TV,Paid parking on premises,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Gym,Wifi,Smoke alarm,Shampoo,Extra pillows and blankets,Heating,Paid parking off premises,Hot water,Stove,Iron,Building staff,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 731 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Ethernet connection,TV,Dedicated workspace,Pool,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Microwave,Gym,Wifi,Shampoo,Extra pillows and blankets,Hot water,Stove,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 732 Shampoo,Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Dryer,Wifi,Pool,Gym,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 733 Shampoo,Breakfast,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Cable TV,Elevator,Dryer,Wifi,Free parking on premises,Hot tub,Gym,Air conditioning,Dedicated workspace,Pool,TV with standard cable,Iron
## 734 Backyard,Hangers,Bed linens,Washer,Carbon monoxide alarm,Hair dryer,Oven,Dedicated workspace,Free parking on premises,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Cable TV,Hot water,Iron,Building staff,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 735 Hangers,Washer,Smart lock,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Pool,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Paid parking off premises,Hot water,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 736 Cleaning before checkout,Hangers,Bed linens,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Heating,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 737 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,Pool,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware
## 738 Shampoo,Essentials,Kitchen,Long term stays allowed,Hair dryer,Lock on bedroom door,First aid kit,Wifi,TV,Air conditioning,Smoke alarm,Fire extinguisher
## 739 Essentials,Hangers,Long term stays allowed,Lock on bedroom door,Wifi,Hot water,Air conditioning,Dedicated workspace
## 740 Hangers,Bed linens,Washer,Hair dryer,Dedicated workspace,Free parking on premises,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Shampoo,Extra pillows and blankets,Heating,Cable TV,Hot water,Iron,Building staff,Essentials,Kitchen,Air conditioning,TV with standard cable,Fire extinguisher
## 741 Hangers,Free dryer \\u2013 In building,Smart lock,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Free washer \\u2013 In building,Long term stays allowed,Elevator,Refrigerator,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Stove,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 742 Hangers,Washer,Smart lock,Carbon monoxide alarm,Hair dryer,TV,Free parking on premises,Pool,Dedicated workspace,Long term stays allowed,Elevator,Dryer,Wifi,Smoke alarm,Shampoo,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Fire extinguisher
## 743 Cleaning before checkout,Backyard,Hangers,Bed linens,Cooking basics,Washer,Single level home,Bathtub,Hair dryer,Ethernet connection,Paid parking on premises,Dedicated workspace,Crib,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Extra pillows and blankets,Heating,Cable TV,Hot tub,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 744 Cleaning before checkout,Backyard,Hangers,Bed linens,Cooking basics,Washer,Single level home,Bathtub,Hair dryer,Ethernet connection,Paid parking on premises,Dedicated workspace,Crib,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Extra pillows and blankets,Heating,Cable TV,Hot tub,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 745 Cleaning before checkout,Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,Ethernet connection,Paid parking on premises,Dedicated workspace,Crib,Security cameras on property,Long term stays allowed,Private entrance,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Extra pillows and blankets,Heating,Cable TV,Hot tub,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable
## 746 Shampoo,Essentials,Hangers,Bed linens,Kitchen,Long term stays allowed,Washer,Hair dryer,Dryer,Wifi,Hot water,TV,Air conditioning,Shower gel,Iron
## 747 Shampoo,Essentials,Smoke alarm,Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Dryer,First aid kit,Wifi,Hot water,TV,Air conditioning,Shower gel,Iron,Fire extinguisher
## 748 Safe,Hangers,Carbon monoxide alarm,Free parking on premises,Long term stays allowed,Drying rack for clothing,Elevator,Lock on bedroom door,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Extra pillows and blankets,Portable fans,Hot water,Dettol body soap,Iron,Essentials,Clothing storage: closet,Dedicated workspace: table and office chair,Shared pool,Air conditioning
## 749 Dryer \\u2013 In building,Hot water kettle,Cooking basics,Hair dryer,TV,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Washer \\u2013\\u00a0In building,Long term stays allowed,Refrigerator,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Heating,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 750 Cleaning before checkout,Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,Ethernet connection,Paid parking on premises,Dedicated workspace,Free parking on premises,Crib,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Extra pillows and blankets,Heating,Cable TV,Hot tub,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable
## 751 Cleaning before checkout,Backyard,Hangers,Bed linens,Cooking basics,Washer,Single level home,Bathtub,Hair dryer,Ethernet connection,Paid parking on premises,Dedicated workspace,Free parking on premises,Crib,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Extra pillows and blankets,Heating,Cable TV,Hot tub,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 752 Shampoo,Essentials,Keypad,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Dryer,Wifi,Hot water,Free parking on premises,Air conditioning,Dedicated workspace
## 753 Hangers,Bed linens,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Free parking on premises,Crib,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Refrigerator,Microwave,Wifi,Smoke alarm,Shampoo,Extra pillows and blankets,Hot water,Stove,Iron,Essentials,Kitchen,Private patio or balcony,First aid kit,Air conditioning,Fire extinguisher
## 754 Hangers,Hair dryer,Host greets you,Oven,TV,Paid parking on premises,Dedicated workspace,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Microwave,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 755 Hangers,Hair dryer,Host greets you,Oven,TV,Paid parking on premises,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Microwave,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 756 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Hair dryer,Wifi,TV,Air conditioning,Smoke alarm,Fire extinguisher
## 757 Shampoo,Essentials,Kitchen,Long term stays allowed,Private entrance,Hair dryer,Lock on bedroom door,First aid kit,Wifi,TV,Air conditioning,Smoke alarm,Iron,Fire extinguisher
## 758 Shampoo,Smoke alarm,Security cameras on property,Long term stays allowed,Hair dryer,Wifi,TV,Air conditioning,Shower gel
## 759 Hangers,Hair dryer,Host greets you,Oven,TV,Paid parking on premises,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Microwave,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 760 Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Dryer,Wifi,TV,Lockbox,Air conditioning,Iron
## 761 Hangers,Cooking basics,Washer,Hair dryer,Lockbox,Dedicated workspace,Security cameras on property,Long term stays allowed,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 762 Hangers,Cooking basics,Hair dryer,Lockbox,Electric stove,Dedicated workspace,Security cameras on property,Long term stays allowed,Lock on bedroom door,Refrigerator,Dryer \\u2013\\u00a0In unit,Patio or balcony,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Washer \\u2013\\u00a0In unit,Dishes and silverware
## 763 Shampoo,Building staff,Essentials,Hangers,Paid parking off premises,Long term stays allowed,Luggage dropoff allowed,Hair dryer,Cable TV,Elevator,First aid kit,Wifi,Hot water,Air conditioning,Dedicated workspace,TV with standard cable,Iron,Fire extinguisher
## 764 Backyard,Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,Oven,TV,Paid parking on premises,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Private entrance,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Extra pillows and blankets,Heating,Paid parking off premises,Hot tub,Hot water,Stove,BBQ grill,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 765 Hangers,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,Dedicated workspace,Free parking on premises,Pool,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Heating,Cable TV,Hot tub,Hot water,Stove,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable
## 766 Hangers,Bed linens,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Microwave,Gym,TV,Pool,Air conditioning,Dishes and silverware,Iron
## 767 Hangers,Bed linens,Kitchen,Paid parking off premises,Long term stays allowed,Washer,Hair dryer,Host greets you,Refrigerator,Dryer,Wifi,Hot water,Microwave,Pool,TV,Air conditioning,Dishes and silverware,Iron
## 768 Hangers,Bed linens,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Hot water,Gym,TV,Air conditioning,Pool,Iron
## 769 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Stove,Microwave,TV,Gym,Air conditioning,Pool,Dishes and silverware,Iron
## 770 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Stove,Microwave,TV,Gym,Air conditioning,Pool,Dishes and silverware,Iron
## 771 Shampoo,Heating,Kitchen,Long term stays allowed,Washer,Dryer,Wifi,TV,Air conditioning,Free parking on premises
## 772 Hangers,Bed linens,Washer,Hair dryer,Oven,Dedicated workspace,Free parking on premises,Long term stays allowed,Refrigerator,Dryer,Microwave,Wifi,Shampoo,Heating,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 773 Shampoo,Breakfast,Indoor fireplace,Building staff,Hangers,Long term stays allowed,Washer,Hair dryer,Dryer,Wifi,Hot water,Air conditioning,Smoke alarm,Iron,Fire extinguisher
## 774 Shampoo,Breakfast,Indoor fireplace,Building staff,Hangers,Long term stays allowed,Washer,Hair dryer,Dryer,Wifi,Hot water,Air conditioning,Smoke alarm,Iron,Fire extinguisher
## 775 Shampoo,Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Dryer,Wifi,Free parking on premises,TV,Air conditioning,Dedicated workspace,Iron
## 776 Backyard,Hangers,Bed linens,Washer,Hair dryer,TV,Free parking on premises,Dedicated workspace,Pool,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Shampoo,Heating,Hot water,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 777 Hangers,Hot water kettle,Washer,Hair dryer,TV,Free parking on premises,Pool,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,Microwave,Wifi,Shampoo,Heating,Iron,Bread maker,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 778 Hangers,Bed linens,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Long term stays allowed,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 779 Hangers,Bed linens,Washer,Hair dryer,Oven,Dedicated workspace,Free parking on premises,Long term stays allowed,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Shampoo,Heating,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 780 Shampoo,Building staff,Essentials,Paid parking off premises,Long term stays allowed,Washer,Hair dryer,Dryer,Wifi,Hot water,TV,Air conditioning,Smoke alarm,Luggage dropoff allowed
## 781 Shampoo,Building staff,Essentials,Hangers,Paid parking off premises,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Dryer,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Smoke alarm,Luggage dropoff allowed
## 782 Shampoo,Building staff,Essentials,Hangers,Paid parking off premises,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Dryer,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Smoke alarm,Luggage dropoff allowed
## 783 Shampoo,Building staff,Essentials,Paid parking off premises,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Dryer,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Smoke alarm,Luggage dropoff allowed
## 784 Shampoo,Essentials,Security cameras on property,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Host greets you,Dryer,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron
## 785 Hangers,Washer,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Free parking on premises,Pool,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Breakfast,Heating,Hot tub,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 786 Hangers,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Free parking on premises,Crib,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Refrigerator,Microwave,Free street parking,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,Private patio or balcony,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 787 Hangers,Bed linens,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Security cameras on property,Long term stays allowed,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Essentials,Kitchen,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 788 Shampoo,Breakfast,Indoor fireplace,Security cameras on property,Building staff,Hangers,Long term stays allowed,Washer,Hair dryer,Dryer,Wifi,Hot water,Air conditioning,Smoke alarm,Iron,Fire extinguisher
## 789 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Hair dryer,TV,Pool,Long term stays allowed,Private entrance,Refrigerator,Dryer,Microwave,Gym,Wifi,Shampoo,Extra pillows and blankets,Stove,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 790 Shampoo,Essentials,Smoke alarm,Hangers,Bed linens,Kitchen,Long term stays allowed,Hair dryer,Wifi,TV,Air conditioning,Dedicated workspace,Shower gel,Iron,Fire extinguisher
## 791 Backyard,Hangers,Bed linens,Hair dryer,Host greets you,TV,Free parking on premises,Dedicated workspace,Long term stays allowed,Lock on bedroom door,Refrigerator,Patio or balcony,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Paid parking off premises,Hot water,Iron,Essentials,First aid kit,Air conditioning,Shower gel
## 792 Shampoo,Breakfast,Essentials,Kitchen,Long term stays allowed,Washer,Hair dryer,Cable TV,Lock on bedroom door,Dryer,First aid kit,Wifi,Air conditioning,Dedicated workspace,Smoke alarm,TV with standard cable,Iron,Fire extinguisher
## 793 Backyard,Hangers,Bed linens,Cooking basics,Washer,Single level home,Host greets you,Dedicated workspace,Long term stays allowed,Patio or balcony,Refrigerator,Microwave,Free street parking,Wifi,Shampoo,Hot water,Stove,BBQ grill,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 794 Shampoo,Essentials,Long term stays allowed,Carbon monoxide alarm,Hair dryer,Elevator,Wifi,Hot water,TV,Air conditioning,Smoke alarm,Fire extinguisher
## 795 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Single level home,Bathtub,Hair dryer,Host greets you,Oven,Ethernet connection,Dedicated workspace,Free parking on premises,Room-darkening shades,Pool,Long term stays allowed,Patio or balcony,Pocket wifi,Refrigerator,Dryer,Microwave,Gym,Free street parking,Wifi,Beachfront,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Cable TV,Hot tub,Hot water,Stove,BBQ grill,Iron,Essentials,Kitchen,Changing table,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 796 Cleaning before checkout,Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Single level home,Carbon monoxide alarm,Bathtub,Hair dryer,Host greets you,Oven,Paid parking on premises,Dedicated workspace,Free parking on premises,Pool,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Microwave,Waterfront,Gym,Free street parking,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Heating,Cable TV,Hot tub,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable
## 797 Hangers,Bed linens,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Induction stove,Hot water,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 798 Hangers,Bed linens,Washer,Hair dryer,High chair,Dedicated workspace,Free parking on premises,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 799 Hangers,Bed linens,Washer,Hair dryer,High chair,Dedicated workspace,Free parking on premises,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Cable TV,Hot water,Iron,Essentials,Kitchen,Air conditioning,TV with standard cable,Fire extinguisher
## 800 Hangers,Bed linens,Washer,Hair dryer,High chair,Free parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Dryer,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Cable TV,Hot water,Iron,Essentials,Kitchen,Air conditioning,TV with standard cable,Fire extinguisher
## 801 Hangers,Washer,Hair dryer,Host greets you,TV,High chair,Free parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Dryer,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Hot water,Iron,Essentials,Kitchen,Air conditioning,Fire extinguisher
## 802 Cleaning before checkout,Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Heating,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 803 Building staff,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Cable TV,Elevator,Dryer,Wifi,Free parking on premises,Air conditioning,Dedicated workspace,Smoke alarm,TV with standard cable,Iron,Fire extinguisher
## 804 Hangers,Washer,Hair dryer,Host greets you,Free parking on premises,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Heating,Cable TV,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,TV with standard cable,Fire extinguisher
## 805 Hangers,Cooking basics,Washer,Hair dryer,Host greets you,TV,Paid parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Refrigerator,Microwave,Luggage dropoff allowed,Shampoo,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware
## 806 Hangers,Cooking basics,Hair dryer,Lockbox,Electric stove,Dedicated workspace,Security cameras on property,Long term stays allowed,Lock on bedroom door,Refrigerator,Dryer \\u2013\\u00a0In unit,Patio or balcony,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Washer \\u2013\\u00a0In unit,Dishes and silverware
## 807 Hangers,Cooking basics,Washer,Hair dryer,Lockbox,Dedicated workspace,Security cameras on property,Long term stays allowed,Lock on bedroom door,Refrigerator,Patio or balcony,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware
## 808 Hangers,Bed linens,Washer,Hair dryer,Host greets you,Dedicated workspace,Free parking on premises,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Heating,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,TV with standard cable,Fire extinguisher
## 809 Hangers,Washer,Hair dryer,TV,Lockbox,Paid parking on premises,Dedicated workspace,Security cameras on property,Long term stays allowed,Dryer,Wifi,Smoke alarm,Shampoo,Breakfast,Paid parking off premises,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Fire extinguisher
## 810 Hangers,Bed linens,Washer,Hair dryer,Free parking on premises,Dedicated workspace,Long term stays allowed,Elevator,Dryer,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Heating,Cable TV,Hot water,Iron,Building staff,Essentials,Kitchen,First aid kit,Air conditioning,TV with standard cable,Fire extinguisher
## 811 Building staff,Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Free parking on premises,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 812 Building staff,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Cable TV,Elevator,Dryer,Wifi,Free parking on premises,Air conditioning,Dedicated workspace,Smoke alarm,TV with standard cable,Iron,Fire extinguisher
## 813 Shampoo,Essentials,Smoke alarm,Hangers,Bed linens,Hot water kettle,Coffee maker,Paid parking off premises,Long term stays allowed,Carbon monoxide alarm,Hair dryer,Cable TV,Lock on bedroom door,Wifi,Hot water,Body soap,Air conditioning,Shower gel,TV with standard cable,Luggage dropoff allowed
## 814 Shampoo,Essentials,Kitchen,Long term stays allowed,Private entrance,Hair dryer,Lock on bedroom door,First aid kit,Wifi,TV,Air conditioning,Smoke alarm,Fire extinguisher
## 815 Shampoo,Essentials,Hangers,Kitchen,Cooking basics,Long term stays allowed,Hair dryer,Lock on bedroom door,Dryer,First aid kit,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 816 Hangers,Long term stays allowed,Washer,Lock on bedroom door,Dryer,First aid kit,Wifi,Air conditioning,Smoke alarm,Iron,Fire extinguisher
## 817 Hangers,Bed linens,Cooking basics,Washer,Single level home,Smart lock,Hair dryer,Oven,TV,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Elevator,Patio or balcony,Refrigerator,Microwave,Gym,Wifi,Children\\u2019s dinnerware,Shampoo,Extra pillows and blankets,Paid parking off premises,Hot water,Stove,Iron,Essentials,Window guards,Kitchen,Air conditioning,Dishes and silverware
## 818 Hangers,Bed linens,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Long term stays allowed,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 819 Shampoo,Essentials,Extra pillows and blankets,Hangers,Bed linens,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Hot water,Gym,TV,Air conditioning,Dedicated workspace,Pool,Iron,Fire extinguisher
## 820 Hangers,Hair dryer,Host greets you,Oven,TV,Paid parking on premises,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Microwave,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 821 Hangers,Long term stays allowed,Washer,Lock on bedroom door,Dryer,First aid kit,Wifi,Air conditioning,Smoke alarm,Iron,Fire extinguisher
## 822 Shampoo,Essentials,Hangers,Bed linens,Kitchen,Coffee maker,Long term stays allowed,Washer,Hair dryer,Refrigerator,Dryer,Wifi,Hot water,Microwave,TV,Air conditioning,Dedicated workspace,Shower gel
## 823 Shampoo,Essentials,Smoke alarm,Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Dryer,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Shower gel,Iron,Fire extinguisher
## 824 Shampoo,Essentials,Kitchen,Long term stays allowed,Smart lock,Hair dryer,Lock on bedroom door,First aid kit,Wifi,TV,Air conditioning,Smoke alarm,Fire extinguisher
## 825 Shampoo,Essentials,Smoke alarm,Paid parking lot off premises,Hangers,Bed linens,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Cable TV,Lock on bedroom door,Wifi,Hot water,Body soap,Air conditioning,Dedicated workspace,Shower gel,TV with standard cable,Luggage dropoff allowed
## 826 Hangers,Bed linens,Hot water kettle,Cooking basics,Washer,Hair dryer,Clothing storage,TV,High chair,Dining table,Crib,Long term stays allowed,Private entrance,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Shampoo,Dishwasher,Heating,Hot water,Stove,Iron,Essentials,Kitchen,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 827 Cleaning before checkout,Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Oven,TV,Dedicated workspace,Free parking on premises,Long term stays allowed,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Shampoo,Breakfast,Dishwasher,Extra pillows and blankets,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Private patio or balcony,First aid kit,Air conditioning,Dishes and silverware
## 828 Hangers,Cooking basics,Washer,Hair dryer,Host greets you,TV,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 829 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Stove,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 830 Hangers,Cooking basics,Washer,Hair dryer,Host greets you,TV,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Stove,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 831 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 832 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,Dedicated workspace,Pool,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 833 Backyard,Hangers,Bed linens,Washer,Single level home,Hair dryer,Paid parking on premises,Lockbox,Dedicated workspace,Pool,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Refrigerator,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Paid parking off premises,Hot water,Iron,Essentials,First aid kit,Air conditioning,Fire extinguisher
## 834 Hangers,Bed linens,Free dryer \\u2013 In building,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Free washer \\u2013 In building,Long term stays allowed,Lock on bedroom door,Refrigerator,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Induction stove,Hot water,Iron,Essentials,Kitchen,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 835 Essentials,Hangers,Heating,Long term stays allowed,Washer,Private entrance,Lock on bedroom door,Dryer,First aid kit,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 836 Shampoo,Building staff,Essentials,Hangers,Bed linens,Paid parking off premises,Long term stays allowed,Luggage dropoff allowed,Hair dryer,Elevator,First aid kit,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Iron,Fire extinguisher
## 837 Hangers,Coffee maker,Washer,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Free parking on premises,Pool,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Dryer,Gym,Free street parking,Wifi,Smoke alarm,Shampoo,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 838 Indoor fireplace,Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Stove,Iron,Building staff,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 839 Shampoo,Essentials,Hangers,Long term stays allowed,Carbon monoxide alarm,Hair dryer,Elevator,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Fire extinguisher
## 840 Hangers,Cooking basics,Washer,Hair dryer,TV,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 841 Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Refrigerator,Dryer,Wifi,TV,Lockbox,Air conditioning,Dishes and silverware,Iron
## 842 Hangers,Bed linens,Washer,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,Air conditioning,Shower gel,Fire extinguisher
## 843 Hangers,Bed linens,Washer,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Stove,Iron,Building staff,Essentials,Kitchen,Air conditioning,Shower gel,Fire extinguisher
## 844 Hangers,Hair dryer,Host greets you,Oven,TV,Paid parking on premises,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Microwave,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 845 Hangers,Hair dryer,Host greets you,Oven,TV,Paid parking on premises,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Microwave,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 846 Hangers,Hair dryer,Host greets you,Oven,TV,Paid parking on premises,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Microwave,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 847 Hangers,Cooking basics,Hair dryer,Lockbox,Electric stove,Dedicated workspace,Security cameras on property,Long term stays allowed,Lock on bedroom door,Refrigerator,Dryer \\u2013\\u00a0In unit,Patio or balcony,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Washer \\u2013\\u00a0In unit,Dishes and silverware
## 848 Hangers,Cooking basics,Washer,Hair dryer,Lockbox,Dedicated workspace,Security cameras on property,Long term stays allowed,Lock on bedroom door,Refrigerator,Patio or balcony,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware
## 849 Hangers,Cooking basics,Washer,Hair dryer,Lockbox,Dedicated workspace,Security cameras on property,Long term stays allowed,Lock on bedroom door,Refrigerator,Patio or balcony,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware
## 850 Hangers,Cooking basics,Washer,Hair dryer,TV,Lockbox,Dedicated workspace,Security cameras on property,Long term stays allowed,Lock on bedroom door,Refrigerator,Patio or balcony,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware
## 851 Hangers,Coffee maker,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,Oven,Paid parking on premises,Dedicated workspace,Long term stays allowed,Outdoor dining area,Elevator,Refrigerator,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Heating,Cable TV,Hot water,Stove,BBQ grill,Iron,Essentials,Kitchen,First aid kit,Shared pool,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 852 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Private entrance,Hair dryer,Elevator,Dryer,Wifi,Hot water,Gym,TV,Air conditioning,Pool,Iron
## 853 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Hot water,Gym,TV,Air conditioning,Pool,Iron
## 854 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Luggage dropoff allowed,Hair dryer,Host greets you,Dryer,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Iron,Fire extinguisher
## 855 Hangers,Bed linens,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Long term stays allowed,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Stove,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 856 Long term stays allowed,Hot tub,Pool,Paid parking on premises,Free parking on premises,Smoke alarm,Fire extinguisher
## 857 Backyard,Hangers,Bed linens,Washer,Hair dryer,Host greets you,Free parking on premises,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Patio or balcony,Refrigerator,Microwave,Gym,Free street parking,Wifi,Heating,Paid parking off premises,Hot water,Stove,BBQ grill,Essentials,Kitchen,Air conditioning
## 858 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 859 Backyard,Bed linens,Washer,Host greets you,Oven,TV,Pool,Long term stays allowed,Private entrance,Elevator,Patio or balcony,Refrigerator,Dryer,Gym,Wifi,Luggage dropoff allowed,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 860 Shampoo,Essentials,Hangers,Long term stays allowed,Carbon monoxide alarm,Hair dryer,Elevator,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Smoke alarm,Fire extinguisher
## 861 Shampoo,Essentials,Hangers,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Refrigerator,Elevator,Dryer,Wifi,Hot water,Gym,Pool,TV,Air conditioning,Dedicated workspace,Dishes and silverware,Iron
## 862 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,Pool,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 863 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Private entrance,Hair dryer,Elevator,Dryer,Wifi,Pool,Gym,TV,Air conditioning,Smoke alarm,Iron,Fire extinguisher
## 864 Shampoo,Essentials,Hangers,Long term stays allowed,Carbon monoxide alarm,First aid kit,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm
## 865 Shampoo,Essentials,Hangers,Paid parking off premises,Long term stays allowed,Washer,Elevator,Lock on bedroom door,Refrigerator,Wifi,Hot water,Air conditioning
## 866 Shampoo,Essentials,Security cameras on property,Hangers,Kitchen,Long term stays allowed,Hair dryer,Lock on bedroom door,Refrigerator,First aid kit,Wifi,Hot water,Air conditioning,Luggage dropoff allowed,Fire extinguisher
## 867 Shampoo,Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Wifi,Free parking on premises,TV,Air conditioning,Dedicated workspace,Pool,Iron
## 868 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Ethernet connection,TV,Dedicated workspace,Pool,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Microwave,Gym,Wifi,Shampoo,Extra pillows and blankets,Hot water,Stove,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 869 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,High chair,Crib,Long term stays allowed,Private entrance,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Shampoo,Dishwasher,Heating,Hot water,Stove,Iron,Essentials,Kitchen,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 870 Hangers,Washer,Hair dryer,Paid parking on premises,Lockbox,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Dryer,Gym,Wifi,Luggage dropoff allowed,Shampoo,Paid parking off premises,Cable TV,Hot tub,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,TV with standard cable,Fire extinguisher
## 871 Cleaning before checkout,Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Hair dryer,Ethernet connection,Paid parking on premises,Lockbox,Dedicated workspace,Pool,Long term stays allowed,Elevator,Lock on bedroom door,Pocket wifi,Refrigerator,Dryer,Patio or balcony,Microwave,Waterfront,Gym,Wifi,Beachfront,Luggage dropoff allowed,Shampoo,Dishwasher,Extra pillows and blankets,Paid parking off premises,Cable TV,Hot tub,Hot water,Stove,Iron,Essentials,Kitchen,EV charger,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 872 Cleaning before checkout,Hangers,Bed linens,Cooking basics,Washer,Single level home,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Free parking on premises,Room-darkening shades,Pool,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Shampoo,Hot water,Body soap,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 873 Hangers,Bed linens,Washer,Single level home,Carbon monoxide alarm,Hair dryer,Smart lock,TV,Dedicated workspace,Room-darkening shades,Long term stays allowed,Elevator,Refrigerator,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Extra pillows and blankets,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Private patio or balcony,Shared pool,Air conditioning,Dishes and silverware
## 874 Toaster,Bidet,Rice maker,Hangers,Bed linens,Hot water kettle,Freezer,Washer,Single level home,Hair dryer,Bathtub,Oven,TV,Dining table,Dedicated workspace,Free parking on premises,Room-darkening shades,Cleaning products,Security cameras on property,Long term stays allowed,Drying rack for clothing,Laundromat nearby,Central air conditioning,Private entrance,Elevator,Refrigerator,Microwave,Free street parking,Wifi,Children\\u2019s dinnerware,Shampoo,Ceiling fan,Extra pillows and blankets,Keypad,Hot water,Stove,Iron,Essentials,Clothing storage: closet,Kitchen,Private patio or balcony,Dishes and silverware,Shower gel
## 875 Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,TV,Dedicated workspace,Free parking on premises,Room-darkening shades,Security cameras on property,Private pool,Long term stays allowed,Private entrance,Refrigerator,Microwave,Private hot tub,Wifi,Children\\u2019s dinnerware,Shampoo,Extra pillows and blankets,Keypad,Hot water,Stove,Iron,Essentials,Kitchen,Private patio or balcony,Air conditioning,Dishes and silverware
## 876 Hangers,Washer,Hair dryer,Paid parking on premises,Lockbox,Dedicated workspace,Pool,Long term stays allowed,Lock on bedroom door,Dryer,Gym,Free street parking,Wifi,Shampoo,Paid parking off premises,Cable TV,Hot tub,Hot water,Iron,Essentials,Kitchen,Air conditioning,TV with standard cable
## 877 Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Carbon monoxide alarm,Elevator,Dryer,First aid kit,Wifi,Free parking on premises,Gym,Pool,TV,Air conditioning,Dedicated workspace,Smoke alarm,Fire extinguisher
## 878 Shampoo,Essentials,Cleaning before checkout,Hangers,Keypad,Long term stays allowed,Luggage dropoff allowed,Private entrance,Hair dryer,Lock on bedroom door,Refrigerator,Elevator,Wifi,Hot water,Gym,Pool,Air conditioning,Dedicated workspace,Shower gel,Iron
## 879 Shampoo,Essentials,Security cameras on property,Smoke alarm,Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Dryer,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Shower gel,Fire extinguisher
## 880 Hangers,Bed linens,Washer,Single level home,Hair dryer,Host greets you,Oven,Ethernet connection,Dedicated workspace,Free parking on premises,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Dryer,Gym,Wifi,Luggage dropoff allowed,Shampoo,Shared patio or balcony,Extra pillows and blankets,Paid parking off premises,Hot water,Stove,BBQ grill,Iron,Essentials,Window guards,Kitchen,Shared pool,Air conditioning,Dishes and silverware
## 881 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Shampoo,Heating,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 882 Backyard,Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Oven,Lockbox,Dedicated workspace,Free parking on premises,Long term stays allowed,Patio or balcony,Refrigerator,Microwave,Free street parking,Wifi,Shampoo,Extra pillows and blankets,Cable TV,Hot water,Stove,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 883 Rice maker,Toaster,Hangers,Bed linens,Pool table,Hot water kettle,Freezer,Coffee maker,Cooking basics,Bathtub,Hair dryer,Clothing storage,Oven,Outdoor furniture,Lockbox,Dining table,Dedicated workspace,Free parking on premises,Room-darkening shades,Cleaning products,Wine glasses,Long term stays allowed,Drying rack for clothing,Laundromat nearby,Private entrance,Outdoor dining area,Lock on bedroom door,Pocket wifi,Refrigerator,Dryer,Nespresso machine,Keurig coffee machine,Microwave,Free street parking,Private hot tub,Wifi,Luggage dropoff allowed,Shampoo,Ceiling fan,Shared patio or balcony,Dishwasher,Extra pillows and blankets,Conditioner,Hot water,Stove,Body soap,Bikes,Outdoor shower,Iron,Essentials,Kitchen,Private fenced garden or backyard,First aid kit,Dishes and silverware,Shared pool,Air conditioning,Shower gel,Fire extinguisher
## 884 Essentials,Hangers,Long term stays allowed,Washer,Elevator,Dryer,Wifi,Hot water,Air conditioning
## 885 Hangers,Bed linens,Cooking basics,Washer,Single level home,Host greets you,TV,Dedicated workspace,Room-darkening shades,Elevator,Patio or balcony,Refrigerator,Microwave,Wifi,Smoke alarm,Children\\u2019s dinnerware,Paid parking off premises,Hot water,Essentials,Air conditioning,Dishes and silverware
## 886 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 887 Hangers,Bed linens,Cooking basics,Freezer,Washer,Single level home,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Free parking on premises,Room-darkening shades,Pool,Elevator,Patio or balcony,Refrigerator,Dryer,Wifi,Smoke alarm,Children\\u2019s dinnerware,Shampoo,Paid parking off premises,Hot water,Body soap,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 888 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Oven,TV,Lockbox,Dedicated workspace,Security cameras on property,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Patio or balcony,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware
## 889 Hangers,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Cable TV,Elevator,Host greets you,Dryer,Wifi,Hot water,Air conditioning,TV with standard cable,Iron
## 890 Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Cable TV,Elevator,Dryer,Wifi,Hot tub,Air conditioning,TV with standard cable,Iron
## 891 Hangers,Bed linens,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Long term stays allowed,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Essentials,Air conditioning,Shower gel,Fire extinguisher
## 892 Hangers,Bed linens,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Long term stays allowed,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 893 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Private entrance,Hair dryer,Elevator,Dryer,Wifi,Gym,TV,Air conditioning,Dedicated workspace,Pool,Iron
## 894 Hangers,Bed linens,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,Oven,TV,Dedicated workspace,Long term stays allowed,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Dishwasher,Extra pillows and blankets,Heating,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 895 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 896 Kitchen,Long term stays allowed,Washer,Carbon monoxide alarm,Lock on bedroom door,First aid kit,Wifi,Shared pool,Air conditioning,Dedicated workspace,Smoke alarm,BBQ grill
## 897 Shampoo,Breakfast,Essentials,Hangers,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Lock on bedroom door,Dryer,Wifi,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 898 Shampoo,Essentials,Smoke alarm,Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Private entrance,Hair dryer,Lock on bedroom door,First aid kit,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Shower gel,Fire extinguisher
## 899 Hangers,Bed linens,Cooking basics,Washer,Single level home,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Room-darkening shades,Elevator,Patio or balcony,Refrigerator,Microwave,Wifi,Smoke alarm,Children\\u2019s dinnerware,Paid parking off premises,Hot water,Essentials,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 900 Hangers,Bed linens,Cooking basics,Washer,Single level home,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Pool,Room-darkening shades,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Children\\u2019s dinnerware,Shampoo,Paid parking off premises,Hot water,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 901 Shampoo,Heating,Kitchen,Long term stays allowed,Washer,Host greets you,Dryer,Wifi,TV,Air conditioning,Free parking on premises,Fire extinguisher
## 902 Hangers,Kitchen,Long term stays allowed,Washer,Wifi,TV,Lockbox,Air conditioning,Dedicated workspace
## 903 Shampoo,Building staff,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Elevator,Dryer,Wifi,TV,Air conditioning,Dedicated workspace,Iron,Fire extinguisher
## 904 Hangers,Bed linens,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 905 Shampoo,Essentials,Hangers,Long term stays allowed,Carbon monoxide alarm,Hair dryer,Elevator,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Fire extinguisher
## 906 Shampoo,Breakfast,Essentials,Security cameras on property,Long term stays allowed,Washer,Hair dryer,Dryer,Wifi,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 907 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Dishwasher,Extra pillows and blankets,Heating,Hot water,Stove,Iron,Essentials,Kitchen,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 908 Shampoo,Breakfast,Essentials,Security cameras on property,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Dryer,First aid kit,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Iron,Fire extinguisher
## 909 Hangers,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,Free parking on premises,Dedicated workspace,Pool,Long term stays allowed,Elevator,Lock on bedroom door,Dryer,Gym,Wifi,Smoke alarm,Shampoo,Heating,Cable TV,Hot tub,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,TV with standard cable,Fire extinguisher
## 910 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Oven,TV,Lockbox,Dedicated workspace,Security cameras on property,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Patio or balcony,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware
## 911 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Shampoo,Heating,Hot water,Stove,Iron,Building staff,Essentials,Pack \\u2019n play/Travel crib,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 912 Shampoo,Essentials,Security cameras on property,Hangers,Kitchen,Lake access,Long term stays allowed,Washer,Hair dryer,Cable TV,Lock on bedroom door,Refrigerator,Elevator,Wifi,Pool,Air conditioning,Dedicated workspace,Dishes and silverware,TV with standard cable
## 913 Shampoo,Building staff,Essentials,Hair dryer,Lock on bedroom door,Wifi,TV,Air conditioning,Smoke alarm,Fire extinguisher
## 914 Hangers,Coffee maker,Washer,Hair dryer,Host greets you,TV,Free parking on premises,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Elevator,Patio or balcony,Refrigerator,Gym,Smoke alarm,Heating,Hot tub,Hot water,BBQ grill,Iron,Kitchen,Air conditioning,Dishes and silverware
## 915 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Private entrance,Hair dryer,Elevator,Dryer,First aid kit,Wifi,Pool,Gym,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron
## 916 Cleaning before checkout,Coffee maker,Washer,Carbon monoxide alarm,Hair dryer,Dedicated workspace,Long term stays allowed,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Keypad,Heating,Paid parking off premises,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Fire extinguisher
## 917 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,High chair,Long term stays allowed,Private entrance,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Shampoo,Dishwasher,Heating,Hot water,Stove,Iron,Essentials,Kitchen,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 918 Shampoo,Essentials,Kitchen,Freezer,Cooking basics,Washer,Long term stays allowed,Dryer,Wifi,TV,Lockbox,Air conditioning
## 919 Rice maker,Bidet,Toaster,Hangers,Bed linens,Hot water kettle,Freezer,Cooking basics,Washer,Single level home,Carbon monoxide alarm,Hair dryer,Bathtub,Clothing storage,Oven,TV,Lockbox,Dining table,Children\\u2019s books and toys,Dedicated workspace,Room-darkening shades,Pool,Cleaning products,Long term stays allowed,Drying rack for clothing,Private entrance,Patio or balcony,Refrigerator,Microwave,Gym,Wifi,Children\\u2019s dinnerware,Smoke alarm,Shampoo,Ceiling fan,Extra pillows and blankets,Conditioner,Paid parking off premises,Hot water,Stove,Body soap,Iron,Essentials,Kitchen,Dishes and silverware,Air conditioning,Shower gel
## 920 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Oven,TV,Lockbox,Dedicated workspace,Security cameras on property,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Patio or balcony,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Paid parking off premises,Hot water,Stove,Body soap,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware
## 921 Cleaning before checkout,Hangers,Bed linens,Cooking basics,Washer,Single level home,Carbon monoxide alarm,Hair dryer,Host greets you,Ethernet connection,Dedicated workspace,Free parking on premises,Pool,Long term stays allowed,Private entrance,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Cable TV,Hot water,Stove,BBQ grill,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 922 Hangers,Bed linens,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,Ethernet connection,TV,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Elevator,Pocket wifi,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Heating,Hot water,Stove,Iron,Building staff,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware
## 923 Backyard,Hangers,Coffee maker,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Free parking on premises,Pool,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 924 Hangers,Bed linens,Washer,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Dishwasher,Extra pillows and blankets,Heating,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Shower gel,Fire extinguisher
## 925 Breakfast,Essentials,Heating,Kitchen,Washer,Cable TV,Elevator,Dryer,Wifi,Air conditioning,TV with standard cable
## 926 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Heating,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 927 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,High chair,Pool,Crib,Long term stays allowed,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 928 Hangers,Bed linens,Hair dryer,Lockbox,Room-darkening shades,Cleaning products,Dedicated workspace: desk,Long term stays allowed,Body soap body soap,Drying rack for clothing,Central air conditioning,Outdoor dining area,Elevator,Free washer \\u2013 In unit,Dryer,Gym,Private hot tub,Wifi,Luggage dropoff allowed,Shampoo,Hot water,BBQ grill,Iron,43\\ HDTV with Amazon Prime Video,Netflix,Apple TV,Shower gel,Essentials,First aid kit,Shared pool,Dishes and silverware
## 929 Kitchen,Long term stays allowed,Washer,Carbon monoxide alarm,Wifi,TV,Paid parking on premises,Air conditioning,Dedicated workspace
## 930 Indoor fireplace,Hangers,Cooking basics,Washer,Carbon monoxide alarm,Oven,Dedicated workspace,Free parking on premises,Pool,Lake access,Long term stays allowed,Elevator,Refrigerator,Microwave,Waterfront,Gym,Wifi,Beachfront,Smoke alarm,Shampoo,Keypad,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 931 Shampoo,Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Lock on bedroom door,Host greets you,First aid kit,Wifi,Hot water,Free street parking,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 932 Essentials,Hangers,Bed linens,Kitchen,Cooking basics,Paid parking off premises,Washer,Long term stays allowed,Refrigerator,Dryer,Wifi,Hot water,Stove,Air conditioning,Dedicated workspace,Dishes and silverware,Iron
## 933 Essentials,Hangers,Kitchen,Paid parking off premises,Long term stays allowed,Washer,Lock on bedroom door,Dryer,Wifi,Hot water,TV,Air conditioning
## 934 Hangers,Bed linens,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Security cameras on property,Long term stays allowed,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Essentials,Kitchen,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 935 Shampoo,Breakfast,Essentials,Security cameras on property,Long term stays allowed,Washer,Hair dryer,Dryer,Wifi,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 936 Shampoo,Breakfast,Essentials,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Dryer,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Iron,Fire extinguisher
## 937 Paid parking off premises,Long term stays allowed,Washer,Lock on bedroom door,Host greets you,Dryer,Wifi,Hot water,Air conditioning,Iron
## 938 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Oven,TV,Lockbox,Dedicated workspace,Security cameras on property,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Patio or balcony,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware
## 939 Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,Host greets you,Oven,Ethernet connection,TV,Paid parking on premises,Dedicated workspace,Game console,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Window guards,Kitchen,First aid kit,Air conditioning,Dishes and silverware
## 940 Hangers,Bed linens,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Long term stays allowed,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Shampoo,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 941 Breakfast,Essentials,Hangers,Long term stays allowed,Elevator,Wifi,Air conditioning,Dedicated workspace
## 942 Backyard,Hangers,Cooking basics,Washer,Hair dryer,TV,Free parking on premises,Pool,Long term stays allowed,Private entrance,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Hot water,BBQ grill,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 943 Hangers,Cooking basics,Washer,Hair dryer,Lockbox,Dedicated workspace,Security cameras on property,Long term stays allowed,Lock on bedroom door,Refrigerator,Patio or balcony,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware
## 944 Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Cable TV,Wifi,Lockbox,Air conditioning,TV with standard cable,Iron
## 945 Shampoo,Essentials,Security cameras on property,Backyard,Hangers,Long term stays allowed,Washer,Private entrance,Hair dryer,Lock on bedroom door,Refrigerator,Dryer,First aid kit,Wifi,Hot water,Air conditioning,Dedicated workspace,Dishes and silverware,Iron,Fire extinguisher
## 946 Shampoo,Breakfast,Essentials,Hangers,Long term stays allowed,Washer,Hair dryer,Host greets you,Dryer,Wifi,Hot water,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 947 Hangers,Bed linens,Washer,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Lock on bedroom door,Dryer,Microwave,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Stove,Mini fridge,Iron,Essentials,Kitchen,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 948 Backyard,Hangers,Bed linens,Hair dryer,Host greets you,TV,Free parking on premises,Dedicated workspace,Long term stays allowed,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Paid parking off premises,Hot tub,Hot water,Iron,Essentials,First aid kit,Air conditioning,Shower gel
## 949 Shampoo,Breakfast,Essentials,Security cameras on property,Long term stays allowed,Washer,Hair dryer,Patio or balcony,Dryer,Wifi,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 950 Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,Host greets you,Paid parking on premises,Lockbox,Dedicated workspace,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Shower gel,Essentials,Kitchen,Shared pool,Air conditioning,Dishes and silverware
## 951 Hangers,Kitchen,Long term stays allowed,Washer,Dryer,Wifi,Air conditioning,Free parking on premises
## 952 Backyard,Hangers,Bed linens,Coffee maker,Washer,Hair dryer,Host greets you,Dedicated workspace,Game console,Long term stays allowed,Patio or balcony,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 953 Hangers,Bed linens,Washer,Single level home,Hair dryer,Dedicated workspace,Pool,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Microwave,Gym,Beachfront,Wifi,Smoke alarm,Extra pillows and blankets,Paid parking off premises,Hot water,Iron,Kitchen,Air conditioning
## 954 Shampoo,Breakfast,Essentials,Long term stays allowed,Hair dryer,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Fire extinguisher
## 955 Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Wifi,TV,Lockbox,Air conditioning,Dedicated workspace
## 956 Hangers,Cooking basics,Washer,Single level home,Hair dryer,Host greets you,Oven,TV,Free parking on premises,Dedicated workspace,Pool,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Microwave,Gym,Wifi,Shampoo,Hot water,Stove,BBQ grill,Iron,Essentials,Kitchen,Air conditioning,Fire extinguisher
## 957 Shampoo,Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Luggage dropoff allowed,Hair dryer,Lock on bedroom door,Host greets you,Wifi,Hot water,Free parking on premises,Free street parking,TV,Air conditioning,Dedicated workspace,Iron
## 958 Hangers,Bed linens,Washer,Hair dryer,Oven,Dedicated workspace,Free parking on premises,Long term stays allowed,Refrigerator,Dryer,Microwave,Wifi,Shampoo,Heating,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 959 Hangers,Bed linens,Washer,Hair dryer,Oven,Dedicated workspace,Free parking on premises,Long term stays allowed,Refrigerator,Dryer,Microwave,Wifi,Shampoo,Heating,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 960 Hangers,Bed linens,Washer,Hair dryer,Oven,Dedicated workspace,Free parking on premises,Long term stays allowed,Refrigerator,Dryer,Microwave,Wifi,Shampoo,Heating,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 961 Cleaning before checkout,Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Oven,Free parking on premises,Long term stays allowed,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Heating,Cable TV,Hot water,Iron,Essentials,Kitchen,EV charger,Air conditioning,Dishes and silverware,TV with standard cable
## 962 Shampoo,Essentials,Heating,Kitchen,Long term stays allowed,Washer,Dryer,Wifi,TV,Air conditioning,Free parking on premises
## 963 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Dryer,TV,Wifi,Free parking on premises
## 964 Shampoo,Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Dryer,Wifi,Free parking on premises,TV,Air conditioning,Dedicated workspace,Iron
## 965 Hangers,Bed linens,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Long term stays allowed,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 966 Backyard,Hangers,Washer,Carbon monoxide alarm,Hair dryer,TV,Lockbox,Free parking on premises,Dedicated workspace,Long term stays allowed,Elevator,Lock on bedroom door,Patio or balcony,Dryer,Free street parking,Wifi,Smoke alarm,Shampoo,Extra pillows and blankets,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning
## 967 Hangers,Washer,Hair dryer,Free parking on premises,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Wifi,Luggage dropoff allowed,Shampoo,Cable TV,Hot water,Iron,Building staff,Essentials,First aid kit,Air conditioning,TV with standard cable,Fire extinguisher
## 968 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Host greets you,Dryer,Wifi,TV,Air conditioning,Dedicated workspace,Iron,Fire extinguisher
## 969 Shampoo,Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Dryer,Wifi,Hot water,Free parking on premises,TV,Air conditioning,Dedicated workspace,Iron
## 970 Shampoo,Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Patio or balcony,Dryer,Wifi,Free parking on premises,TV,Air conditioning,Dedicated workspace,Iron
## 971 Shampoo,Essentials,Kitchen,Long term stays allowed,Wifi,Hot water,Gym,TV,Air conditioning,Pool
## 972 Shampoo,Essentials,Security cameras on property,Hangers,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Elevator,Wifi,Hot water,TV,Air conditioning
## 973 Shampoo,Security cameras on property,Hangers,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Elevator,Wifi,TV,Air conditioning
## 974 Toaster,Cleaning before checkout,Bed linens,Hot water kettle,Freezer,Washer,Bathtub,Clothing storage,Oven,Dining table,Dedicated workspace,Crib,Long term stays allowed,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Extra pillows and blankets,Cable TV,Hot water,Stove,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 975 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Oven,Baking sheet,Dedicated workspace,Free parking on premises,Room-darkening shades,Pool,Long term stays allowed,Lock on bedroom door,Refrigerator,Dryer,Microwave,Gym,Free street parking,Wifi,Shampoo,Breakfast,Extra pillows and blankets,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 976 Shampoo,Essentials,Hangers,Coffee maker,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Microwave,Shared pool,Air conditioning,Free parking on premises,Dishes and silverware,Iron
## 977 Hangers,Cooking basics,Washer,Hair dryer,TV,High chair,Pool,Crib,Long term stays allowed,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 978 Hangers,Kitchen,Cooking basics,Long term stays allowed,Washer,Elevator,Dryer,Wifi,Gym,Shared pool,Air conditioning,Dedicated workspace,Iron
## 979 Hangers,Bed linens,Washer,Hair dryer,Long term stays allowed,Private entrance,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Heating,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 980 Backyard,Hangers,Bed linens,Hair dryer,Host greets you,TV,Free parking on premises,Dedicated workspace,Long term stays allowed,Lock on bedroom door,Refrigerator,Patio or balcony,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Paid parking off premises,Hot water,Iron,Essentials,First aid kit,Air conditioning,Shower gel
## 981 Hangers,Bed linens,Washer,Hair dryer,Dedicated workspace,Long term stays allowed,Private entrance,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Heating,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 982 Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 983 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Host greets you,Oven,Paid parking on premises,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Patio or balcony,Microwave,Gym,Wifi,Shampoo,Extra pillows and blankets,Heating,Cable TV,Hot tub,Hot water,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 984 Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,Oven,TV,Dedicated workspace,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Keypad,Hot water,Stove,Iron,Essentials,Kitchen,Shared pool,Air conditioning,Dishes and silverware
## 985 Hangers,Bed linens,Coffee maker,Washer,Hair dryer,Pool,Long term stays allowed,Elevator,Nespresso machine,Refrigerator,Dryer,Microwave,Gym,Wifi,Heating,Cable TV,Hot water,Stove,Iron,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 986 Cleaning before checkout,Hangers,Bed linens,Washer,Hair dryer,Long term stays allowed,Private entrance,Patio or balcony,Refrigerator,Dryer,Microwave,Wifi,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 987 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Cable TV,Refrigerator,Elevator,Dryer,Host greets you,Wifi,Hot water,Stove,Microwave,Air conditioning,Dishes and silverware,TV with standard cable,Iron
## 988 Hangers,Bed linens,Washer,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Private entrance,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 989 Essentials,Security cameras on property,Hangers,Keypad,Long term stays allowed,Washer,Private entrance,Lock on bedroom door,Refrigerator,Dryer,First aid kit,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Dishes and silverware,Fire extinguisher
## 990 Shampoo,Essentials,Security cameras on property,Hangers,Long term stays allowed,Washer,Private entrance,Hair dryer,Lock on bedroom door,Refrigerator,Elevator,Host greets you,First aid kit,Wifi,TV,Air conditioning,Dedicated workspace,Iron,Fire extinguisher
## 991 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Elevator,Wifi,Hot water,Microwave,Air conditioning,Dedicated workspace,Pool
## 992 Hangers,Bed linens,Washer,Hair dryer,Dedicated workspace,Long term stays allowed,Private entrance,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Heating,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 993 Hangers,Cooking basics,Washer,Hair dryer,Oven,TV,Dedicated workspace,Long term stays allowed,Private entrance,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Dishwasher,Heating,Paid parking off premises,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 994 Hangers,Bed linens,Hot water kettle,Coffee maker,Cooking basics,Washer,Single level home,Carbon monoxide alarm,Hair dryer,Oven,TV,Baking sheet,Dedicated workspace,Long term stays allowed,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Shampoo,Shared patio or balcony,Keypad,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 995 Shampoo,Essentials,Hangers,Bed linens,Kitchen,Long term stays allowed,Hair dryer,Refrigerator,First aid kit,Wifi,Hot water,Stove,Dishes and silverware,TV,Air conditioning,Dedicated workspace,Shower gel,Iron,Fire extinguisher
## 996 Shampoo,Building staff,Essentials,Long term stays allowed,Hair dryer,Lock on bedroom door,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Fire extinguisher
## 997 Shampoo,Building staff,Essentials,Long term stays allowed,Hair dryer,Lock on bedroom door,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Fire extinguisher
## 998 Shampoo,Building staff,Essentials,Long term stays allowed,Hair dryer,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Fire extinguisher
## 999 Shampoo,Building staff,Essentials,Long term stays allowed,Hair dryer,Lock on bedroom door,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Fire extinguisher
## 1000 Shampoo,Building staff,Essentials,Long term stays allowed,Hair dryer,Lock on bedroom door,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Fire extinguisher
## 1001 Shampoo,Essentials,Long term stays allowed,Hair dryer,Lock on bedroom door,Wifi,TV,Lockbox,Air conditioning,Dedicated workspace,Smoke alarm,Fire extinguisher
## 1002 Shampoo,Building staff,Essentials,Hangers,Long term stays allowed,Lock on bedroom door,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Fire extinguisher
## 1003 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,Pool,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 1004 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,Pool,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 1005 Hangers,Cooking basics,Washer,Hair dryer,TV,Pool,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 1006 Hangers,Bed linens,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Heating,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 1007 Hangers,Cooking basics,Washer,Hair dryer,TV,Pool,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 1008 Hangers,Bed linens,Hot water kettle,Freezer,Washer,Bathtub,Hair dryer,Dining table,Dedicated workspace,Long term stays allowed,Drying rack for clothing,Private entrance,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Portable fans,Heating,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Essentials,Clothing storage: closet,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 1009 Backyard,Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Hair dryer,Host greets you,Oven,Dedicated workspace,Free parking on premises,Pool,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,Microwave,Waterfront,Gym,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1010 Hangers,Bed linens,Washer,Smart lock,Carbon monoxide alarm,Hair dryer,Oven,TV,Dedicated workspace,Long term stays allowed,Lock on bedroom door,Refrigerator,Patio or balcony,Microwave,Free street parking,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 1011 Toaster,Rice maker,Hangers,Bed linens,Cooking basics,Washer,TV,Dining table,Dedicated workspace,Room-darkening shades,Wine glasses,Long term stays allowed,Drying rack for clothing,Private entrance,Elevator,Patio or balcony,Refrigerator,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Ceiling fan,Portable fans,Heating,Hot tub,Hot water,Stove,Iron,Clothing storage: closet and walk-in closet,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 1012 Shampoo,Essentials,Heating,Kitchen,Long term stays allowed,Washer,Host greets you,Dryer,Wifi,TV,Air conditioning,Free parking on premises,Fire extinguisher
## 1013 Shampoo,Breakfast,Essentials,Long term stays allowed,Washer,Hair dryer,Dryer,Wifi,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 1014 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware
## 1015 Hangers,Bed linens,Washer,Hair dryer,TV,Lockbox,Dedicated workspace,Long term stays allowed,Lock on bedroom door,Dryer,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Heating,Hot water,Mini fridge,Stove,Iron,Essentials,Kitchen,Air conditioning,Shower gel,Fire extinguisher
## 1016 Shampoo,Essentials,Kitchen,Cooking basics,Long term stays allowed,Washer,Hair dryer,Dryer,Wifi,Lockbox,Air conditioning
## 1017 Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Microwave,TV,Air conditioning,Dishes and silverware,Iron
## 1018 Shampoo,Essentials,Hangers,Kitchen,Paid parking off premises,Washer,Private entrance,Hair dryer,Lock on bedroom door,Host greets you,Dryer,Wifi,Hot water,TV,Paid parking on premises,Air conditioning,Iron
## 1019 Hangers,Coffee maker,Cooking basics,Washer,Hair dryer,Oven,Paid parking on premises,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Dryer,Wifi,Shampoo,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable
## 1020 Hangers,Bed linens,Washer,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Lock on bedroom door,Dryer,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Heating,Mini fridge,Stove,Iron,Essentials,Kitchen,Air conditioning,Shower gel,Fire extinguisher
## 1021 Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Cable TV,Elevator,Dryer,Wifi,Hot water,Gym,Air conditioning,Pool,TV with standard cable,Iron
## 1022 Hangers,Washer,Hair dryer,TV,Free parking on premises,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Building staff,Essentials,Kitchen,Air conditioning,Fire extinguisher
## 1023 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Hot water,Gym,TV,Shared pool,Air conditioning,Dishes and silverware,Iron
## 1024 Hangers,Washer,Hair dryer,TV,Free parking on premises,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Heating,Hot water,Iron,Building staff,Essentials,Kitchen,Air conditioning,Fire extinguisher
## 1025 Shampoo,Essentials,Heating,Kitchen,Long term stays allowed,Washer,Private entrance,Hair dryer,Cable TV,Lock on bedroom door,Host greets you,First aid kit,Wifi,Hot water,Free street parking,Air conditioning,Free parking on premises,TV with standard cable
## 1026 Shampoo,Essentials,Heating,Kitchen,Long term stays allowed,Washer,Private entrance,Hair dryer,Cable TV,Lock on bedroom door,Host greets you,Wifi,Hot water,Free street parking,Air conditioning,Free parking on premises,TV with standard cable
## 1027 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Microwave,Gym,TV,Pool,Air conditioning,Dishes and silverware,Iron
## 1028 Hangers,Bed linens,Washer,Hair dryer,Oven,Free parking on premises,Dedicated workspace,Long term stays allowed,Refrigerator,Dryer,Microwave,Wifi,Shampoo,Heating,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1029 Hangers,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Free parking on premises,Pool,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 1030 Hangers,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Crib,Long term stays allowed,Lock on bedroom door,Free street parking,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Essentials,Private fenced garden or backyard,First aid kit,Air conditioning,Fire extinguisher
## 1031 Essentials,Safe,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Microwave,Gym,TV,Air conditioning,Pool,Iron
## 1032 Bidet,Hangers,Bed linens,Washer,Hair dryer,Bathtub,Host greets you,Ethernet connection,Outdoor furniture,High chair,Dedicated workspace,Crib,Long term stays allowed,Outdoor dining area,Lock on bedroom door,Dryer,Free street parking,Wifi,Luggage dropoff allowed,Shampoo,Hot water,Body soap,Iron,Essentials,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 1033 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Patio or balcony,Elevator,Dryer,Wifi,Hot water,Gym,Air conditioning,Dedicated workspace,Pool
## 1034 Backyard,Hangers,Bed linens,Washer,Hair dryer,Free parking on premises,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Cable TV,Hot water,Iron,Building staff,Essentials,First aid kit,Air conditioning,TV with standard cable,Fire extinguisher
## 1035 Cleaning before checkout,Backyard,Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Hair dryer,Host greets you,Oven,TV,Dedicated workspace,Room-darkening shades,Long term stays allowed,Lock on bedroom door,Refrigerator,Patio or balcony,Microwave,Baby bath,Free street parking,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Heating,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware
## 1036 Hangers,Bed linens,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Long term stays allowed,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 1037 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Elevator,Lock on bedroom door,Wifi,Gym,Air conditioning,Dedicated workspace,Pool
## 1038 Hangers,Washer,Hair dryer,Host greets you,TV,Free parking on premises,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Dryer,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Heating,Hot tub,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Fire extinguisher
## 1039 Hangers,Cooking basics,Washer,Hair dryer,TV,Long term stays allowed,Private entrance,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Heating,Paid parking off premises,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1040 Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,Host greets you,Oven,Dedicated workspace,Free parking on premises,Pool,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 1041 Hangers,Heating,Kitchen,Hot water kettle,Washer,Long term stays allowed,Hair dryer,Elevator,Refrigerator,Host greets you,Dryer,Wifi,Hot water,Stove,Microwave,TV,Air conditioning,Dishes and silverware,Iron
## 1042 Hangers,Washer,Hair dryer,TV,Free parking on premises,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Building staff,Essentials,Kitchen,Air conditioning,Fire extinguisher
## 1043 Hangers,Washer,Hair dryer,TV,Free parking on premises,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Building staff,Essentials,Kitchen,Air conditioning,Fire extinguisher
## 1044 Backyard,Hangers,Bed linens,Washer,Hair dryer,Free parking on premises,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Wifi,Luggage dropoff allowed,Shampoo,Breakfast,Extra pillows and blankets,Cable TV,Hot water,Iron,Building staff,Essentials,First aid kit,Air conditioning,TV with standard cable,Fire extinguisher
## 1045 Shampoo,Essentials,Extra pillows and blankets,Hangers,Pack \\u2019n play/Travel crib,Long term stays allowed,Luggage dropoff allowed,Hair dryer,Host greets you,Refrigerator,Wifi,Hot water,Free street parking,Air conditioning,Dedicated workspace,Iron
## 1046 Hangers,Coffee maker,Cooking basics,Washer,Single level home,Hair dryer,Host greets you,Oven,TV,Free parking on premises,Security cameras on property,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Dishwasher,Hot water,Stove,BBQ grill,Iron,Essentials,Kitchen,Private patio or balcony,First aid kit,Shared pool,Air conditioning,Dishes and silverware
## 1047 Hangers,Bed linens,Washer,Smart lock,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Lock on bedroom door,Refrigerator,Patio or balcony,Microwave,Free street parking,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 1048 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Private entrance,Hair dryer,Elevator,Dryer,Wifi,Pool,Gym,TV,Air conditioning,Dedicated workspace,Dishes and silverware,Iron
## 1049 Shampoo,Essentials,Bidet,Hangers,Heating,Dedicated workspace: ,Long term stays allowed,Washer,Elevator,Host greets you,Refrigerator,Hot water,Stove,Air conditioning,Dishes and silverware
## 1050 Shampoo,Essentials,Heating,Long term stays allowed,Carbon monoxide alarm,First aid kit,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm
## 1051 Shampoo,Essentials,Heating,Long term stays allowed,Carbon monoxide alarm,First aid kit,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm
## 1052 Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Microwave,Gym,TV,Air conditioning,Pool,Iron
## 1053 Hangers,Washer,Hair dryer,TV,Free parking on premises,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Building staff,Essentials,Kitchen,Air conditioning,Fire extinguisher
## 1054 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Hot water,Gym,Pool,TV,Air conditioning,Dedicated workspace,Dishes and silverware,Iron
## 1055 Essentials,Kitchen,Long term stays allowed,Washer,Elevator,Wifi,Gym,Air conditioning,Pool
## 1056 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Bathtub,Oven,Dedicated workspace,Free parking on premises,Room-darkening shades,Cleaning products,Long term stays allowed,Lock on bedroom door,Refrigerator,Patio or balcony,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Hot water,Stove,Body soap,Iron,Building staff,Essentials,Clothing storage: dresser and closet,Kitchen,Dishes and silverware,Air conditioning,Shower gel
## 1057 Long term stays allowed
## 1058 Hangers,Bed linens,Washer,Hair dryer,Dedicated workspace,Long term stays allowed,Private entrance,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Heating,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 1059 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,Dedicated workspace,Pool,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Shampoo,Extra pillows and blankets,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1060 Cleaning before checkout,Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Oven,Ethernet connection,Dedicated workspace,Free parking on premises,Pool,Lake access,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Waterfront,Gym,Wifi,Beachfront,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Cable TV,Hot tub,Hot water,Stove,BBQ grill,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 1061 Shampoo,Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Refrigerator,Host greets you,Wifi,Hot water,Microwave,Air conditioning,Dedicated workspace,Dishes and silverware,Iron
## 1062 Rice maker,Hangers,Bed linens,Hot water kettle,Freezer,Washer,Hair dryer,Host greets you,Oven,Dining table,Dedicated workspace,Pool,Lake access,Long term stays allowed,Drying rack for clothing,Laundromat nearby,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Shampoo,Shared garden or backyard,Dishwasher,Extra pillows and blankets,Heating,Cable TV,Hot tub,Hot water,Stove,Body soap,Outdoor shower,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 1063 Hangers,Cooking basics,Washer,Hair dryer,Oven,TV,Long term stays allowed,Patio or balcony,Refrigerator,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Heating,Paid parking off premises,Hot water,Iron,Shower gel,Building staff,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1064 Hangers,Cooking basics,Washer,Single level home,Hair dryer,Host greets you,Dedicated workspace,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Essentials,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 1065 Shampoo,Essentials,Hangers,Kitchen,Cooking basics,Long term stays allowed,Washer,Elevator,Refrigerator,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Dishes and silverware,Iron
## 1066 Hangers,Cooking basics,Washer,Hair dryer,TV,High chair,Pool,Crib,Long term stays allowed,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 1067 Shampoo,Essentials,Security cameras on property,Hangers,Paid parking off premises,Paid parking on premises,Long term stays allowed,Hair dryer,Cable TV,Elevator,Host greets you,First aid kit,Wifi,Hot water,Shared pool,Air conditioning,Dedicated workspace,TV with standard cable,Iron
## 1068 Kitchen,Long term stays allowed,Washer,Cable TV,Elevator,Dryer,First aid kit,Wifi,Pool,Gym,Air conditioning,Free parking on premises,Smoke alarm,TV with standard cable,Fire extinguisher
## 1069 Hangers,Bed linens,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Stove,Microwave,TV,Gym,Air conditioning,Dishes and silverware,Shared pool,Iron
## 1070 Hangers,Bed linens,Cooking basics,Washer,Smart lock,Hair dryer,Oven,TV,Dedicated workspace,Free parking on premises,Pool,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Dryer,Gym,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Hot water,Stove,BBQ grill,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1071 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Microwave,Gym,TV,Air conditioning,Pool,Iron
## 1072 Shampoo,Building staff,Essentials,Kitchen,Paid parking off premises,Long term stays allowed,Washer,Hair dryer,Cable TV,Lock on bedroom door,Dryer,First aid kit,Wifi,Hot water,Air conditioning,TV with standard cable
## 1073 Shampoo,Building staff,Essentials,Long term stays allowed,Washer,Private entrance,Hair dryer,Lock on bedroom door,Elevator,Dryer,First aid kit,Wifi,Hot water,TV,Paid parking on premises,Air conditioning,Dedicated workspace,Iron,Fire extinguisher
## 1074 Bed linens,Washer,Hair dryer,TV,Paid parking on premises,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Wifi,Shampoo,Extra pillows and blankets,Hot water,Iron,Building staff,Essentials,First aid kit,Air conditioning,Fire extinguisher
## 1075 Bed linens,Washer,Single level home,Carbon monoxide alarm,Hair dryer,Host greets you,Dedicated workspace,Pool,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Microwave,Gym,Wifi,Smoke alarm,Paid parking off premises,Hot water,Stove,Iron,Kitchen,Air conditioning
## 1076 Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Cable TV,Refrigerator,Elevator,Dryer,Wifi,Microwave,Air conditioning,TV with standard cable,Iron
## 1077 Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Cable TV,Refrigerator,Elevator,Dryer,Wifi,Hot water,Microwave,Air conditioning,TV with standard cable,Iron
## 1078 Shampoo,Essentials,Hangers,Long term stays allowed,Washer,Private entrance,Hair dryer,Lock on bedroom door,Elevator,Host greets you,First aid kit,Wifi,Hot water,TV,Paid parking on premises,Air conditioning,Dedicated workspace,Iron,Fire extinguisher
## 1079 Hangers,Bed linens,Washer,Single level home,Carbon monoxide alarm,Hair dryer,Host greets you,Dedicated workspace,Pool,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Microwave,Gym,Beachfront,Wifi,Smoke alarm,Extra pillows and blankets,Paid parking off premises,Hot water,Stove,Iron,Kitchen,Air conditioning
## 1080 Hangers,Coffee maker,Cooking basics,Washer,Smart lock,Hair dryer,Oven,TV,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Dishwasher,Hot water,Stove,Beach essentials,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1081 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Elevator,Wifi,Hot water,Free parking on premises,Air conditioning,Dedicated workspace
## 1082 Shampoo,Essentials,Security cameras on property,Hangers,Long term stays allowed,Washer,Private entrance,Hair dryer,Elevator,Host greets you,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Iron,Fire extinguisher
## 1083 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Hot water,Gym,TV,Air conditioning,Pool,Iron
## 1084 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Hot water,Gym,TV,Air conditioning,Pool,Iron
## 1085 Hangers,Heating,Kitchen,Long term stays allowed,Washer,Private entrance,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Microwave,TV,Air conditioning,Dishes and silverware,Iron
## 1086 Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Dryer,Wifi,Free parking on premises,Shared hot tub,Gym,Air conditioning,Dedicated workspace,Pool
## 1087 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Wifi,Hot water,Free parking on premises,Hot tub,TV,Gym,Air conditioning,Dedicated workspace,Pool,Lockbox,Iron
## 1088 Cleaning before checkout,Hangers,Bed linens,Hot water kettle,Cooking basics,Freezer,Washer,Hair dryer,Bathtub,Clothing storage,Dining table,Dedicated workspace,Cleaning products,Long term stays allowed,Drying rack for clothing,Private entrance,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Portable fans,Heating,Paid parking off premises,Cable TV,Hot water,Mini fridge,Stove,Body soap,Iron,Essentials,Kitchen,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable
## 1089 Shampoo,Essentials,Hangers,Bed linens,Kitchen,Long term stays allowed,Hair dryer,Refrigerator,First aid kit,Wifi,Hot water,Stove,Dishes and silverware,TV,Air conditioning,Dedicated workspace,Shower gel,Iron,Fire extinguisher
## 1090 Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,Host greets you,Dedicated workspace,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Paid parking off premises,Cable TV,Hot water,Stove,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 1091 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 1092 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,TV,Air conditioning,Dedicated workspace,Iron
## 1093 Hangers,Bed linens,Hair dryer,TV,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Wifi,Shampoo,Hot water,Stove,Iron,Shower gel,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 1094 Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Microwave,Gym,TV,Air conditioning,Pool,Iron
## 1095 Long term stays allowed,Washer,Lock on bedroom door,Dryer,First aid kit,Wifi,Hot water,Air conditioning,Smoke alarm,Iron,Fire extinguisher
## 1096 Shampoo,Essentials,Backyard,Hangers,Coffee maker,Cooking basics,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Lock on bedroom door,Host greets you,Wifi,Free parking on premises,Air conditioning,Dedicated workspace,Smoke alarm,Iron
## 1097 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Cable TV,Lock on bedroom door,First aid kit,Wifi,Air conditioning,Free parking on premises,Dishes and silverware,TV with standard cable,Iron
## 1098 Long term stays allowed,Washer,Lock on bedroom door,Dryer,First aid kit,Wifi,Air conditioning,Smoke alarm,Iron,Fire extinguisher
## 1099 Safe,Hangers,Hot water kettle,Washer,Single level home,Bathtub,Hair dryer,TV,Dining table,Pool,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Gym,Paid street parking off premises,Wifi,Hot water,Iron,Essentials,Kitchen,Air conditioning
## 1100 Hangers,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Long term stays allowed,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 1101 Essentials,Hangers,Kitchen,Paid parking off premises,Long term stays allowed,Washer,Lock on bedroom door,Dryer,Wifi,Hot water,Air conditioning,Dedicated workspace,Iron
## 1102 Shampoo,Essentials,Cleaning before checkout,Hangers,Heating,Kitchen,Long term stays allowed,Elevator,Host greets you,Wifi,Hot water,Dishes and silverware,Gym,TV,Pool,Air conditioning,Dedicated workspace,Smoke alarm
## 1103 Shampoo,Essentials,Kitchen,Long term stays allowed,Washer,Elevator,Lock on bedroom door,Free parking on premises,Hot water,Wifi,Dedicated workspace,Iron
## 1104 Shampoo,Essentials,Hangers,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Host greets you,Dryer,Wifi,TV,Air conditioning,Dedicated workspace
## 1105 Essentials,Hangers,Paid street parking off premises,Kitchen,Long term stays allowed,Washer,Hair dryer,Patio or balcony,Refrigerator,Elevator,Dryer,Wifi,Hot water,Microwave,Gym,TV,Air conditioning,Pool,Iron
## 1106 Shampoo,Essentials,Hangers,Bed linens,Kitchen,Long term stays allowed,Hair dryer,Refrigerator,First aid kit,Wifi,Hot water,Stove,Dishes and silverware,TV,Air conditioning,Dedicated workspace,Shower gel,Iron,Fire extinguisher
## 1107 Essentials,Safe,Hangers,Kitchen,Hot water kettle,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Microwave,Gym,TV,Air conditioning,Pool,Iron
## 1108 Hangers,Bed linens,Hair dryer,Host greets you,Dedicated workspace,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,Microwave,Free street parking,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Stove,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1109 Hangers,Bed linens,Washer,Hair dryer,TV,Pool,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Gym,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Hot tub,Hot water,Iron,Essentials,Air conditioning,Dishes and silverware
## 1110 Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Microwave,Gym,TV,Air conditioning,Pool,Iron
## 1111 Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Microwave,Gym,TV,Air conditioning,Pool,Iron
## 1112 Hangers,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Microwave,TV,Air conditioning,Dishes and silverware,Iron
## 1113 Hangers,Kitchen,Cooking basics,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Host greets you,Dryer,Wifi,Hot water,Microwave,Pool,TV,Air conditioning,Dishes and silverware,Iron
## 1114 Hangers,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,TV,Air conditioning,Iron
## 1115 Hangers,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Hot water,TV,Air conditioning,Iron
## 1116 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Hot water,Gym,TV,Air conditioning,Pool,Iron
## 1117 Hangers,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Microwave,TV,Air conditioning,Dishes and silverware,Iron
## 1118 Coffee maker,Cooking basics,Washer,Hair dryer,Fire pit,Shared hot tub,Outdoor furniture,TV,Paid parking on premises,Long term stays allowed,Outdoor dining area,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Free street parking,Wifi,Smoke alarm,Shampoo,Keypad,Hot water,BBQ grill,Essentials,Kitchen,Private fenced garden or backyard,Air conditioning
## 1119 Coffee maker,Cooking basics,Washer,Hair dryer,Fire pit,Shared hot tub,Outdoor furniture,TV,Long term stays allowed,Outdoor dining area,Lock on bedroom door,Free street parking,Wifi,Smoke alarm,Shampoo,Keypad,Heating,Hot water,BBQ grill,Essentials,Kitchen,Air conditioning
## 1120 Essentials,Hangers,Paid street parking off premises,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Microwave,Gym,TV,Air conditioning,Pool,Iron
## 1121 Hangers,Bed linens,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Hot water,Gym,TV,Air conditioning,Pool,Iron
## 1122 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Luggage dropoff allowed,Hair dryer,Elevator,Host greets you,Wifi,Free parking on premises,Air conditioning,Dedicated workspace,Iron
## 1123 Hangers,Washer,Hair dryer,Free parking on premises,Dedicated workspace,Pool,Long term stays allowed,Elevator,Lock on bedroom door,Dryer,Gym,Wifi,Shampoo,Breakfast,Cable TV,Hot tub,Iron,Building staff,Essentials,Kitchen,Air conditioning,TV with standard cable,Fire extinguisher
## 1124 Shampoo,Smoke alarm,Hangers,Bed linens,Kitchen,Long term stays allowed,Washer,Private entrance,Hair dryer,Elevator,Dryer,First aid kit,Wifi,Pool,Gym,TV,Air conditioning,Dedicated workspace,Shower gel,Iron
## 1125 Hangers,Washer,Hair dryer,Shared fenced garden or backyard,TV,Lockbox,Free parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Wifi,Smoke alarm,Shampoo,Breakfast,Heating,Iron,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 1126 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Wifi,Free parking on premises,Air conditioning,Dedicated workspace,Iron
## 1127 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Hair dryer,Host greets you,Oven,TV,Outdoor furniture,Dedicated workspace,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Gym,Wifi,Shampoo,Shared patio or balcony,Heating,Hot water,Stove,Iron,Essentials,Kitchen,Shared pool,Air conditioning,Dishes and silverware
## 1128 Ceiling fan,Shared patio or balcony,Essentials,Hangers,Bed linens,Kitchen,Long term stays allowed,Washer,Elevator,Dryer,Free parking on premises,Gym,TV,Shared pool,Air conditioning,Dedicated workspace
## 1129 Essentials,Hangers,Paid street parking off premises,Kitchen,Long term stays allowed,Washer,Hair dryer,Patio or balcony,Refrigerator,Elevator,Dryer,Wifi,Microwave,Gym,TV,Air conditioning,Pool,Iron
## 1130 Shampoo,Breakfast,Essentials,Hangers,Long term stays allowed,Washer,Luggage dropoff allowed,Smart lock,Hair dryer,Lock on bedroom door,Host greets you,Dryer,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron
## 1131 Hangers,Bed linens,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Microwave,Gym,TV,Pool,Air conditioning,Dishes and silverware,Iron
## 1132 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Microwave,Gym,TV,Pool,Air conditioning,Dishes and silverware,Iron
## 1133 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Microwave,Gym,TV,Pool,Air conditioning,Dishes and silverware,Iron
## 1134 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Hot water,Gym,TV,Air conditioning,Pool,Iron
## 1135 Rice maker,Bidet,Sound system,Trash compactor,Toaster,Hangers,Bed linens,Hot water kettle,Freezer,Coffee maker,Washer,Cooking basics,Single level home,Hair dryer,Bathtub,Clothing storage,Oven,Ethernet connection,TV,Baking sheet,Dining table,Dedicated workspace,Paid parking on premises,Room-darkening shades,Lockbox,Cleaning products,Wine glasses,Cleaning before checkout,Long term stays allowed,Drying rack for clothing,Laundromat nearby,Elevator,Lock on bedroom door,Refrigerator,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Ceiling fan,Extra pillows and blankets,Portable fans,Conditioner,Paid parking off premises,Barbecue utensils,Hot water,Mini fridge,Stove,Body soap,Bikes,Iron,Essentials,Kitchen,First aid kit,Private gym in building,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 1136 Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Cable TV,Elevator,Dryer,Wifi,Hot water,Air conditioning,TV with standard cable,Iron
## 1137 Backyard,Hangers,Bed linens,Coffee maker,Washer,Single level home,Hair dryer,TV,Dedicated workspace,Pool,Security cameras on property,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,Microwave,Waterfront,Gym,Wifi,Shampoo,Keypad,Hot water,Iron,Essentials,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 1138 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Microwave,Gym,TV,Pool,Air conditioning,Dishes and silverware,Iron
## 1139 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Oven,Dedicated workspace,Free parking on premises,Long term stays allowed,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Shampoo,Extra pillows and blankets,Hot water,Stove,BBQ grill,Iron,Shower gel,Essentials,Air conditioning,Dishes and silverware
## 1140 Hangers,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Host greets you,Dryer,Wifi,Hot water,TV,Air conditioning,Iron
## 1141 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,Paid parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Shampoo,Keypad,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 1142 Hangers,Bed linens,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Hot water,Gym,TV,Air conditioning,Pool,Iron
## 1143 Hangers,Bed linens,Washer,Hair dryer,Host greets you,Ethernet connection,Dedicated workspace,Pool,Long term stays allowed,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Shampoo,Cable TV,Hot water,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 1144 Shampoo,Essentials,Hangers,Long term stays allowed,Washer,Wifi,Free parking on premises,Gym,TV,Air conditioning,Dedicated workspace,Pool
## 1145 Shampoo,Breakfast,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Luggage dropoff allowed,Hair dryer,Lock on bedroom door,Host greets you,Dryer,First aid kit,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Iron
## 1146 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Host greets you,Dryer,First aid kit,Wifi,Hot water,TV,Air conditioning
## 1147 Shampoo,Essentials,Hangers,Kitchen,Cooking basics,Long term stays allowed,Washer,Cable TV,Lock on bedroom door,Refrigerator,Host greets you,Dryer,Oven,Wifi,Hot water,Stove,Microwave,Air conditioning,TV with standard cable,Iron
## 1148 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Hair dryer,Host greets you,Refrigerator,Wifi,Hot water,Stove,Gym,Pool,Air conditioning,Dishes and silverware
## 1149 Shampoo,Essentials,Security cameras on property,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Elevator,Wifi,TV,Air conditioning,Free parking on premises,Iron
## 1150 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Private entrance,Hair dryer,Lock on bedroom door,Elevator,Wifi,Free parking on premises,Gym,TV,Air conditioning,Dedicated workspace,Pool
## 1151 Hangers,Bed linens,Coffee maker,Washer,TV,Free parking on premises,Dedicated workspace,Pool,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Microwave,Gym,Wifi,Shampoo,Extra pillows and blankets,Hot water,Essentials,Kitchen,Air conditioning,Shower gel
## 1152 Hangers,Bed linens,Carbon monoxide alarm,Hair dryer,Host greets you,Dedicated workspace,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,Microwave,Free street parking,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Stove,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1153 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Carbon monoxide alarm,Elevator,Lock on bedroom door,Dryer,First aid kit,Wifi,Hot water,Gym,Shared pool,Air conditioning,Free parking on premises,Smoke alarm
## 1154 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Oven,Paid parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 1155 Shampoo,Breakfast,Essentials,Hangers,Long term stays allowed,Washer,Hair dryer,Host greets you,Dryer,Wifi,Hot water,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 1156 Shampoo,Breakfast,Essentials,Security cameras on property,Hangers,Long term stays allowed,Washer,Hair dryer,Host greets you,Dryer,Wifi,Hot water,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 1157 Hangers,Bed linens,Washer,Carbon monoxide alarm,Hair dryer,Paid parking on premises,Security cameras on property,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Wifi,Luggage dropoff allowed,Shampoo,Dishwasher,Keypad,Hot water,Essentials,Kitchen,First aid kit,Air conditioning
## 1158 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Oven,Paid parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Heating,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 1159 Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Microwave,Gym,TV,Air conditioning,Pool,Iron
## 1160 Essentials,Kitchen,Long term stays allowed,Washer,Lock on bedroom door,Wifi,Hot water,Stove,TV,Air conditioning,Dedicated workspace,Fire extinguisher
## 1161 Essentials,Hangers,Kitchen,Paid parking off premises,Long term stays allowed,Washer,Elevator,Lock on bedroom door,Wifi,Hot water,Air conditioning
## 1162 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Microwave,Gym,TV,Shared pool,Air conditioning,Dishes and silverware,Iron
## 1163 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Oven,TV,Dedicated workspace,Long term stays allowed,Lock on bedroom door,Refrigerator,Patio or balcony,Microwave,Free street parking,Wifi,Smoke alarm,Shampoo,Extra pillows and blankets,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1164 Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Microwave,Gym,TV,Air conditioning,Pool,Iron
## 1165 Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,Oven,Ethernet connection,Lockbox,Dedicated workspace,Room-darkening shades,Long term stays allowed,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1166 Hangers,Kitchen,Long term stays allowed,Washer,Elevator,Lock on bedroom door,Wifi,Hot water,Gym,TV,Air conditioning,Dedicated workspace,Pool
## 1167 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Wifi,Free street parking,TV,Air conditioning,Dedicated workspace,Pool,Iron
## 1168 Cleaning before checkout,Hangers,Washer,Hair dryer,Host greets you,TV,Paid parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Heating,Hot water,Iron,Essentials,First aid kit,Air conditioning,Fire extinguisher
## 1169 Shampoo,Essentials,Hangers,Pool table,Kitchen,Freezer,Long term stays allowed,Washer,Drying rack for clothing,Clothing storage,Lock on bedroom door,Refrigerator,Wifi,Hot water,Stove,Body soap,Air conditioning,Shower gel
## 1170 Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Cable TV,Refrigerator,Elevator,Dryer,Host greets you,Wifi,Hot water,Microwave,Air conditioning,Dishes and silverware,TV with standard cable,Iron
## 1171 Bed linens,Washer,Ethernet connection,Paid parking on premises,Lockbox,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Microwave,Wifi,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 1172 Hangers,Kitchen,Paid parking off premises,Long term stays allowed,Washer,Elevator,Lock on bedroom door,Wifi,Hot water,Gym,Air conditioning,Dedicated workspace,Pool
## 1173 Toaster,Hangers,Bed linens,Hot water kettle,Hair dryer,Host greets you,Ethernet connection,Outdoor furniture,Dining table,Dedicated workspace,Pool,Room-darkening shades,Shared gym in building,Wine glasses,Security cameras on property,Long term stays allowed,Laundromat nearby,Central air conditioning,Elevator,Lock on bedroom door,Refrigerator,Free washer \\u2013 In unit,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Ceiling fan,Dishwasher,Paid parking off premises,Free parking garage on premises,Hot tub,Hot water,Iron,Essentials,Private patio or balcony,First aid kit,Dishes and silverware,Fire extinguisher
## 1174 Essentials,Safe,Hangers,Kitchen,Hot water kettle,Free washer \\u2013 In building,Free dryer \\u2013 In building,Long term stays allowed,Bathtub,Hair dryer,Cable TV,Refrigerator,Elevator,Wifi,Hot water,Microwave,Air conditioning,TV with standard cable,Iron
## 1175 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Hot water,Microwave,Gym,TV,Pool,Air conditioning,Dishes and silverware,Iron
## 1176 Essentials,Safe,Dining table,Hangers,Kitchen,Hot water kettle,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Microwave,Gym,TV,Air conditioning,Pool,Iron
## 1177 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Dryer,Wifi,Air conditioning,Dedicated workspace,Iron
## 1178 Essentials,Hangers,Bed linens,Kitchen,Paid parking off premises,Long term stays allowed,Washer,Elevator,Lock on bedroom door,Wifi,Hot water,Air conditioning,Dedicated workspace
## 1179 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Microwave,Gym,TV,Pool,Air conditioning,Dishes and silverware,Iron
## 1180 Hangers,Washer,Hair dryer,TV,Free parking on premises,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Wifi,Luggage dropoff allowed,Shampoo,Breakfast,Hot water,Iron,Building staff,Essentials,First aid kit,Air conditioning,Fire extinguisher
## 1181 Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Elevator,Dryer,Wifi,Gym,TV,Air conditioning,Dedicated workspace,Pool,Iron
## 1182 Hangers,Washer,Hair dryer,TV,Free parking on premises,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Wifi,Luggage dropoff allowed,Shampoo,Breakfast,Hot water,Iron,Building staff,Essentials,First aid kit,Air conditioning,Fire extinguisher
## 1183 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Elevator,Dryer,Wifi,Hot tub,Gym,Air conditioning,Dedicated workspace,Pool,Iron
## 1184 Shampoo,Essentials,Hangers,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Lock on bedroom door,Refrigerator,Elevator,Wifi,Hot water,Air conditioning,Smoke alarm
## 1185 Hangers,Bed linens,Hot water kettle,Cooking basics,Washer,Hair dryer,Oven,Shared hot tub,Ethernet connection,Paid parking on premises,Dedicated workspace,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Shared patio or balcony,Heating,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Dishes and silverware,Shared pool,Air conditioning,Shower gel,TV with standard cable
## 1186 Rice maker,Sound system,Hangers,Bed linens,Pool table,Hot water kettle,Cooking basics,Washer,Ping pong table,Freezer,Hair dryer,Single level home,Oven,TV,Dining table,Room-darkening shades,Cleaning products,Shared gym in building,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Microwave,Wifi,Shampoo,Free dryer \\u2013 In unit,Conditioner,Hot water,Stove,Body soap,BBQ grill,Iron,Essentials,Clothing storage: closet,Kitchen,Dishes and silverware,Shared pool,Air conditioning,Shower gel
## 1187 Hangers,Bed linens,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Hot water,Gym,Pool,TV,Air conditioning,Dishes and silverware,Iron
## 1188 Hangers,Bed linens,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Microwave,Gym,TV,Pool,Air conditioning,Dishes and silverware,Iron
## 1189 Hangers,Washer,Hair dryer,TV,Free parking on premises,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Heating,Hot water,Iron,Building staff,Essentials,Kitchen,Air conditioning,Fire extinguisher
## 1190 Hangers,Washer,Hair dryer,TV,Free parking on premises,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Heating,Hot water,Iron,Building staff,Essentials,Kitchen,Air conditioning,Fire extinguisher
## 1191 Hangers,Washer,Hair dryer,TV,Free parking on premises,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Heating,Hot water,Iron,Building staff,Essentials,Kitchen,Air conditioning,Fire extinguisher
## 1192 Hangers,Washer,Hair dryer,TV,Free parking on premises,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Building staff,Essentials,Kitchen,First aid kit,Air conditioning,Fire extinguisher
## 1193 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Hot water,Gym,TV,Air conditioning,Pool,Iron
## 1194 Hangers,Washer,Hair dryer,TV,Free parking on premises,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Heating,Hot water,Iron,Building staff,Essentials,Kitchen,Air conditioning,Fire extinguisher
## 1195 Shampoo,TV,Bed linens,Kitchen,Cooking basics,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Wifi,Hot water,Body soap,Lockbox,Air conditioning,Dedicated workspace,Iron
## 1196 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Hot water,Gym,TV,Air conditioning,Pool,Iron
## 1197 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Hot water,Gym,TV,Air conditioning,Pool,Iron
## 1198 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Hot water,Gym,TV,Shared pool,Air conditioning,Iron
## 1199 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Hot water,Gym,TV,Air conditioning,Pool,Iron
## 1200 Hangers,Bed linens,Kitchen,Paid parking off premises,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Stove,Microwave,TV,Gym,Air conditioning,Dishes and silverware,Shared pool,Iron
## 1201 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Microwave,Gym,TV,Pool,Air conditioning,Dishes and silverware,Iron
## 1202 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Oven,Dedicated workspace,Long term stays allowed,Lock on bedroom door,Refrigerator,Microwave,Free street parking,Wifi,Smoke alarm,Shampoo,Extra pillows and blankets,Hot water,Stove,Iron,Essentials,Kitchen,Private patio or balcony,Air conditioning,Dishes and silverware
## 1203 Hangers,Bed linens,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Microwave,Gym,TV,Air conditioning,Pool,Iron
## 1204 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Microwave,Gym,TV,Pool,Air conditioning,Dishes and silverware,Iron
## 1205 Hangers,Coffee maker,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,Oven,Dedicated workspace,Free parking on premises,Long term stays allowed,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Smoke alarm,Shampoo,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 1206 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Microwave,Gym,TV,Shared pool,Air conditioning,Dishes and silverware,Iron
## 1207 Hangers,Bed linens,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Microwave,Gym,TV,Pool,Air conditioning,Dishes and silverware,Iron
## 1208 Safe,Hangers,Bed linens,Hot water kettle,Washer,Bathtub,Hair dryer,TV,Pool,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Hot water,Stove,Iron,Kitchen,Air conditioning,Dishes and silverware
## 1209 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Lock on bedroom door,Wifi,Free parking on premises,Gym,Air conditioning,Dedicated workspace,Pool
## 1210 Hangers,Bed linens,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Hot water,Microwave,Gym,TV,Shared pool,Air conditioning,Dishes and silverware,Iron
## 1211 Essentials,Hangers,Paid parking off premises,Long term stays allowed,Washer,Private entrance,Hair dryer,Lock on bedroom door,Host greets you,Dryer,First aid kit,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Dishes and silverware,Iron,Fire extinguisher
## 1212 Backyard,Hangers,Washer,Hair dryer,Host greets you,TV,Paid parking on premises,Dedicated workspace,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 1213 Shampoo,Essentials,Hangers,Keypad,Long term stays allowed,Washer,Luggage dropoff allowed,Hair dryer,Lock on bedroom door,Host greets you,Dryer,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Iron
## 1214 Shampoo,Essentials,Hangers,Long term stays allowed,Washer,Smart lock,Hair dryer,Lock on bedroom door,Dryer,Wifi,Hot water,Free parking on premises,Free street parking,TV,Air conditioning,Dedicated workspace
## 1215 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Microwave,Gym,TV,Pool,Air conditioning,Dishes and silverware,Iron
## 1216 Essentials,Hangers,Kitchen,Paid parking off premises,Long term stays allowed,Washer,Single level home,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Microwave,Gym,TV,Air conditioning,Pool,Iron
## 1217 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Microwave,Gym,TV,Pool,Air conditioning,Dishes and silverware,Iron
## 1218 Shampoo,Essentials,Hangers,Kitchen,Paid parking off premises,Long term stays allowed,Washer,Hair dryer,Elevator,Host greets you,Dryer,First aid kit,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Iron,Fire extinguisher
## 1219 Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Elevator,Wifi,TV,Air conditioning
## 1220 Hangers,Washer,Hair dryer,Host greets you,Free parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Patio or balcony,Microwave,Free street parking,Wifi,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 1221 Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Carbon monoxide alarm,Elevator,Dryer,First aid kit,Wifi,Free parking on premises,Paid parking on premises,Air conditioning,Dedicated workspace,Smoke alarm,Iron
## 1222 Cleaning before checkout,Backyard,Hangers,Bed linens,Cooking basics,Washer,Single level home,Carbon monoxide alarm,Hair dryer,Oven,TV,Paid parking on premises,Children\\u2019s books and toys,Dedicated workspace,Pool,Security cameras on property,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,Microwave,Gym,Wifi,Smoke alarm,Children\\u2019s dinnerware,Luggage dropoff allowed,Shampoo,Dishwasher,Extra pillows and blankets,Keypad,Paid parking off premises,Hot water,Stove,Iron,Bread maker,Essentials,Window guards,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel
## 1223 Shampoo,Breakfast,Essentials,Building staff,Hangers,Long term stays allowed,Luggage dropoff allowed,Private entrance,Hair dryer,Lock on bedroom door,First aid kit,Wifi,Hot water,Free parking on premises,TV,Air conditioning,Dedicated workspace,Pool,Iron,Fire extinguisher
## 1224 Hangers,Bed linens,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,Ethernet connection,Free parking on premises,Dedicated workspace,Pool,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Patio or balcony,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Cable TV,Hot water,BBQ grill,Essentials,Air conditioning,TV with standard cable
## 1225 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Host greets you,Dedicated workspace,Pool,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Shampoo,Hot water,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1226 Shampoo,Essentials,Indoor fireplace,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Elevator,First aid kit,Wifi,TV,Air conditioning,Smoke alarm,Fire extinguisher
## 1227 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Gym,Pool,TV,Air conditioning,Dishes and silverware,Iron
## 1228 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Oven,TV,Dedicated workspace,Long term stays allowed,Lock on bedroom door,Refrigerator,Microwave,Free street parking,Wifi,Smoke alarm,Shampoo,Extra pillows and blankets,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1229 Hangers,Bed linens,Cooking basics,Washer,Oven,Paid parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1230 Hangers,Bed linens,Hot water kettle,Cooking basics,Washer,Oven,Paid parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1231 Hangers,Bed linens,Cooking basics,Washer,Oven,Paid parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1232 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Oven,Lockbox,Dedicated workspace,Long term stays allowed,Lock on bedroom door,Refrigerator,Wifi,Shampoo,Shared patio or balcony,Extra pillows and blankets,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1233 Essentials,Extra pillows and blankets,Hangers,Bed linens,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Wifi,Hot water,Dishes and silverware,Free street parking,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron
## 1234 Shampoo,Essentials,Hangers,Private garden or backyard,Long term stays allowed,Hair dryer,First aid kit,Wifi,TV,Air conditioning,Dedicated workspace,Iron
## 1235 Hangers,Washer,Hair dryer,Host greets you,Oven,TV,Pool,Lake access,Long term stays allowed,Elevator,Lock on bedroom door,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Hot tub,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Fire extinguisher
## 1236 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Oven,TV,Paid parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1237 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Hair dryer,Oven,TV,Paid parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Dryer,Wifi,Luggage dropoff allowed,Dishwasher,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1238 Shampoo,Building staff,Essentials,Dishwasher,Hangers,Heating,Paid parking off premises,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Refrigerator,Dryer,Wifi,Hot water,TV,Air conditioning,Luggage dropoff allowed
## 1239 Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Private entrance,Elevator,Lock on bedroom door,Dryer,Wifi,Free parking on premises,Air conditioning,Dedicated workspace,Iron
## 1240 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Oven,Paid parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Heating,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 1241 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Oven,Paid parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1242 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Oven,TV,Paid parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1243 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Oven,TV,Paid parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1244 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Security cameras on property,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1245 Hangers,Bed linens,Cooking basics,Washer,Oven,Paid parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1246 Hangers,Bed linens,Cooking basics,Washer,Oven,Paid parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 1247 Bed linens,Washer,Carbon monoxide alarm,Hair dryer,Free parking on premises,Dedicated workspace,Pool,Security cameras on property,Lake access,Long term stays allowed,Elevator,Lock on bedroom door,Dryer,Gym,Wifi,Smoke alarm,Shampoo,Extra pillows and blankets,Heating,Hot tub,Hot water,Essentials,First aid kit,Air conditioning,Shower gel,Fire extinguisher
## 1248 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Private entrance,Hair dryer,Lock on bedroom door,Host greets you,Dryer,Wifi,Free parking on premises,Air conditioning,Dedicated workspace,Iron
## 1249 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 1250 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Oven,TV,Paid parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1251 Hangers,Bed linens,Cooking basics,Washer,Oven,TV,Paid parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1252 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Oven,Paid parking on premises,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Heating,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 1253 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Oven,TV,Paid parking on premises,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1254 Hangers,Bed linens,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Hot water,Gym,TV,Air conditioning,Pool,Iron
## 1255 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Stove,Microwave,TV,Gym,Air conditioning,Pool,Dishes and silverware,Iron
## 1256 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Private entrance,Hair dryer,Cable TV,Wifi,Hot water,Gym,Paid parking on premises,Air conditioning,Dedicated workspace,Pool,TV with standard cable,Iron
## 1257 Backyard,Hangers,Bed linens,Washer,Hair dryer,Oven,Outdoor furniture,Dedicated workspace,Free parking on premises,Long term stays allowed,Refrigerator,Dryer,Microwave,Wifi,Shampoo,Heating,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 1258 Hangers,Bed linens,Washer,Hair dryer,Free parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Patio or balcony,Microwave,Wifi,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 1259 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Hot water,Gym,TV,Air conditioning,Pool,Iron
## 1260 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Microwave,Gym,TV,Pool,Air conditioning,Dishes and silverware,Iron
## 1261 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Microwave,Gym,TV,Air conditioning,Pool,Iron
## 1262 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Hot water,Gym,TV,Air conditioning,Pool,Iron
## 1263 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Microwave,Gym,TV,Pool,Air conditioning,Dishes and silverware,Iron
## 1264 Hangers,Bed linens,Hot water kettle,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,Oven,Ethernet connection,Paid parking on premises,Dedicated workspace,Pool,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Dishwasher,Extra pillows and blankets,Heating,Cable TV,Hot tub,Hot water,Stove,Iron,Essentials,Kitchen,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable
## 1265 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Hair dryer,Dedicated workspace,Free parking on premises,Pool,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Pocket wifi,Refrigerator,Dryer,Microwave,Gym,Wifi,Shampoo,Extra pillows and blankets,Heating,Cable TV,Hot tub,Hot water,Iron,Essentials,Kitchen,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable
## 1266 Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Gym,TV,Air conditioning,Pool,Iron
## 1267 Shampoo,Breakfast,Essentials,Coffee maker,Long term stays allowed,Washer,Hair dryer,Patio or balcony,Refrigerator,Dryer,Wifi,Hot water,Microwave,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 1268 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Oven,Long term stays allowed,Lock on bedroom door,Refrigerator,Microwave,Free street parking,Wifi,Extra pillows and blankets,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 1269 Shampoo,Essentials,Kitchen,Long term stays allowed,Washer,Private entrance,Hair dryer,Lock on bedroom door,Host greets you,Dryer,Wifi,Hot water,Air conditioning,Free parking on premises,Pool
## 1270 Cleaning before checkout,Hangers,Bed linens,Washer,Single level home,Hair dryer,Free parking on premises,Dedicated workspace,Long term stays allowed,Elevator,Lock on bedroom door,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Hot tub,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning
## 1271 Bidet,Hangers,Bed linens,Hot water kettle,Freezer,Washer,Hair dryer,TV,Dedicated workspace,Room-darkening shades,Paid parking lot on premises,Long term stays allowed,Drying rack for clothing,Elevator,Lock on bedroom door,Children\\u2019s books and toys for ages 2-5 years old and 5-10 years old,Wifi,Luggage dropoff allowed,Shampoo,Breakfast,Extra pillows and blankets,Hot water,Mini fridge,Stove,Clothing storage: wardrobe,Body soap,Bikes,Iron,Building staff,Essentials,Kitchen,Dishes and silverware,Air conditioning,Shower gel
## 1272 Shampoo,Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Wifi,Hot water,Air conditioning,Iron
## 1273 Cleaning before checkout,Hangers,Coffee maker,Washer,Hair dryer,Oven,Dedicated workspace,Long term stays allowed,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Keypad,Heating,Paid parking off premises,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 1274 Security cameras on property,Kitchen,Long term stays allowed,Washer,Outdoor dining area,Wifi,Shared pool,Air conditioning,BBQ grill
## 1275 Hangers,Washer,Carbon monoxide alarm,Hair dryer,Oven,Dedicated workspace,Long term stays allowed,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,Microwave,Free street parking,Wifi,Smoke alarm,Luggage dropoff allowed,Paid parking off premises,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 1276 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Microwave,Gym,TV,Pool,Air conditioning,Dishes and silverware,Iron
## 1277 Shampoo,Breakfast,Hangers,Long term stays allowed,Washer,Hair dryer,Cable TV,Dryer,Wifi,Air conditioning,Dedicated workspace,TV with standard cable
## 1278 Hangers,Washer,Smart lock,Carbon monoxide alarm,Hair dryer,Oven,Dedicated workspace,Security cameras on property,Long term stays allowed,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,Microwave,Free street parking,Wifi,Smoke alarm,Luggage dropoff allowed,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 1279 Shampoo,Essentials,Cleaning before checkout,Hangers,Keypad,Kitchen,Washer,Elevator,Lock on bedroom door,Refrigerator,Wifi,Hot water,TV,Paid parking on premises,Air conditioning,Dedicated workspace,Iron
## 1280 Shampoo,Essentials,Hangers,Bed linens,Long term stays allowed,Washer,Single level home,Hair dryer,Lock on bedroom door,Elevator,Host greets you,Wifi,Hot water,Microwave,Free parking on premises,Gym,Shared pool,Air conditioning,Dedicated workspace,Iron
## 1281 Hangers,Bed linens,Cooking basics,Washer,Single level home,Host greets you,Oven,TV,Free parking on premises,Dedicated workspace,Pool,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Dryer,Gym,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning
## 1282 Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Elevator,Lock on bedroom door,Host greets you,Wifi,Air conditioning,Dedicated workspace,Pool
## 1283 Shampoo,Essentials,Hangers,Bed linens,Kitchen,Cooking basics,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Refrigerator,Oven,Free parking on premises,Microwave,Stove,TV,Air conditioning,Dedicated workspace,Dishes and silverware,Iron
## 1284 Hangers,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Hot water,Microwave,Gym,TV,Pool,Air conditioning,Dishes and silverware,Iron
## 1285 Shampoo,Essentials,Indoor fireplace,Cleaning before checkout,Hangers,Heating,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Wifi,Microwave,Gym,Pool,Air conditioning,Dedicated workspace,Smoke alarm
## 1286 Shampoo,Essentials,Hangers,Bed linens,Long term stays allowed,Carbon monoxide alarm,Hair dryer,Elevator,First aid kit,Wifi,Hot water,Free parking on premises,Hot tub,Gym,Pool,Air conditioning,Dedicated workspace,Smoke alarm,Lockbox
## 1287 Backyard,Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,Dedicated workspace,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Gym,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Keypad,Hot water,Iron,Essentials,Air conditioning
## 1288 Hangers,Bed linens,Record player,Hot water kettle,32\\ HDTV,Host greets you,Ethernet connection,Free parking on premises,Dedicated workspace,Shared outdoor olympic-sized pool,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Free washer \\u2013 In unit,Gym,Wifi,Shampoo,Ceiling fan,Extra pillows and blankets,Hot water,Iron,Essentials,Air conditioning,Dishes and silverware
## 1289 Essentials,Kitchen,Long term stays allowed,Washer,Lock on bedroom door,Refrigerator,Wifi,Hot water,TV,Lockbox,Air conditioning
## 1290 Shampoo,Long term stays allowed,Washer,Elevator,Wifi,Hot water,Gym,Shared pool,Air conditioning
## 1291 Hangers,Bed linens,Washer,Single level home,Hair dryer,Dedicated workspace,Security cameras on property,Lake access,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Dryer,Gym,Wifi,Extra pillows and blankets,Hot water,Building staff,Essentials,First aid kit,Air conditioning
## 1292 Backyard,Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Oven,TV,Dedicated workspace,Free parking on premises,Pool,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,Microwave,Gym,Wifi,Shampoo,Hot tub,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1293 Shampoo,Essentials,Hangers,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Elevator,Wifi,Free parking on premises,Gym,Pool,Air conditioning,Dedicated workspace,Smoke alarm,Iron
## 1294 Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Microwave,Gym,TV,Air conditioning,Pool,Iron
## 1295 Hangers,Long term stays allowed,Washer,Elevator,Lock on bedroom door,Wifi,Air conditioning
## 1296 Shampoo,Essentials,Long term stays allowed,Body soap,Lock on bedroom door,Refrigerator,Wifi,Hot water,Microwave,TV,Air conditioning
## 1297 Shampoo,Essentials,Long term stays allowed,Washer,Private entrance,Hair dryer,Lock on bedroom door,Elevator,Dryer,Wifi,Hot water,Gym,Air conditioning,Free parking on premises,Pool
## 1298 Hangers,Washer,Hair dryer,TV,Free parking on premises,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Building staff,Essentials,Kitchen,Air conditioning,Fire extinguisher
## 1299 Hangers,Washer,Hair dryer,TV,Free parking on premises,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Building staff,Essentials,Kitchen,Air conditioning,Fire extinguisher
## 1300 Hangers,Washer,Hair dryer,TV,Free parking on premises,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Heating,Hot water,Iron,Building staff,Essentials,Kitchen,Air conditioning,Fire extinguisher
## 1301 Hangers,Washer,Hair dryer,TV,Free parking on premises,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Heating,Hot water,Iron,Building staff,Essentials,Kitchen,Air conditioning,Fire extinguisher
## 1302 Hangers,Washer,Hair dryer,TV,Free parking on premises,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Heating,Hot water,Iron,Building staff,Essentials,Kitchen,Air conditioning,Fire extinguisher
## 1303 Hangers,Washer,Hair dryer,TV,Free parking on premises,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Heating,Hot water,Iron,Building staff,Essentials,Kitchen,Air conditioning,Fire extinguisher
## 1304 Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Microwave,Gym,TV,Air conditioning,Pool,Iron
## 1305 Hangers,Washer,Hair dryer,TV,Free parking on premises,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Lock on bedroom door,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Building staff,Essentials,Kitchen,First aid kit,Air conditioning,Fire extinguisher
## 1306 Hangers,Washer,Hair dryer,TV,Free parking on premises,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Building staff,Essentials,Kitchen,Air conditioning,Fire extinguisher
## 1307 Hangers,Bed linens,Washer,Hair dryer,Paid parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Keypad,Heating,Paid parking off premises,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 1308 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Private entrance,Hair dryer,Lock on bedroom door,Host greets you,Dryer,Wifi,Free parking on premises,Air conditioning,Dedicated workspace,Iron
## 1309 Shampoo,Essentials,Extra pillows and blankets,Hangers,Kitchen,Long term stays allowed,Washer,Private entrance,Hair dryer,Lock on bedroom door,Elevator,Host greets you,Wifi,Hot water,Free parking on premises,Ethernet connection,Air conditioning,Dedicated workspace,Iron
## 1310 Hangers,Washer,Single level home,Hair dryer,TV,Free parking on premises,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Building staff,Essentials,Kitchen,Air conditioning,Fire extinguisher
## 1311 Hangers,Washer,Hair dryer,TV,Free parking on premises,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Building staff,Essentials,Kitchen,Air conditioning,Fire extinguisher
## 1312 Hangers,Washer,Hair dryer,TV,Free parking on premises,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Building staff,Essentials,Kitchen,Air conditioning,Fire extinguisher
## 1313 Hangers,Washer,Hair dryer,TV,Free parking on premises,Dedicated workspace,Security cameras on property,Long term stays allowed,Elevator,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Building staff,Essentials,Kitchen,Air conditioning,Fire extinguisher
## 1314 Hangers,Washer,Hair dryer,TV,Free parking on premises,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Building staff,Essentials,Kitchen,Air conditioning,Fire extinguisher
## 1315 Hangers,Washer,Hair dryer,TV,Free parking on premises,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Building staff,Essentials,Kitchen,Air conditioning,Fire extinguisher
## 1316 Shampoo,Building staff,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Luggage dropoff allowed,Hair dryer,Elevator,Dryer,Wifi,Hot water,Free parking on premises,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 1317 Shampoo,Building staff,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Luggage dropoff allowed,Hair dryer,Elevator,Dryer,Wifi,Hot water,Free parking on premises,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 1318 Hangers,Washer,Hair dryer,TV,Free parking on premises,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Building staff,Essentials,Kitchen,Air conditioning,Fire extinguisher
## 1319 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Dedicated workspace,Security cameras on property,Long term stays allowed,Patio or balcony,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Cable TV,Hot water,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 1320 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Dedicated workspace,Security cameras on property,Long term stays allowed,Patio or balcony,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Cable TV,Hot water,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 1321 Essentials,Hangers,Paid street parking off premises,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Microwave,Gym,TV,Air conditioning,Pool,Iron
## 1322 Cleaning before checkout,Long term stays allowed,Refrigerator,Wifi,Microwave,Gym,Air conditioning,Pool,Luggage dropoff allowed,Fire extinguisher
## 1323 Hangers,Washer,Hair dryer,Host greets you,TV,Pool,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Iron,Essentials,Kitchen,Air conditioning,Fire extinguisher
## 1324 Hangers,Cooking basics,Washer,Hair dryer,Oven,Outdoor furniture,Lockbox,Free parking on premises,Dedicated workspace,Long term stays allowed,Outdoor dining area,Lock on bedroom door,Refrigerator,Dryer,Free street parking,Wifi,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1325 Shampoo,Essentials,Hangers,Kitchen,Cooking basics,Long term stays allowed,Washer,Hair dryer,Dryer,Wifi,TV,Lockbox,Air conditioning,Dedicated workspace,Iron
## 1326 Shampoo,Essentials,Hangers,Bed linens,Long term stays allowed,Washer,Elevator,Lock on bedroom door,Host greets you,First aid kit,Wifi,Hot water,Gym,Ethernet connection,Air conditioning,Dedicated workspace,Pool
## 1327 Hangers,Bed linens,Hair dryer,Host greets you,Dedicated workspace,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,Microwave,Free street parking,Wifi,Shampoo,Heating,Hot water,Stove,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1328 Essentials,Hangers,Bed linens,Kitchen,Cooking basics,Paid parking off premises,Washer,Long term stays allowed,Lock on bedroom door,Refrigerator,Dryer,Wifi,Hot water,Stove,Microwave,TV,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 1329 Essentials,Hangers,Long term stays allowed,Washer,Private entrance,Hair dryer,Lock on bedroom door,Refrigerator,Dryer,First aid kit,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Iron,Fire extinguisher
## 1330 Shampoo,Bed linens,Long term stays allowed,Washer,Outdoor dining area,Hair dryer,Lock on bedroom door,Wifi,Hot water,Free parking on premises,Shared hot tub,Body soap,Shared pool,Air conditioning,Dedicated workspace
## 1331 Essentials,Kitchen,Long term stays allowed,Elevator,Wifi,TV,Air conditioning,Dishes and silverware
## 1332 Backyard,Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Host greets you,Oven,TV,Pool,Long term stays allowed,Lock on bedroom door,Refrigerator,Microwave,Gym,Wifi,Shampoo,Hot water,Stove,BBQ grill,Iron,Essentials,Kitchen,Air conditioning,Fire extinguisher
## 1333 Hangers,Bed linens,Washer,Hair dryer,Host greets you,TV,Dedicated workspace,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Wifi,Luggage dropoff allowed,Paid parking off premises,Hot water,Iron,Essentials,First aid kit,Air conditioning,Shower gel,Fire extinguisher
## 1334 Shampoo,Security cameras on property,Hangers,Long term stays allowed,Luggage dropoff allowed,Hair dryer,Host greets you,Wifi,Hot water,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 1335 Essentials,Heating,Long term stays allowed,Washer,Elevator,Wifi,Hot water,TV,Air conditioning,Dishes and silverware
## 1336 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Host greets you,TV,Dedicated workspace,Long term stays allowed,Lock on bedroom door,Microwave,Wifi,Shampoo,Conditioner,Hot water,Body soap,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1337 Shampoo,Ceiling fan,Essentials,Hangers,Bed linens,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Host greets you,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Shower gel,Iron
## 1338 Shampoo,Ceiling fan,Essentials,Hangers,Bed linens,Kitchen,Long term stays allowed,Washer,Smart lock,Hair dryer,Lock on bedroom door,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Shower gel,Iron
## 1339 Shampoo,Breakfast,Essentials,Long term stays allowed,Hair dryer,Lock on bedroom door,Host greets you,Wifi,Hot water,TV,Air conditioning
## 1340 Shampoo,Essentials,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Hot water,TV,Shared pool,Air conditioning,Iron
## 1341 Hangers,Washer,Single level home,Hair dryer,TV,Paid parking on premises,Dedicated workspace,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Microwave,Wifi,Shampoo,Heating,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1342 Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Host greets you,Dryer,Wifi,Air conditioning,Free parking on premises,Pool,Iron
## 1343 Shampoo,Breakfast,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Cable TV,Lock on bedroom door,Dryer,First aid kit,Wifi,Free parking on premises,Air conditioning,Dedicated workspace,TV with standard cable,Iron,Fire extinguisher
## 1344 Shampoo,Essentials,Extra pillows and blankets,Hangers,Bed linens,Kitchen,Long term stays allowed,Washer,Hair dryer,Host greets you,Refrigerator,Oven,Wifi,Hot water,Air conditioning,Dedicated workspace,Iron
## 1345 Essentials,Security cameras on property,Hangers,Coffee maker,Heating,Washer,Dryer,Wifi,Air conditioning,Iron
## 1346 Essentials,Extra pillows and blankets,Hangers,Bed linens,Long term stays allowed,Washer,Luggage dropoff allowed,Private entrance,Hair dryer,Lock on bedroom door,Refrigerator,Dryer,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron
## 1347 Shampoo,Essentials,Hangers,Paid parking off premises,Long term stays allowed,Washer,Luggage dropoff allowed,Hair dryer,Lock on bedroom door,Elevator,Host greets you,Wifi,Hot water,Air conditioning,Room-darkening shades,Iron,Fire extinguisher
## 1348 Essentials,Hangers,Paid parking off premises,Long term stays allowed,Washer,Private entrance,Hair dryer,Lock on bedroom door,Refrigerator,Host greets you,Dryer,First aid kit,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Iron,Fire extinguisher
## 1349 Essentials,Kitchen,Long term stays allowed,Washer,Elevator,Lock on bedroom door,Host greets you,Dryer,Wifi,Gym,TV,Air conditioning,Free parking on premises,Pool,Iron
## 1350 Shampoo,Building staff,Essentials,Hangers,Heating,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Refrigerator,Dryer,Wifi,Hot water,TV,Paid parking on premises,Air conditioning,Luggage dropoff allowed
## 1351 Shampoo,Essentials,Long term stays allowed,Hair dryer,Lock on bedroom door,Wifi,Hot water,Free parking on premises,TV,Air conditioning,Dedicated workspace
## 1352 Essentials,Long term stays allowed,Lock on bedroom door,Wifi,Hot water,Air conditioning,Free parking on premises
## 1353 Hangers,Bed linens,Hot water kettle,Cooking basics,Washer,Single level home,Carbon monoxide alarm,Hair dryer,Oven,Baking sheet,Dedicated workspace,Long term stays allowed,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,Microwave,Wifi,Smoke alarm,Shampoo,Keypad,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 1354 Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Lock on bedroom door,Refrigerator,Wifi,Hot water,TV,Lockbox,Air conditioning,Fire extinguisher
## 1355 Shampoo,Breakfast,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,First aid kit,Wifi,Free parking on premises,Air conditioning,Dedicated workspace,Iron
## 1356 Essentials,Hangers,Long term stays allowed,Washer,Private entrance,Hair dryer,Lock on bedroom door,Patio or balcony,Dryer,First aid kit,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Iron,Fire extinguisher
## 1357 Shampoo,Essentials,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Elevator,Wifi,Hot water,Air conditioning,Iron,Fire extinguisher
## 1358 Shampoo,Essentials,Hangers,Bed linens,Long term stays allowed,Hair dryer,Lock on bedroom door,Elevator,First aid kit,Wifi,Hot water,Air conditioning,Dedicated workspace,Shower gel,Luggage dropoff allowed
## 1359 Shampoo,Essentials,Hangers,Bed linens,Long term stays allowed,Luggage dropoff allowed,Hair dryer,Lock on bedroom door,Elevator,First aid kit,Wifi,Hot water,Lockbox,Air conditioning,Dedicated workspace,Shower gel,Iron
## 1360 Hangers,Bed linens,Hot water kettle,Cooking basics,Washer,Single level home,Carbon monoxide alarm,Hair dryer,Oven,TV,Baking sheet,Dedicated workspace,Long term stays allowed,Lock on bedroom door,Refrigerator,Patio or balcony,Microwave,Free street parking,Wifi,Smoke alarm,Shampoo,Keypad,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 1361 Backyard,Hangers,Bed linens,Cooking basics,Washer,Single level home,Carbon monoxide alarm,Hair dryer,Oven,Ethernet connection,TV,Paid parking on premises,Children\\u2019s books and toys,Dedicated workspace,Pool,Security cameras on property,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,Microwave,Gym,Wifi,Children\\u2019s dinnerware,Smoke alarm,Luggage dropoff allowed,Shampoo,Ceiling fan,Dishwasher,Extra pillows and blankets,Keypad,Conditioner,Paid parking off premises,Hot water,Stove,Body soap,Iron,Bread maker,Essentials,Window guards,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 1362 Shampoo,Essentials,Kitchen,Long term stays allowed,Washer,Smart lock,Hair dryer,Lock on bedroom door,Elevator,Dryer,Wifi,Hot water,TV,Air conditioning
## 1363 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1364 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 1365 Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Hot water,Gym,Air conditioning,Dedicated workspace,Iron,Fire extinguisher
## 1366 Hangers,Bed linens,Hot water kettle,Cooking basics,Freezer,Washer,Smart lock,Hair dryer,Clothing storage: closet and dresser,Dining table,Dedicated workspace,Free parking on premises,Room-darkening shades,Cleaning products,Long term stays allowed,Drying rack for clothing,Lock on bedroom door,Refrigerator,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Shampoo,Shared patio or balcony,Extra pillows and blankets,Hot water,Stove,Body soap,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1367 Shampoo,Breakfast,Essentials,Kitchen,Long term stays allowed,Washer,Hair dryer,Cable TV,Dryer,First aid kit,Wifi,Air conditioning,Dedicated workspace,Smoke alarm,TV with standard cable,Iron,Fire extinguisher
## 1368 Hangers,Washer,Carbon monoxide alarm,Hair dryer,Oven,Lockbox,Dedicated workspace,Long term stays allowed,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,Microwave,Free street parking,Wifi,Smoke alarm,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 1369 Shampoo,Breakfast,Essentials,Hangers,Heating,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Cable TV,Elevator,Dryer,First aid kit,Wifi,Air conditioning,Dedicated workspace,Smoke alarm,TV with standard cable,Iron,Fire extinguisher
## 1370 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 1371 Hangers,Bed linens,Cooking basics,Washer,Oven,Paid parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1372 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1373 Hangers,Bed linens,Cooking basics,Washer,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1374 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1375 Backyard,Hangers,Washer,Host greets you,TV,High chair,Children\\u2019s books and toys,Dedicated workspace,Pool,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Gym,Wifi,Luggage dropoff allowed,Shampoo,Heating,Hot tub,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning
## 1376 Hangers,Bed linens,Washer,Single level home,Hair dryer,Host greets you,Paid parking on premises,Dedicated workspace,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Microwave,Gym,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Hot water,Stove,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 1377 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1378 Hangers,Bed linens,Cooking basics,Washer,Oven,Paid parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1379 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Dryer,Free street parking,Wifi,Luggage dropoff allowed,Dishwasher,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1380 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1381 Hangers,Bed linens,Cooking basics,Washer,Oven,Paid parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1382 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Paid parking on premises,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1383 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1384 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Paid parking on premises,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1385 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Dryer,Free street parking,Wifi,Luggage dropoff allowed,Dishwasher,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1386 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1387 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1388 Hangers,Bed linens,Cooking basics,Washer,Oven,Paid parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1389 Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1390 Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,Oven,Dedicated workspace,Long term stays allowed,Private entrance,Lock on bedroom door,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 1391 Hangers,Bed linens,Cooking basics,Washer,Oven,Paid parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1392 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,TV,Paid parking on premises,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1393 Toaster,Bidet,Hangers,Hot water kettle,Hair dryer,Dedicated workspace,Cleaning products,Long term stays allowed,Private entrance,Lock on bedroom door,Pocket wifi,Refrigerator,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Portable fans,22\\ TV,Hot water,Mini fridge,Body soap,Iron,Essentials,Clothing storage: closet,Paid dryer \\u2013 In unit,Paid washer \\u2013 In unit,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 1394 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Air conditioning,Dishes and silverware
## 1395 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1396 Hangers,Bed linens,Cooking basics,Washer,Oven,Paid parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1397 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1398 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1399 Hangers,Bed linens,Hot water kettle,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,Oven,Ethernet connection,Paid parking on premises,Dedicated workspace,Pool,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Heating,Cable TV,Hot tub,Hot water,Stove,Iron,Essentials,Kitchen,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable
## 1400 Hangers,Bed linens,Cooking basics,Washer,Smart lock,Hair dryer,Free parking on premises,Dedicated workspace,Long term stays allowed,Lock on bedroom door,Refrigerator,Patio or balcony,Microwave,Wifi,Shampoo,Extra pillows and blankets,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1401 Hangers,Bed linens,Cooking basics,Hair dryer,Lockbox,Dedicated workspace,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Shampoo,Heating,Hot water,Stove,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1402 Shampoo,Ceiling fan,Essentials,Security cameras on property,Private outdoor olympic-sized pool,32\\ TV,Long term stays allowed,Lock on bedroom door,Free parking garage on premises,Free washer \\u2013 In unit,Wifi,Mini fridge,Gym,Ethernet connection,Air conditioning,Dedicated workspace,Luggage dropoff allowed
## 1403 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Security cameras on property,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1404 Hangers,Cooking basics,Washer,Single level home,Hair dryer,Ethernet connection,Paid parking on premises,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Wifi,Shampoo,Cable TV,Hot water,Iron,Essentials,Kitchen,Air conditioning,TV with standard cable,Fire extinguisher
## 1405 Shampoo,Essentials,Long term stays allowed,Washer,Private entrance,Hair dryer,Lock on bedroom door,Elevator,Host greets you,First aid kit,Wifi,Hot water,TV,Paid parking on premises,Air conditioning,Dedicated workspace,Iron,Fire extinguisher
## 1406 Shampoo,Essentials,Security cameras on property,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Host greets you,Dryer,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Iron,Fire extinguisher
## 1407 Security cameras on property,Long term stays allowed,Washer,Lock on bedroom door,Wifi,Air conditioning
## 1408 Toaster,Hangers,Bed linens,Hot water kettle,Washer,Hair dryer,Host greets you,Clothing storage: closet and dresser,Shared hot tub,Ethernet connection,Shared outdoor pool,Dining table,Room-darkening shades,Dedicated workspace: desk,Wine glasses,Long term stays allowed,Laundromat nearby,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Ceiling fan,Dishwasher,Paid parking off premises,Hot water,Iron,Air conditioning,Dishes and silverware,Fire extinguisher
## 1409 Hangers,Paid parking off premises,Long term stays allowed,Washer,Luggage dropoff allowed,Private entrance,Hair dryer,Lock on bedroom door,Refrigerator,Host greets you,Dryer,First aid kit,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Iron,Fire extinguisher
## 1410 Shampoo,Breakfast,Essentials,Security cameras on property,Coffee maker,Long term stays allowed,Washer,Hair dryer,Dryer,Wifi,Microwave,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 1411 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Private entrance,Hair dryer,Lock on bedroom door,Host greets you,Dryer,Wifi,Hot water,Pool,Air conditioning,Free parking on premises,Smoke alarm,Iron
## 1412 Indoor fireplace,Cleaning before checkout,Hangers,Cooking basics,Washer,Hair dryer,Free parking on premises,Dedicated workspace,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Iron,Essentials,Kitchen,First aid kit,Air conditioning
## 1413 Shampoo,Essentials,Security cameras on property,Hangers,Kitchen,Long term stays allowed,Washer,Smart lock,Private entrance,Hair dryer,Lock on bedroom door,Elevator,Dryer,Wifi,Hot water,Gym,Air conditioning,Dedicated workspace,Iron,Fire extinguisher
## 1414 Essentials,Hangers,Paid parking off premises,Long term stays allowed,Washer,Private entrance,Hair dryer,Lock on bedroom door,Refrigerator,Host greets you,Dryer,First aid kit,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 1415 Breakfast,Essentials,Hangers,Long term stays allowed,Elevator,Wifi,Air conditioning
## 1416 Hangers,Bed linens,Washer,Hair dryer,Host greets you,TV,Children\\u2019s books and toys,Long term stays allowed,Elevator,Lock on bedroom door,Dryer,Free street parking,Beachfront,Wifi,Shampoo,Iron,Essentials,Kitchen,First aid kit,Shared pool,Air conditioning,Dishes and silverware
## 1417 Breakfast,Essentials,Hangers,Keypad,Heating,Long term stays allowed,Washer,Hair dryer,Dryer,First aid kit,Wifi,Hot water,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 1418 Shampoo,Essentials,Hangers,Long term stays allowed,Washer,Luggage dropoff allowed,Elevator,Lock on bedroom door,Refrigerator,Host greets you,Wifi,Hot water,Microwave,Air conditioning,Dedicated workspace,Iron
## 1419 Shampoo,Building staff,Essentials,Hangers,Heating,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Elevator,Wifi,Air conditioning,Iron
## 1420 Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Luggage dropoff allowed,Dryer,Wifi,Hot water,Air conditioning,Iron,Fire extinguisher
## 1421 Cleaning before checkout,Backyard,Hangers,Bed linens,Washer,Host greets you,Paid parking on premises,Security cameras on property,Lake access,Long term stays allowed,Lock on bedroom door,Refrigerator,Microwave,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Hot water,Iron,Essentials,First aid kit,Air conditioning,Dishes and silverware
## 1422 Backyard,Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Host greets you,Oven,TV,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Extra pillows and blankets,Paid parking off premises,Hot water,Stove,Iron,Essentials,Window guards,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 1423 Shampoo,Essentials,Hangers,Heating,Long term stays allowed,Smart lock,Hair dryer,Lock on bedroom door,Pocket wifi,Refrigerator,Wifi,Hot water,Free street parking,TV,Air conditioning,Luggage dropoff allowed
## 1424 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Oven,Paid parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 1425 Backyard,Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Host greets you,Oven,TV,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Extra pillows and blankets,Paid parking off premises,Hot water,Stove,Iron,Essentials,Window guards,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 1426 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Oven,Paid parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Heating,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 1427 Cleaning before checkout,Backyard,Hangers,Bed linens,Washer,Single level home,Host greets you,Paid parking on premises,Lake access,Long term stays allowed,Lock on bedroom door,Refrigerator,Microwave,Gym,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Hot water,Iron,Essentials,Air conditioning,Dishes and silverware,Fire extinguisher
## 1428 Hangers,Kitchen,Long term stays allowed,Washer,Carbon monoxide alarm,Elevator,Wifi,Air conditioning,Smoke alarm
## 1429 Cleaning before checkout,Hangers,Coffee maker,Washer,Hair dryer,TV,Free parking on premises,Long term stays allowed,Elevator,Lock on bedroom door,Microwave,Gym,Free street parking,Wifi,Shampoo,Heating,Hot water,Iron,Essentials,Kitchen,First aid kit,Shared pool,Air conditioning
## 1430 Hangers,Kitchen,Long term stays allowed,Washer,Private entrance,Lock on bedroom door,Wifi,Free parking on premises,TV,Air conditioning,Dedicated workspace,Pool
## 1431 Shampoo,Essentials,Security cameras on property,Long term stays allowed,Washer,Carbon monoxide alarm,Dryer,Wifi,Air conditioning,Smoke alarm,Fire extinguisher
## 1432 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 1433 Breakfast,Essentials,Hangers,Long term stays allowed,Elevator,Wifi,Air conditioning
## 1434 Shampoo,Essentials,Keypad,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Elevator,Dryer,Wifi,Hot water,TV,Air conditioning
## 1435 Hangers,Bed linens,Cooking basics,Washer,Smart lock,Hair dryer,Clothing storage,Free parking on premises,Dedicated workspace,Room-darkening shades,Long term stays allowed,Drying rack for clothing,Private entrance,Lock on bedroom door,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Hot water,Iron,Essentials,Kitchen,EV charger,Air conditioning,Dishes and silverware
## 1436 Cleaning before checkout,Backyard,Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Bathtub,Host greets you,Ethernet connection,Dining table,Dedicated workspace,Free parking on premises,Cleaning products,Wine glasses,Long term stays allowed,Drying rack for clothing,Private entrance,Lock on bedroom door,Refrigerator,Patio or balcony,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Ceiling fan,Breakfast,Dishwasher,Extra pillows and blankets,Portable fans,Heating,Hot water,Stove,Body soap,Iron,Essentials,Clothing storage: closet,Window guards,Kitchen,Dishes and silverware,Air conditioning,Shower gel
## 1437 Hangers,Washer,TV,Free parking on premises,Dedicated workspace,Long term stays allowed,Lock on bedroom door,Patio or balcony,Gym,Free street parking,Wifi,Smoke alarm,Shampoo,Shared garden or backyard,Breakfast,Heating,Bikes,BBQ grill,Iron,Essentials,Kitchen,Shared pool,Air conditioning,Dishes and silverware,Fire extinguisher
## 1438 Toaster,Bidet,Hangers,Bed linens,Washer,Hair dryer,Bathtub,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Lock on bedroom door,Dryer,Wifi,Shampoo,Keypad,Hot water,Mini fridge,Iron,Essentials,First aid kit,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 1439 Shampoo,Breakfast,Essentials,Hangers,Long term stays allowed,Washer,Hair dryer,Host greets you,Dryer,Wifi,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 1440 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1441 Essentials,Security cameras on property,Hangers,Long term stays allowed,Washer,Private entrance,Hair dryer,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Dishes and silverware,Iron,Fire extinguisher
## 1442 Rice maker,Hangers,Hot water kettle,Cooking basics,Freezer,Washer,Single level home,Hair dryer,Lockbox,Dining table,Dedicated workspace,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Ceiling fan,Paid parking off premises,Cable TV,Stove,Iron,Bread maker,Shower gel,Essentials,Kitchen,38\\ TV with standard cable,First aid kit,Air conditioning,Dishes and silverware
## 1443 Shampoo,Breakfast,Essentials,Hangers,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Dryer,Wifi,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 1444 Rice maker,Essentials,Kitchen,Freezer,LG refrigerator,Washer,Long term stays allowed,Private entrance,Elevator,Wifi,Hot water,Microwave,TV,Air conditioning,Dedicated workspace,Pool
## 1445 Backyard,Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,Oven,Paid parking on premises,Dedicated workspace,Long term stays allowed,Drying rack for clothing,Elevator,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,Microwave,Waterfront,Gym,Wifi,Shampoo,Breakfast,Extra pillows and blankets,Cable TV,Hot water,Stove,Body soap,Iron,Essentials,Clothing storage: closet,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 1446 Coffee maker,Cooking basics,Washer,Hair dryer,Oven,Paid parking on premises,Dedicated workspace,Lake access,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Microwave,Wifi,Shampoo,Extra pillows and blankets,Cable TV,Iron,Essentials,Kitchen,Air conditioning,TV with standard cable
## 1447 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Host greets you,Oven,Dedicated workspace,Pool,Long term stays allowed,Elevator,Refrigerator,Microwave,Beachfront,Wifi,Luggage dropoff allowed,Shampoo,Hot water,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware
## 1448 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Host greets you,Oven,Dedicated workspace,Long term stays allowed,Lock on bedroom door,Dryer,Microwave,Free street parking,Wifi,Shampoo,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Shower gel
## 1449 Hangers,Bed linens,Cooking basics,Washer,Oven,Paid parking on premises,Dedicated workspace,Pool,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Hot tub,Hot water,Stove,BBQ grill,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1450 Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Elevator,Lock on bedroom door,Host greets you,Wifi,Hot water,TV,Paid parking on premises,Air conditioning,Dedicated workspace
## 1451 Essentials,Extra pillows and blankets,Hangers,Bed linens,Long term stays allowed,Washer,Smart lock,Hair dryer,Lock on bedroom door,Refrigerator,Wifi,Hot water,TV,Paid parking on premises,Air conditioning,Dedicated workspace,Iron
## 1452 Shampoo,Breakfast,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Cable TV,Lock on bedroom door,Dryer,First aid kit,Wifi,Air conditioning,Dedicated workspace,TV with standard cable,Iron,Fire extinguisher
## 1453 Shampoo,Breakfast,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Cable TV,Lock on bedroom door,Dryer,First aid kit,Wifi,Free parking on premises,Air conditioning,Dedicated workspace,TV with standard cable,Iron
## 1454 Shampoo,Breakfast,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Cable TV,Lock on bedroom door,Dryer,First aid kit,Wifi,Air conditioning,Dedicated workspace,TV with standard cable,Iron,Fire extinguisher
## 1455 Shampoo,Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Elevator,Lock on bedroom door,Wifi,Free parking on premises,Air conditioning,Dedicated workspace,Iron
## 1456 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Elevator,Wifi,Air conditioning,Free parking on premises,Iron
## 1457 Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Wifi,Air conditioning
## 1458 Shampoo,Essentials,Hangers,Long term stays allowed,Washer,Dryer,Wifi,Free parking on premises,Air conditioning,Dedicated workspace,Pool
## 1459 Shampoo,Essentials,Hangers,Washer,Luggage dropoff allowed,Hair dryer,Lock on bedroom door,Refrigerator,Elevator,Host greets you,First aid kit,Wifi,Hot water,Microwave,Paid parking on premises,Air conditioning,Dedicated workspace,Iron
## 1460 Shampoo,Essentials,Security cameras on property,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Host greets you,Wifi,Hot water,Paid parking on premises,Air conditioning
## 1461 Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Lock on bedroom door,First aid kit,Free parking on premises,Hot water,Hot tub,Free street parking,Lockbox,Air conditioning,Dedicated workspace,Luggage dropoff allowed
## 1462 Breakfast,Essentials,Hangers,Long term stays allowed,Elevator,Wifi,Air conditioning
## 1463 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Paid parking on premises,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1464 Shampoo,Essentials,Dining table,Hangers,Bed linens,Long term stays allowed,Washer,Single level home,Elevator,Lock on bedroom door,Refrigerator,Dryer,Wifi,Hot water,Microwave,Pool,Clothing storage: wardrobe,Air conditioning,Dedicated workspace,Shower gel
## 1465 Shampoo,Essentials,Long term stays allowed,Private entrance,Hair dryer,Lock on bedroom door,Elevator,Wifi,Hot water,Free parking on premises,TV,Air conditioning,Dedicated workspace,Smoke alarm,Fire extinguisher
## 1466 Shampoo,Essentials,Hangers,Long term stays allowed,Washer,Private entrance,Hair dryer,Lock on bedroom door,Elevator,Wifi,Hot water,Air conditioning,Dedicated workspace,Iron
## 1467 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Elevator,Dryer,Wifi,Gym,Air conditioning,Dedicated workspace,Pool,Iron
## 1468 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Elevator,Dryer,Wifi,Gym,Air conditioning,Dedicated workspace,Pool,Iron
## 1469 Toaster,Backyard,Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,Oven,Paid parking on premises,Dining table,Dedicated workspace,Cleaning products,Long term stays allowed,Drying rack for clothing,Laundromat nearby,Elevator,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,Microwave,Waterfront,Gym,Wifi,Shampoo,Breakfast,Extra pillows and blankets,Portable fans,Cable TV,Hot water,Stove,Body soap,Iron,Essentials,Clothing storage: closet,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 1470 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Private entrance,Lock on bedroom door,Dryer,Wifi,Free parking on premises,Gym,TV,Air conditioning,Dedicated workspace,Pool,Iron
## 1471 Coffee maker,Hot water kettle,Cooking basics,Freezer,Washer,Oven,Outdoor furniture,Dining table,Dedicated workspace,Cleaning products,Wine glasses,Security cameras on property,Paid parking lot on premises,Laundromat nearby,Elevator,Lock on bedroom door,Wifi,Luggage dropoff allowed,Shared patio or balcony,Shared garden or backyard,Free dryer \\u2013 In unit,Cable TV,Hot water,Mini fridge,BBQ grill,Essentials,Window AC unit,Kitchen,Children\\u2019s books and toys for ages 0-2 years old and 2-5 years old,Dishes and silverware,TV with standard cable,Fire extinguisher
## 1472 Shampoo,Kitchen,Long term stays allowed,Washer,Smart lock,Hair dryer,Dryer,Wifi,Hot water,TV,Air conditioning,Smoke alarm,Fire extinguisher
## 1473 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Host greets you,TV,Paid parking on premises,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Microwave,Baby bath,Wifi,Luggage dropoff allowed,Shampoo,Heating,Hot water,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1474 Backyard,Hangers,Bed linens,Coffee maker,Washer,Single level home,Host greets you,Dedicated workspace,Security cameras on property,Long term stays allowed,Elevator,Refrigerator,Gym,Wifi,Shampoo,Free parking garage on premises,Hot water,BBQ grill,Shower gel,Essentials,Shared pool,Air conditioning,Dishes and silverware
## 1475 Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,Oven,Free parking on premises,Pool,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Patio or balcony,Microwave,Gym,Free street parking,Wifi,Luggage dropoff allowed,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1476 Breakfast,Essentials,Building staff,Hangers,Long term stays allowed,Hair dryer,First aid kit,Wifi,Hot water,TV,Paid parking on premises,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 1477 Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Lock on bedroom door,Host greets you,Wifi,Outdoor furniture,Shared pool,Air conditioning,Dedicated workspace,Iron
## 1478 Essentials,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Dryer,Wifi,TV,Air conditioning,Smoke alarm,Iron,Fire extinguisher
## 1479 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1480 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1481 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1482 Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1483 Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1484 Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1485 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Luggage dropoff allowed,Private entrance,Hair dryer,Lock on bedroom door,Host greets you,Dryer,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Iron
## 1486 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,TV,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1487 Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,Oven,TV,Paid parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1488 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1489 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1490 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1491 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Dryer,Free street parking,Wifi,Luggage dropoff allowed,Dishwasher,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1492 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Paid parking on premises,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1493 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1494 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,TV,Dedicated workspace,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1495 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1496 Shampoo,Breakfast,Essentials,Hangers,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Dryer,Wifi,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 1497 Shampoo,Breakfast,Essentials,Security cameras on property,Long term stays allowed,Washer,Hair dryer,Dryer,Wifi,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 1498 Shampoo,Breakfast,Essentials,Long term stays allowed,Washer,Hair dryer,Dryer,Wifi,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 1499 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Private entrance,Hair dryer,Lock on bedroom door,Refrigerator,Wifi,TV,Air conditioning,Dedicated workspace,Iron
## 1500 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1501 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Paid parking on premises,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1502 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1503 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Paid parking on premises,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1504 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1505 Backyard,Hangers,Washer,Hair dryer,Free parking on premises,Dedicated workspace,Pool,Long term stays allowed,Elevator,Lock on bedroom door,Dryer,Gym,Wifi,Luggage dropoff allowed,Shampoo,Hot tub,Hot water,BBQ grill,Iron,Essentials,Kitchen,Air conditioning
## 1506 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1507 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1508 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1509 Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1510 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1511 Hangers,Bed linens,Washer,Carbon monoxide alarm,Hair dryer,Clothing storage,Host greets you,Shared hot tub,Dedicated workspace,Cleaning products,Security cameras on property,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Extra pillows and blankets,Portable fans,Conditioner,Hot water,Stove,Body soap,Iron,Essentials,Kitchen,First aid kit,Shared pool,Air conditioning,Dishes and silverware
## 1512 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Dryer,Free street parking,Wifi,Luggage dropoff allowed,Dishwasher,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1513 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Paid parking on premises,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1514 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1515 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Dryer,Free street parking,Wifi,Luggage dropoff allowed,Dishwasher,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1516 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1517 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Paid parking on premises,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1518 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1519 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Paid parking on premises,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1520 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1521 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1522 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Security cameras on property,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1523 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Security cameras on property,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1524 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Hair dryer,Fire pit,Oven,TV,Outdoor furniture,Children\\u2019s books and toys,Long term stays allowed,Outdoor dining area,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Shampoo,Extra pillows and blankets,Keypad,Paid parking off premises,Hot water,Stove,BBQ grill,Iron,Essentials,Kitchen,Private fenced garden or backyard,Air conditioning
## 1525 Essentials,Hangers,Heating,Paid parking off premises,Long term stays allowed,Washer,Luggage dropoff allowed,Private entrance,Hair dryer,Lock on bedroom door,Refrigerator,Host greets you,Dryer,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Iron,Fire extinguisher
## 1526 Hangers,Bed linens,Cooking basics,Washer,Host greets you,Free parking on premises,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Microwave,Gym,Wifi,Luggage dropoff allowed,Shared patio or balcony,Hot water,Stove,Iron,Essentials,Kitchen,Shared pool,Air conditioning,Dishes and silverware
## 1527 Hangers,Washer,Hair dryer,TV,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,Free street parking,Wifi,Hot water,Iron,Essentials,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 1528 Hangers,Washer,Hair dryer,TV,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,Wifi,Keypad,Hot water,Iron,Essentials,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 1529 Cleaning before checkout,Hangers,Coffee maker,Cooking basics,Fireplace guards,Single level home,Bathtub,Hair dryer,Oven,Paid parking on premises,Children\\u2019s books and toys,Dedicated workspace,Room-darkening shades,Lake access,Refrigerator,Microwave,Outlet covers,Table corner guards,Wifi,Children\\u2019s dinnerware,Smoke alarm,Luggage dropoff allowed,Shampoo,Dishwasher,Extra pillows and blankets,Baby safety gates,Heating,Cable TV,Hot water,Iron,Building staff,Essentials,Window guards,Kitchen,EV charger,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable
## 1530 Shampoo,Essentials,Hangers,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Air conditioning,Pool
## 1531 Shampoo,Essentials,Security cameras on property,Long term stays allowed,Washer,TV,Wifi,Free parking on premises,Iron
## 1532 Hangers,Heating,Long term stays allowed,Washer,Elevator,Lock on bedroom door,Wifi,Hot water,Air conditioning,Dedicated workspace
## 1533 Toaster,Bidet,Hangers,Bed linens,Washer,Hair dryer,Bathtub,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Lock on bedroom door,Dryer,Wifi,Shampoo,Keypad,Hot water,Mini fridge,Iron,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 1534 Breakfast,Essentials,Building staff,Hangers,Long term stays allowed,Washer,Hair dryer,Cable TV,Dryer,First aid kit,Wifi,Hot water,Paid parking on premises,Air conditioning,Dedicated workspace,Smoke alarm,TV with standard cable,Iron,Fire extinguisher
## 1535 Breakfast,Essentials,Building staff,Hangers,Long term stays allowed,Washer,Hair dryer,Dryer,First aid kit,Wifi,Hot water,TV,Paid parking on premises,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 1536 Essentials,Security cameras on property,Hangers,Long term stays allowed,Washer,Private entrance,Hair dryer,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,First aid kit,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Dishes and silverware,Iron,Fire extinguisher
## 1537 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1538 Extra pillows and blankets,Bed linens,Heating,Long term stays allowed,Washer,Hair dryer,Cable TV,Lock on bedroom door,Elevator,Wifi,Hot water,Paid parking on premises,Air conditioning,TV with standard cable,Iron
## last_review no_of_am Amenities_Wifi Amenities_Shampoo Amenities_Kitchen
## 1 2020-07-28 13 0 1 0
## 2 2020-12-31 49 1 1 1
## 3 2019-12-04 17 1 1 0
## 4 2019-09-07 17 1 1 0
## 5 2021-10-12 65 1 1 1
## 6 2019-08-24 15 1 1 1
## 7 2019-08-05 14 0 1 1
## 8 2021-08-29 15 1 0 1
## 9 2021-10-02 63 1 1 1
## 10 2020-03-21 37 1 1 1
## 11 2021-12-19 33 1 0 1
## 12 2020-02-04 20 1 0 1
## 13 2021-02-15 49 1 1 1
## 14 2020-02-19 25 1 1 1
## 15 2020-01-18 55 1 1 1
## 16 2019-01-04 22 1 1 1
## 17 2020-01-20 37 1 1 1
## 18 2020-01-11 39 1 1 1
## 19 2019-11-16 6 0 0 0
## 20 2019-03-17 63 1 1 1
## 21 2020-03-13 24 1 1 1
## 22 2020-11-01 31 1 1 1
## 23 2019-08-02 61 1 1 1
## 24 2021-11-29 29 1 1 0
## 25 2020-01-19 38 1 1 1
## 26 2021-12-07 9 1 1 0
## 27 2021-09-02 20 1 0 1
## 28 2021-02-27 17 1 1 0
## 29 2019-07-22 46 1 1 1
## 30 2020-03-25 36 1 1 0
## 31 2020-10-21 19 1 1 1
## 32 2019-08-16 65 1 1 1
## 33 2020-02-02 16 1 1 0
## 34 2019-10-03 40 1 1 1
## 35 2019-08-03 40 1 1 1
## 36 2020-02-22 39 1 1 1
## 37 2020-12-17 30 1 1 1
## 38 2020-01-27 22 1 0 1
## 39 2019-12-23 44 1 1 1
## 40 2019-11-08 38 1 1 1
## 41 2020-01-29 37 1 1 1
## 42 2019-10-19 31 1 1 1
## 43 2021-12-14 21 1 1 0
## 44 2021-04-26 16 1 1 0
## 45 2021-12-12 41 1 1 1
## 46 2019-06-23 15 1 1 0
## 47 2021-12-19 22 1 1 0
## 48 2021-11-27 38 1 1 1
## 49 2020-02-13 18 1 1 0
## 50 2021-12-19 24 1 1 0
## 51 2020-01-01 41 1 1 1
## 52 2020-01-21 37 1 1 1
## 53 2021-12-03 19 1 1 1
## 54 2021-12-07 49 1 1 1
## 55 2021-12-10 20 1 1 1
## 56 2020-02-08 36 1 1 1
## 57 2020-01-18 56 1 1 1
## 58 2020-02-22 26 1 1 1
## 59 2021-09-04 26 1 1 1
## 60 2021-06-26 17 1 1 0
## 61 2020-01-03 20 1 1 0
## 62 2019-12-15 16 1 0 0
## 63 2020-02-11 37 1 1 1
## 64 2020-01-14 39 1 1 1
## 65 2020-12-12 37 1 0 1
## 66 2021-10-02 38 1 0 1
## 67 2021-12-11 15 1 1 1
## 68 2021-08-01 51 1 1 1
## 69 2019-07-30 51 1 1 1
## 70 2021-11-25 49 1 1 1
## 71 2021-09-27 33 1 1 1
## 72 2019-12-26 35 1 1 1
## 73 2019-08-19 45 1 1 1
## 74 2021-09-08 34 1 1 1
## 75 2021-09-12 40 1 1 1
## 76 2020-01-08 39 1 1 1
## 77 2020-04-30 33 1 1 1
## 78 2019-09-24 32 1 1 1
## 79 2020-01-29 23 1 1 1
## 80 2019-12-28 44 1 1 1
## 81 2021-12-07 32 1 1 1
## 82 2021-12-12 21 1 1 1
## 83 2021-11-04 15 1 1 1
## 84 2020-03-30 20 1 1 1
## 85 2021-10-17 15 1 1 1
## 86 2020-04-04 15 1 1 0
## 87 2019-04-10 17 1 1 0
## 88 2019-03-18 24 1 0 0
## 89 2020-01-02 38 1 0 1
## 90 2021-05-01 38 1 0 1
## 91 2020-01-01 38 1 0 1
## 92 2021-12-13 29 1 0 0
## 93 2021-09-12 37 1 1 1
## 94 2021-12-14 23 1 1 1
## 95 2021-11-29 24 1 1 1
## 96 2019-07-26 40 1 0 1
## 97 2021-11-21 21 1 1 1
## 98 2021-02-21 21 1 1 1
## 99 2021-08-05 21 1 1 1
## 100 2021-11-30 45 1 1 1
## 101 2021-09-10 36 1 1 1
## 102 2020-01-24 13 1 1 0
## 103 2021-11-04 37 1 1 1
## 104 2021-01-23 32 1 1 1
## 105 2020-11-13 34 1 1 1
## 106 2020-06-11 14 1 1 0
## 107 2021-04-25 37 1 1 1
## 108 2021-03-01 19 1 0 1
## 109 2021-08-13 36 1 1 1
## 110 2019-09-04 20 1 0 1
## 111 2021-08-16 36 1 1 1
## 112 2021-12-08 28 0 1 1
## 113 2021-03-20 20 1 1 1
## 114 2020-02-10 14 1 1 0
## 115 2021-12-14 25 1 1 1
## 116 2020-12-30 17 1 1 1
## 117 2021-03-16 25 1 1 1
## 118 2021-11-28 25 1 1 1
## 119 2021-12-01 25 1 1 1
## 120 2021-12-05 25 1 1 1
## 121 2021-12-13 25 1 1 1
## 122 2021-02-28 18 1 0 1
## 123 2019-01-03 38 1 0 1
## 124 2019-07-20 38 1 0 1
## 125 2021-01-28 15 1 1 0
## 126 2021-09-13 38 1 1 1
## 127 2019-07-24 20 1 1 1
## 128 2021-02-04 17 1 1 1
## 129 2021-12-19 48 1 1 1
## 130 2021-12-10 19 1 1 1
## 131 2020-01-24 27 1 1 1
## 132 2021-08-02 31 1 1 1
## 133 2021-08-20 20 1 1 1
## 134 2021-04-09 31 1 1 1
## 135 2021-01-16 20 1 1 1
## 136 2020-01-02 19 1 0 1
## 137 2019-08-21 18 1 0 1
## 138 2021-11-25 45 1 1 1
## 139 2019-12-25 16 1 1 0
## 140 2019-11-22 19 1 1 0
## 141 2020-02-04 21 1 1 1
## 142 2020-02-13 15 1 1 0
## 143 2021-01-14 19 1 1 0
## 144 2021-05-24 37 1 1 1
## 145 2021-12-06 22 1 1 1
## 146 2020-12-29 17 1 0 1
## 147 2021-12-11 20 1 1 1
## 148 2021-12-25 23 1 0 1
## 149 2019-09-23 35 1 0 1
## 150 2021-09-15 30 1 1 0
## 151 2020-09-20 24 1 1 0
## 152 2021-12-04 16 1 1 1
## 153 2021-01-01 13 1 0 1
## 154 2020-12-28 14 1 0 1
## 155 2021-10-03 6 0 0 0
## 156 2021-10-14 24 1 1 0
## 157 2021-12-03 21 1 1 1
## 158 2021-11-29 34 1 1 1
## 159 2021-09-18 27 1 1 1
## 160 2021-09-08 22 1 1 1
## 161 2020-03-09 17 1 1 1
## 162 2020-01-09 17 1 1 1
## 163 2020-03-15 28 1 1 1
## 164 2021-11-17 13 1 0 1
## 165 2019-12-16 19 1 1 0
## 166 2021-01-02 16 1 1 1
## 167 2020-01-01 37 1 1 1
## 168 2021-10-26 18 1 0 1
## 169 2021-05-15 14 1 0 1
## 170 2020-01-02 37 1 1 1
## 171 2019-12-08 15 1 1 0
## 172 2021-08-11 37 1 1 1
## 173 2019-07-27 39 1 0 1
## 174 2021-08-18 20 1 1 1
## 175 2021-10-10 16 1 0 1
## 176 2020-01-03 22 1 0 1
## 177 2020-02-02 37 1 1 1
## 178 2019-07-18 14 1 0 1
## 179 2019-06-21 21 1 1 1
## 180 2021-11-23 28 1 1 1
## 181 2021-12-21 28 1 1 1
## 182 2021-12-04 33 1 1 1
## 183 2020-01-02 15 1 0 1
## 184 2019-12-25 22 1 1 1
## 185 2019-11-12 11 1 0 0
## 186 2019-10-09 17 1 0 0
## 187 2019-09-19 17 1 0 0
## 188 2020-01-18 18 1 0 0
## 189 2019-03-15 17 1 0 0
## 190 2019-11-17 17 1 0 0
## 191 2019-11-17 17 1 0 0
## 192 2020-05-05 14 1 1 0
## 193 2020-12-02 20 1 0 1
## 194 2021-12-06 19 1 1 1
## 195 2020-01-29 27 1 1 1
## 196 2019-12-30 28 1 1 1
## 197 2021-12-12 38 1 1 1
## 198 2021-12-09 39 1 1 1
## 199 2020-02-10 24 1 1 1
## 200 2021-11-22 39 1 1 1
## 201 2021-10-14 38 1 1 1
## 202 2019-03-17 20 1 1 0
## 203 2020-12-24 14 1 0 1
## 204 2021-12-07 45 1 0 1
## 205 2020-01-06 7 1 1 0
## 206 2021-12-15 36 1 1 1
## 207 2021-10-23 37 1 1 1
## 208 2020-03-22 39 1 1 1
## 209 2020-03-15 3 0 0 0
## 210 2021-06-28 20 1 1 1
## 211 2020-11-25 21 1 1 1
## 212 2021-11-13 21 1 1 1
## 213 2019-11-03 14 1 1 0
## 214 2020-06-21 28 1 1 1
## 215 2021-09-16 32 1 1 1
## 216 2021-10-24 27 1 1 0
## 217 2020-02-02 17 1 1 1
## 218 2020-03-15 15 1 1 0
## 219 2021-06-21 58 1 1 1
## 220 2021-12-09 17 1 1 0
## 221 2020-02-07 14 1 1 0
## 222 2019-12-26 14 1 1 0
## 223 2020-02-09 9 1 0 0
## 224 2019-12-27 19 1 1 1
## 225 2020-02-15 19 1 1 1
## 226 2020-11-30 31 1 1 1
## 227 2021-12-14 36 1 1 1
## 228 2021-01-14 15 1 0 1
## 229 2021-11-30 17 1 1 0
## 230 2021-10-25 33 1 1 1
## 231 2020-09-06 16 1 1 0
## 232 2021-11-01 16 1 1 0
## 233 2020-02-07 37 1 1 1
## 234 2021-12-12 37 1 1 1
## 235 2021-10-03 37 1 1 1
## 236 2021-12-10 37 1 1 1
## 237 2019-11-14 17 1 1 0
## 238 2020-02-17 9 1 0 0
## 239 2021-08-17 37 1 1 1
## 240 2021-11-29 31 1 1 1
## 241 2021-11-11 25 1 1 1
## 242 2021-11-29 34 1 1 1
## 243 2021-12-24 31 1 1 1
## 244 2021-11-27 14 1 1 1
## 245 2021-12-12 27 1 1 1
## 246 2020-01-25 13 1 1 0
## 247 2021-03-15 16 1 0 1
## 248 2020-01-31 16 1 0 1
## 249 2020-09-26 20 1 0 1
## 250 2021-03-31 17 1 0 1
## 251 2021-02-24 43 1 0 1
## 252 2020-01-04 12 1 1 0
## 253 2019-08-11 12 1 1 0
## 254 2019-06-03 12 1 1 0
## 255 2020-01-24 18 1 1 0
## 256 2021-02-14 36 1 1 1
## 257 2021-11-25 17 1 1 0
## 258 2020-10-12 19 1 1 1
## 259 2019-01-28 23 1 1 1
## 260 2021-10-09 21 1 1 1
## 261 2020-01-14 20 1 0 1
## 262 2021-12-04 11 1 0 1
## 263 2021-11-17 17 1 1 1
## 264 2021-12-04 9 1 0 0
## 265 2021-11-03 15 1 1 1
## 266 2020-01-05 22 1 1 1
## 267 2019-12-24 20 1 1 1
## 268 2020-09-26 14 1 1 0
## 269 2019-06-14 37 1 1 1
## 270 2019-10-06 38 1 1 1
## 271 2021-11-17 24 1 1 1
## 272 2021-12-07 24 1 1 1
## 273 2019-06-29 29 1 1 1
## 274 2019-09-23 35 1 1 0
## 275 2020-12-25 23 1 1 1
## 276 2021-09-13 15 1 0 1
## 277 2021-09-19 24 1 1 1
## 278 2021-06-21 20 1 1 1
## 279 2021-12-01 24 1 1 0
## 280 2020-03-13 38 1 1 1
## 281 2019-03-19 29 1 1 1
## 282 2020-01-07 20 1 1 1
## 283 2020-01-02 25 1 1 1
## 284 2019-09-21 38 1 1 1
## 285 2019-04-16 9 1 1 0
## 286 2021-05-30 15 1 1 0
## 287 2020-07-07 24 1 1 1
## 288 2021-12-09 21 1 1 1
## 289 2020-02-23 17 1 1 1
## 290 2021-12-05 23 1 1 0
## 291 2021-09-11 16 1 1 0
## 292 2021-12-15 14 1 1 1
## 293 2019-07-17 17 1 0 1
## 294 2021-08-27 17 1 0 1
## 295 2019-08-04 29 1 1 1
## 296 2019-12-22 21 1 1 1
## 297 2019-12-20 30 1 1 1
## 298 2019-09-29 30 1 1 1
## 299 2020-01-16 20 1 1 1
## 300 2020-01-18 30 1 1 1
## 301 2020-01-26 29 1 1 1
## 302 2021-12-04 31 1 1 1
## 303 2020-01-26 32 1 1 1
## 304 2020-12-26 20 1 1 0
## 305 2021-11-18 20 1 1 0
## 306 2021-07-04 17 1 1 0
## 307 2021-10-30 23 1 1 1
## 308 2020-02-03 20 1 1 0
## 309 2021-12-04 26 1 1 0
## 310 2021-12-18 15 1 1 1
## 311 2021-11-05 39 1 0 1
## 312 2020-01-25 24 1 1 0
## 313 2020-02-19 13 1 1 0
## 314 2020-11-28 36 1 0 1
## 315 2021-07-23 18 1 0 1
## 316 2020-02-15 3 0 0 0
## 317 2021-05-24 29 1 1 1
## 318 2020-01-06 15 1 1 1
## 319 2021-11-30 17 1 0 1
## 320 2021-09-26 42 1 1 1
## 321 2021-12-02 27 1 1 1
## 322 2021-05-06 27 1 1 1
## 323 2021-10-01 27 1 1 0
## 324 2020-03-11 16 1 1 0
## 325 2020-01-19 21 1 1 1
## 326 2021-12-13 35 1 1 1
## 327 2021-08-28 17 1 1 1
## 328 2021-11-13 17 1 1 1
## 329 2019-12-08 35 1 1 1
## 330 2020-03-06 27 1 1 1
## 331 2021-02-15 36 1 1 1
## 332 2021-12-15 29 1 0 1
## 333 2020-04-18 15 1 0 1
## 334 2019-11-30 24 1 1 1
## 335 2020-04-25 16 1 0 1
## 336 2019-09-20 32 1 1 1
## 337 2020-01-30 17 1 1 1
## 338 2021-12-06 14 1 1 1
## 339 2020-01-30 33 1 1 1
## 340 2021-12-15 45 1 1 1
## 341 2021-08-26 27 1 1 1
## 342 2021-05-04 24 1 1 1
## 343 2021-08-14 19 1 1 0
## 344 2020-01-14 19 1 1 0
## 345 2020-06-17 11 1 1 0
## 346 2021-02-16 17 1 1 0
## 347 2019-01-04 32 1 0 1
## 348 2020-04-25 16 1 0 1
## 349 2020-08-12 19 1 0 1
## 350 2020-05-01 15 1 0 1
## 351 2019-09-07 24 1 1 1
## 352 2019-10-25 23 1 1 1
## 353 2021-12-19 58 1 1 1
## 354 2019-09-28 17 1 1 1
## 355 2021-04-16 14 1 0 1
## 356 2021-12-19 39 1 1 1
## 357 2020-07-04 16 1 0 1
## 358 2021-12-10 45 1 1 1
## 359 2021-05-30 33 1 1 1
## 360 2020-01-30 29 1 1 1
## 361 2020-01-19 12 1 1 1
## 362 2020-07-05 23 1 1 1
## 363 2020-04-19 13 1 1 0
## 364 2020-01-01 28 1 1 1
## 365 2020-03-03 25 1 1 1
## 366 2021-10-11 25 1 1 1
## 367 2019-08-25 32 1 1 1
## 368 2021-12-25 24 1 1 1
## 369 2019-12-23 20 1 1 1
## 370 2020-01-27 18 1 1 1
## 371 2021-12-12 27 1 1 1
## 372 2021-03-24 25 1 1 1
## 373 2021-12-19 9 1 0 1
## 374 2021-10-05 18 1 1 0
## 375 2020-02-28 16 1 1 0
## 376 2021-12-12 28 1 1 1
## 377 2021-09-07 20 1 1 0
## 378 2020-02-06 37 1 1 1
## 379 2020-03-16 19 1 1 0
## 380 2019-09-20 31 1 1 1
## 381 2020-02-29 19 1 1 1
## 382 2020-03-02 20 1 1 1
## 383 2020-01-24 19 1 1 1
## 384 2019-12-25 31 1 1 1
## 385 2021-04-20 14 1 1 1
## 386 2020-03-30 13 1 1 1
## 387 2019-12-27 17 1 1 1
## 388 2020-01-27 16 1 1 1
## 389 2020-03-21 17 1 1 1
## 390 2020-05-01 18 1 1 1
## 391 2020-06-08 19 1 1 1
## 392 2021-12-23 23 1 1 1
## 393 2021-10-15 23 1 1 1
## 394 2020-12-15 26 1 1 1
## 395 2021-05-19 38 1 1 1
## 396 2021-03-23 19 1 1 0
## 397 2021-11-25 18 1 1 0
## 398 2021-11-21 33 1 1 1
## 399 2021-09-04 19 1 0 1
## 400 2021-10-24 15 1 1 1
## 401 2020-07-31 19 1 0 1
## 402 2021-12-17 16 1 1 1
## 403 2021-12-23 15 1 1 0
## 404 2021-09-10 20 1 1 0
## 405 2021-12-05 15 1 1 1
## 406 2019-05-13 25 1 1 1
## 407 2021-04-27 28 1 1 1
## 408 2021-07-11 34 1 1 1
## 409 2021-01-05 19 1 0 1
## 410 2020-02-15 3 0 0 0
## 411 2021-05-14 26 1 1 1
## 412 2020-07-11 28 1 1 1
## 413 2019-07-01 31 1 1 1
## 414 2019-03-27 14 1 1 0
## 415 2021-12-07 31 1 1 1
## 416 2020-10-10 30 1 1 1
## 417 2020-08-12 20 1 0 1
## 418 2020-08-06 21 1 0 1
## 419 2021-12-18 17 1 1 1
## 420 2021-02-14 13 1 1 0
## 421 2019-02-10 14 1 1 0
## 422 2021-12-26 15 1 1 1
## 423 2021-12-05 25 1 1 1
## 424 2020-12-28 12 1 0 1
## 425 2021-03-10 18 1 0 1
## 426 2020-01-09 23 1 1 1
## 427 2020-11-28 16 1 1 0
## 428 2021-07-27 26 1 1 1
## 429 2020-06-18 16 1 0 1
## 430 2021-10-26 15 1 1 1
## 431 2021-10-31 13 1 1 1
## 432 2020-03-30 16 1 0 1
## 433 2021-12-07 26 1 1 1
## 434 2021-09-08 31 1 0 1
## 435 2021-11-25 35 1 1 1
## 436 2021-11-25 28 1 1 1
## 437 2021-12-20 23 1 1 1
## 438 2019-07-01 33 1 0 1
## 439 2020-03-12 27 1 1 1
## 440 2020-08-19 23 1 1 1
## 441 2021-05-06 25 1 1 1
## 442 2021-02-27 27 1 1 1
## 443 2020-02-09 36 1 1 1
## 444 2021-01-21 15 1 0 1
## 445 2020-12-17 12 1 0 1
## 446 2019-04-22 17 1 1 1
## 447 2021-02-15 12 1 1 0
## 448 2019-10-06 15 1 1 1
## 449 2019-06-27 13 1 1 1
## 450 2020-09-28 17 1 0 1
## 451 2020-01-01 23 1 1 1
## 452 2020-01-13 24 1 1 0
## 453 2021-11-14 23 1 1 1
## 454 2020-01-17 30 1 1 1
## 455 2021-12-05 25 1 1 1
## 456 2021-04-22 26 1 1 1
## 457 2019-09-25 17 1 0 1
## 458 2019-01-27 29 1 1 1
## 459 2020-08-16 28 1 1 1
## 460 2020-07-11 14 1 0 1
## 461 2020-07-06 12 1 0 1
## 462 2021-09-19 29 1 1 1
## 463 2021-05-07 24 1 1 1
## 464 2021-10-28 29 1 1 1
## 465 2021-12-20 19 1 1 1
## 466 2021-12-14 42 1 1 1
## 467 2021-10-01 19 1 1 0
## 468 2021-12-09 33 1 1 1
## 469 2021-11-26 14 1 1 1
## 470 2019-12-20 23 1 1 1
## 471 2019-12-19 10 1 1 0
## 472 2020-12-10 26 1 1 1
## 473 2021-11-20 29 1 1 1
## 474 2021-10-31 28 1 1 1
## 475 2019-12-28 18 1 0 1
## 476 2020-03-31 36 1 1 1
## 477 2021-04-25 16 1 1 1
## 478 2020-01-23 19 1 0 1
## 479 2021-09-12 29 1 1 1
## 480 2021-08-14 20 1 1 1
## 481 2019-12-28 11 1 1 0
## 482 2020-01-27 12 1 1 0
## 483 2021-06-20 29 1 1 1
## 484 2021-02-22 25 1 1 1
## 485 2021-12-11 13 1 0 1
## 486 2019-08-28 15 1 1 1
## 487 2021-12-11 30 1 1 1
## 488 2021-12-03 39 1 1 1
## 489 2021-11-10 25 1 1 1
## 490 2019-07-24 21 1 1 0
## 491 2019-12-29 23 1 0 1
## 492 2021-07-29 14 1 0 1
## 493 2020-12-14 17 1 0 1
## 494 2020-07-09 17 1 0 1
## 495 2021-12-08 18 1 0 1
## 496 2020-02-11 9 1 0 0
## 497 2020-02-18 10 1 0 0
## 498 2020-03-29 30 1 1 1
## 499 2021-12-22 29 1 1 1
## 500 2020-08-31 26 1 1 1
## 501 2021-04-19 14 1 1 0
## 502 2021-12-06 14 1 1 1
## 503 2021-12-08 36 1 1 1
## 504 2020-12-28 14 1 0 0
## 505 2019-07-14 17 1 0 1
## 506 2021-12-18 25 1 1 1
## 507 2020-11-22 16 1 1 0
## 508 2021-01-30 13 1 0 1
## 509 2020-01-17 28 1 1 1
## 510 2021-02-25 30 1 1 1
## 511 2021-08-23 20 1 1 1
## 512 2021-12-21 14 1 1 1
## 513 2021-05-07 22 1 1 1
## 514 2021-05-02 14 1 1 1
## 515 2021-12-13 12 1 1 1
## 516 2021-12-10 19 1 0 1
## 517 2021-12-24 35 1 1 1
## 518 2021-09-15 15 1 0 1
## 519 2021-09-18 36 1 1 1
## 520 2021-03-15 26 1 1 1
## 521 2021-11-18 36 1 1 1
## 522 2020-08-28 16 1 0 1
## 523 2019-12-09 32 1 0 1
## 524 2020-03-15 23 1 1 1
## 525 2020-08-28 17 1 1 1
## 526 2020-06-22 17 1 1 1
## 527 2021-01-11 18 1 1 0
## 528 2021-10-07 21 1 1 1
## 529 2021-09-28 14 1 0 1
## 530 2021-12-21 19 1 1 1
## 531 2021-04-30 27 1 0 1
## 532 2021-09-01 21 1 1 0
## 533 2020-03-22 25 1 1 0
## 534 2021-11-30 20 1 1 1
## 535 2021-05-14 31 1 1 1
## 536 2021-05-02 32 1 1 1
## 537 2021-11-30 28 1 1 1
## 538 2021-02-26 30 1 1 1
## 539 2020-03-15 43 1 1 1
## 540 2021-10-13 29 1 1 1
## 541 2020-01-01 13 1 1 1
## 542 2021-10-30 21 1 1 1
## 543 2021-09-21 39 1 1 1
## 544 2021-04-03 29 1 1 1
## 545 2021-01-12 31 1 1 1
## 546 2021-08-31 22 1 1 1
## 547 2021-12-19 45 1 1 1
## 548 2021-11-12 24 1 0 1
## 549 2021-04-09 22 1 0 1
## 550 2021-12-06 20 1 1 0
## 551 2021-12-01 20 1 1 0
## 552 2021-11-09 20 1 1 0
## 553 2021-12-19 30 1 1 1
## 554 2020-09-06 39 1 1 1
## 555 2020-01-27 39 1 1 1
## 556 2021-10-17 35 1 1 1
## 557 2021-12-03 38 1 1 1
## 558 2021-12-18 40 1 1 1
## 559 2021-12-17 39 1 1 1
## 560 2021-11-05 40 1 1 1
## 561 2020-02-15 34 1 1 1
## 562 2020-03-13 21 1 1 1
## 563 2021-06-13 21 1 1 1
## 564 2021-12-02 35 1 1 1
## 565 2020-02-15 21 1 1 1
## 566 2021-02-13 36 1 1 1
## 567 2021-05-20 46 1 1 1
## 568 2021-12-14 14 1 1 1
## 569 2021-12-13 48 1 1 1
## 570 2021-12-19 48 1 1 1
## 571 2021-10-29 39 1 1 1
## 572 2019-08-17 21 1 1 1
## 573 2021-08-14 31 1 1 1
## 574 2019-12-30 22 1 1 1
## 575 2020-12-30 22 1 1 1
## 576 2021-04-02 22 1 1 1
## 577 2020-01-14 22 1 1 1
## 578 2021-01-29 25 1 1 1
## 579 2021-12-17 15 1 1 0
## 580 2021-05-15 31 1 1 1
## 581 2021-12-10 29 1 1 1
## 582 2020-12-31 29 1 1 1
## 583 2021-12-10 10 1 0 1
## 584 2020-01-26 24 1 1 0
## 585 2019-08-30 27 1 1 1
## 586 2021-12-16 27 1 1 1
## 587 2019-08-02 24 1 1 1
## 588 2021-07-10 30 1 1 1
## 589 2020-06-30 25 1 1 1
## 590 2020-07-12 22 1 1 1
## 591 2019-01-25 2 0 0 0
## 592 2019-10-17 27 1 1 1
## 593 2019-10-11 30 1 1 1
## 594 2019-10-31 23 1 1 1
## 595 2021-08-23 32 1 1 1
## 596 2019-09-09 18 1 1 1
## 597 2020-01-12 19 1 0 1
## 598 2019-10-05 22 1 1 1
## 599 2020-01-10 19 1 1 1
## 600 2019-12-30 28 1 1 1
## 601 2021-05-31 31 1 1 1
## 602 2021-01-13 17 1 0 1
## 603 2021-04-09 28 1 1 1
## 604 2021-04-09 26 1 1 1
## 605 2020-01-28 16 1 1 0
## 606 2020-01-13 22 1 1 1
## 607 2020-01-23 10 0 1 1
## 608 2020-01-17 18 1 0 1
## 609 2021-12-13 17 1 0 1
## 610 2020-03-12 9 1 0 0
## 611 2020-02-28 17 1 1 1
## 612 2021-04-08 19 1 1 1
## 613 2020-05-31 17 1 1 1
## 614 2020-07-22 17 1 1 1
## 615 2020-11-06 15 1 0 1
## 616 2021-12-11 19 1 1 1
## 617 2021-11-27 13 1 1 1
## 618 2021-12-21 23 1 1 0
## 619 2021-12-10 21 1 1 0
## 620 2021-12-02 25 1 0 1
## 621 2020-02-11 22 1 1 1
## 622 2020-01-27 15 1 1 1
## 623 2020-12-31 15 1 1 0
## 624 2020-01-26 16 1 1 0
## 625 2020-01-31 16 1 1 1
## 626 2020-12-15 19 1 1 1
## 627 2020-01-01 25 1 1 0
## 628 2021-02-15 29 1 1 1
## 629 2021-07-17 19 1 1 1
## 630 2021-12-21 57 0 1 1
## 631 2021-12-07 26 1 1 1
## 632 2020-01-18 27 1 0 1
## 633 2020-02-17 22 1 0 1
## 634 2020-01-31 22 1 0 1
## 635 2020-02-13 28 1 1 1
## 636 2021-12-17 34 1 1 1
## 637 2020-09-23 29 1 1 1
## 638 2021-08-28 21 1 1 1
## 639 2021-08-15 21 1 1 1
## 640 2019-12-26 19 1 1 0
## 641 2021-11-27 34 1 1 1
## 642 2019-08-21 21 1 1 1
## 643 2020-03-24 22 1 1 1
## 644 2019-12-11 19 1 0 1
## 645 2020-03-23 16 1 1 0
## 646 2021-01-26 16 1 0 1
## 647 2020-12-05 32 1 1 1
## 648 2020-01-23 17 1 1 0
## 649 2020-12-31 12 1 1 0
## 650 2020-01-13 11 1 1 0
## 651 2020-02-25 32 1 1 1
## 652 2020-12-29 17 1 0 1
## 653 2019-07-20 10 1 0 0
## 654 2019-03-27 22 1 0 1
## 655 2019-12-29 16 1 1 0
## 656 2019-03-21 24 1 0 1
## 657 2019-04-10 15 1 1 0
## 658 2021-01-01 14 1 1 0
## 659 2021-02-15 18 1 1 0
## 660 2020-12-20 18 1 1 0
## 661 2019-09-10 17 1 1 0
## 662 2020-02-03 18 1 1 0
## 663 2021-11-17 25 1 1 1
## 664 2020-02-05 31 1 1 1
## 665 2021-12-08 12 1 1 1
## 666 2021-12-25 14 1 1 1
## 667 2021-11-23 14 1 0 0
## 668 2021-12-17 12 1 1 1
## 669 2021-11-13 10 1 0 0
## 670 2021-02-18 29 1 1 1
## 671 2019-09-30 28 1 1 1
## 672 2020-05-28 33 1 1 1
## 673 2020-01-11 29 1 1 1
## 674 2020-02-02 12 1 1 0
## 675 2021-08-14 21 1 1 1
## 676 2021-12-19 19 1 1 1
## 677 2021-09-26 13 1 1 0
## 678 2021-12-11 19 1 1 0
## 679 2021-01-03 27 1 1 1
## 680 2021-12-10 27 1 1 1
## 681 2020-06-07 18 1 0 1
## 682 2021-12-16 29 1 1 1
## 683 2019-12-23 22 1 1 1
## 684 2021-10-17 14 1 1 1
## 685 2021-11-17 23 1 1 1
## 686 2021-12-24 29 1 1 1
## 687 2021-11-30 15 1 1 0
## 688 2021-11-21 13 1 1 1
## 689 2020-02-28 20 1 0 1
## 690 2020-05-30 32 1 1 1
## 691 2020-02-01 31 1 1 1
## 692 2020-02-13 25 1 0 0
## 693 2020-08-30 32 1 1 1
## 694 2019-06-29 31 1 1 1
## 695 2021-12-10 19 1 1 1
## 696 2021-10-23 14 1 0 1
## 697 2020-06-29 23 1 1 1
## 698 2021-10-14 27 1 1 1
## 699 2020-03-13 25 1 1 0
## 700 2021-01-24 22 1 1 1
## 701 2021-06-24 30 1 1 1
## 702 2020-04-14 24 1 1 1
## 703 2019-02-28 24 1 1 1
## 704 2020-04-14 25 1 1 1
## 705 2020-04-25 28 1 1 1
## 706 2021-05-01 31 1 1 1
## 707 2021-02-16 11 1 1 0
## 708 2019-09-24 11 1 1 0
## 709 2020-01-26 21 1 1 1
## 710 2021-10-10 16 1 1 1
## 711 2021-12-05 17 1 1 1
## 712 2021-12-13 17 1 1 1
## 713 2021-11-26 17 1 1 1
## 714 2020-06-28 17 1 1 1
## 715 2021-12-12 21 1 1 1
## 716 2021-08-25 14 1 1 1
## 717 2020-03-31 30 1 1 1
## 718 2021-12-22 51 1 1 1
## 719 2019-04-07 6 1 0 1
## 720 2020-02-12 23 1 0 1
## 721 2020-02-16 22 1 0 1
## 722 2020-02-29 27 0 0 1
## 723 2020-01-04 30 1 1 1
## 724 2020-07-15 31 1 1 1
## 725 2021-09-05 22 1 1 1
## 726 2021-08-30 21 1 1 1
## 727 2021-04-03 33 1 1 1
## 728 2021-12-16 30 1 0 1
## 729 2020-10-15 29 1 1 1
## 730 2021-05-26 35 1 1 1
## 731 2021-11-22 26 1 1 1
## 732 2021-03-22 18 1 1 1
## 733 2020-02-28 20 1 1 1
## 734 2021-02-20 29 1 0 1
## 735 2019-02-10 25 1 1 1
## 736 2020-12-18 32 1 1 1
## 737 2021-03-29 24 1 1 1
## 738 2021-11-13 12 1 1 1
## 739 2019-08-31 8 1 0 0
## 740 2020-01-25 25 1 1 1
## 741 2020-06-24 24 1 1 1
## 742 2021-12-09 21 1 1 1
## 743 2021-12-12 39 1 1 1
## 744 2019-09-24 40 1 1 1
## 745 2021-08-21 37 1 1 1
## 746 2021-10-10 15 1 1 1
## 747 2021-12-20 19 1 1 1
## 748 2021-01-14 23 1 1 0
## 749 2021-11-10 26 1 1 1
## 750 2021-12-09 38 1 1 1
## 751 2021-12-11 40 1 1 1
## 752 2019-01-30 13 1 1 0
## 753 2021-12-02 29 1 1 1
## 754 2020-11-26 22 1 1 1
## 755 2021-02-01 21 1 1 1
## 756 2021-12-10 11 1 1 1
## 757 2021-12-10 14 1 1 1
## 758 2021-12-17 9 1 1 0
## 759 2021-09-30 21 1 1 1
## 760 2020-06-07 12 1 0 1
## 761 2021-03-17 23 1 1 1
## 762 2021-11-13 24 1 1 1
## 763 2020-01-18 18 1 1 0
## 764 2019-06-28 39 1 1 1
## 765 2020-03-16 33 1 1 1
## 766 2021-08-14 18 1 0 1
## 767 2020-02-18 18 1 0 1
## 768 2020-01-30 15 1 0 1
## 769 2021-10-02 20 1 0 1
## 770 2020-01-20 20 1 0 1
## 771 2019-12-09 10 1 1 1
## 772 2021-08-31 23 1 1 1
## 773 2019-11-16 15 1 1 0
## 774 2020-02-16 15 1 1 0
## 775 2021-11-15 16 1 1 1
## 776 2020-03-18 24 1 1 1
## 777 2020-07-19 23 1 1 1
## 778 2020-03-24 24 1 1 1
## 779 2021-12-10 24 1 1 1
## 780 2021-02-21 14 1 1 0
## 781 2020-01-02 17 1 1 0
## 782 2020-06-13 17 1 1 0
## 783 2019-10-28 16 1 1 0
## 784 2020-01-23 16 1 1 1
## 785 2019-08-14 29 1 1 1
## 786 2021-12-08 29 1 1 1
## 787 2020-02-18 25 1 1 1
## 788 2020-01-13 16 1 1 0
## 789 2021-11-27 24 1 1 1
## 790 2021-12-12 15 1 1 1
## 791 2020-02-15 23 1 1 0
## 792 2020-02-08 18 1 1 1
## 793 2019-11-25 22 1 1 1
## 794 2020-10-24 12 1 1 0
## 795 2020-03-25 43 1 1 1
## 796 2020-05-10 40 1 1 1
## 797 2020-10-18 25 1 1 1
## 798 2020-01-16 28 1 0 1
## 799 2020-02-13 27 1 0 1
## 800 2020-01-27 24 1 0 1
## 801 2020-01-22 22 1 0 1
## 802 2020-12-26 29 1 1 1
## 803 2019-09-01 19 1 0 1
## 804 2019-10-22 24 1 1 1
## 805 2019-12-07 23 0 1 1
## 806 2021-08-02 24 1 1 1
## 807 2021-11-28 23 1 1 1
## 808 2020-01-04 26 1 1 1
## 809 2020-02-25 22 1 1 1
## 810 2020-01-08 23 1 0 1
## 811 2019-03-19 18 1 0 1
## 812 2020-01-13 19 1 0 1
## 813 2021-11-07 20 1 1 0
## 814 2021-11-24 13 1 1 1
## 815 2021-12-23 17 1 1 1
## 816 2020-02-09 11 1 0 0
## 817 2021-10-13 31 1 1 1
## 818 2020-01-01 24 1 1 1
## 819 2020-07-31 20 1 1 1
## 820 2021-07-27 21 1 1 1
## 821 2020-01-29 11 1 0 0
## 822 2021-11-03 18 1 1 1
## 823 2021-12-13 19 1 1 1
## 824 2021-07-12 13 1 1 1
## 825 2021-02-12 20 1 1 0
## 826 2021-11-21 30 1 1 1
## 827 2021-11-16 30 1 1 1
## 828 2021-10-01 28 1 1 1
## 829 2021-11-01 30 1 1 1
## 830 2019-10-01 30 1 1 1
## 831 2021-09-18 26 1 1 1
## 832 2021-11-12 25 1 1 1
## 833 2020-03-02 26 1 1 0
## 834 2021-06-06 26 1 1 1
## 835 2019-12-25 16 1 0 0
## 836 2020-02-21 18 1 1 0
## 837 2019-08-30 27 1 1 1
## 838 2021-08-31 32 1 1 1
## 839 2021-08-12 13 1 1 0
## 840 2021-09-16 25 1 1 1
## 841 2021-10-15 14 1 0 1
## 842 2021-08-22 22 1 1 1
## 843 2021-10-31 21 1 1 1
## 844 2021-09-05 21 1 1 1
## 845 2021-09-23 21 1 1 1
## 846 2021-08-25 21 1 1 1
## 847 2020-09-11 24 1 1 1
## 848 2021-04-12 23 1 1 1
## 849 2021-08-08 23 1 1 1
## 850 2021-06-22 24 1 1 1
## 851 2020-07-30 33 1 1 1
## 852 2021-10-17 17 1 0 1
## 853 2021-11-28 16 1 0 1
## 854 2019-08-24 17 1 1 1
## 855 2020-04-01 24 1 1 1
## 856 2021-11-26 7 0 0 0
## 857 2021-07-05 25 1 0 1
## 858 2020-11-30 27 1 1 1
## 859 2019-05-10 23 1 0 1
## 860 2020-02-05 14 1 1 0
## 861 2020-03-18 19 1 1 0
## 862 2021-07-26 25 1 1 1
## 863 2020-02-07 18 1 1 1
## 864 2020-12-31 11 1 1 0
## 865 2020-03-09 12 1 1 0
## 866 2020-02-10 15 1 1 1
## 867 2021-01-16 16 1 1 1
## 868 2021-11-03 26 1 1 1
## 869 2021-12-05 27 1 1 1
## 870 2019-02-27 27 1 1 1
## 871 2019-04-25 42 1 1 1
## 872 2021-12-14 31 1 1 1
## 873 2021-06-15 29 1 1 1
## 874 2021-12-22 43 1 1 1
## 875 2021-11-14 30 1 1 1
## 876 2019-07-09 23 1 1 1
## 877 2019-04-15 18 1 0 1
## 878 2019-12-19 20 1 1 0
## 879 2021-12-22 19 1 1 1
## 880 2021-10-31 34 1 1 1
## 881 2020-02-29 29 1 1 1
## 882 2021-12-17 28 1 1 1
## 883 2021-12-12 58 1 1 1
## 884 2020-01-30 9 1 0 0
## 885 2021-11-29 21 1 0 0
## 886 2021-06-16 27 1 1 1
## 887 2021-11-14 31 1 1 1
## 888 2020-08-31 28 1 1 1
## 889 2020-02-14 15 1 0 1
## 890 2019-12-03 14 1 0 1
## 891 2019-09-15 22 1 1 0
## 892 2020-01-15 24 1 1 1
## 893 2021-12-12 17 1 1 1
## 894 2021-02-17 30 1 1 1
## 895 2020-07-26 26 1 1 1
## 896 2021-12-20 12 1 0 1
## 897 2019-07-21 16 1 1 0
## 898 2021-10-24 19 1 1 1
## 899 2021-12-19 25 1 0 0
## 900 2021-12-20 29 1 1 1
## 901 2020-01-26 12 1 1 1
## 902 2021-05-18 9 1 0 1
## 903 2021-10-28 17 1 1 1
## 904 2021-05-10 25 1 1 1
## 905 2021-03-14 13 1 1 0
## 906 2020-01-26 14 1 1 0
## 907 2021-12-06 28 1 1 1
## 908 2020-01-03 18 1 1 1
## 909 2020-06-05 27 1 1 1
## 910 2021-11-13 28 1 1 1
## 911 2020-07-31 30 1 1 1
## 912 2021-07-20 19 1 1 1
## 913 2020-04-11 10 1 1 0
## 914 2019-10-20 24 0 0 1
## 915 2019-10-15 19 1 1 1
## 916 2021-01-01 25 1 1 1
## 917 2021-09-25 26 1 1 1
## 918 2021-10-21 12 1 1 1
## 919 2021-07-31 47 1 1 1
## 920 2021-12-01 29 1 1 1
## 921 2020-05-15 36 1 1 1
## 922 2021-08-16 33 1 1 1
## 923 2020-01-20 30 1 1 1
## 924 2021-11-17 24 1 1 1
## 925 2020-06-26 11 1 0 1
## 926 2021-11-17 28 1 1 1
## 927 2021-10-31 26 1 1 1
## 928 2021-12-19 31 1 1 0
## 929 2021-12-10 9 1 0 1
## 930 2020-01-31 31 1 1 1
## 931 2020-07-02 20 1 1 1
## 932 2020-01-01 17 1 0 1
## 933 2020-01-30 12 1 0 1
## 934 2020-03-25 26 1 1 1
## 935 2019-07-30 14 1 1 0
## 936 2020-02-25 15 1 1 0
## 937 2020-02-14 10 1 0 0
## 938 2021-11-24 28 1 1 1
## 939 2021-12-12 34 1 1 1
## 940 2020-05-06 21 1 1 1
## 941 2019-09-29 8 1 0 0
## 942 2020-07-14 26 1 1 1
## 943 2021-11-30 23 1 1 1
## 944 2021-07-17 12 1 0 1
## 945 2021-11-15 20 1 1 0
## 946 2019-01-31 16 1 1 0
## 947 2021-11-09 24 1 1 1
## 948 2019-12-27 25 1 1 0
## 949 2019-12-15 15 1 1 0
## 950 2020-12-31 29 1 1 1
## 951 2020-01-27 8 1 0 1
## 952 2019-01-26 24 1 1 0
## 953 2021-12-04 22 1 0 1
## 954 2020-01-20 11 1 1 0
## 955 2021-11-21 10 1 0 1
## 956 2019-07-10 27 1 1 1
## 957 2021-08-26 19 1 1 1
## 958 2021-06-12 23 1 1 1
## 959 2019-04-18 23 1 1 1
## 960 2021-01-21 23 1 1 1
## 961 2020-11-01 25 1 1 1
## 962 2021-06-25 11 1 1 1
## 963 2021-10-26 10 1 1 1
## 964 2021-09-23 16 1 1 1
## 965 2020-03-18 24 1 1 1
## 966 2021-01-09 25 1 1 1
## 967 2020-01-27 21 1 1 0
## 968 2019-01-04 16 1 1 1
## 969 2020-08-24 17 1 1 1
## 970 2020-12-04 17 1 1 1
## 971 2019-04-30 10 1 1 1
## 972 2021-07-21 13 1 1 0
## 973 2020-02-09 11 1 1 0
## 974 2019-07-05 31 1 0 1
## 975 2019-12-26 33 1 1 1
## 976 2020-12-09 20 1 1 1
## 977 2021-10-08 24 1 1 1
## 978 2021-08-15 13 1 0 1
## 979 2021-11-30 23 1 0 1
## 980 2020-02-23 23 1 1 0
## 981 2021-11-08 24 1 0 1
## 982 2021-07-12 31 1 0 1
## 983 2020-03-06 31 1 1 1
## 984 2020-03-02 28 1 1 1
## 985 2019-03-27 23 1 0 1
## 986 2021-08-17 27 1 0 1
## 987 2021-11-20 20 1 0 1
## 988 2021-11-25 23 1 0 1
## 989 2020-10-24 18 1 0 0
## 990 2020-02-17 19 1 1 0
## 991 2020-03-04 15 1 1 1
## 992 2021-10-10 24 1 0 1
## 993 2021-06-13 26 1 1 1
## 994 2021-12-14 34 1 1 1
## 995 2021-07-24 19 1 1 1
## 996 2021-01-02 12 1 1 0
## 997 2020-12-14 12 1 1 0
## 998 2019-10-02 11 1 1 0
## 999 2020-12-26 12 1 1 0
## 1000 2020-12-13 12 1 1 0
## 1001 2019-08-10 12 1 1 0
## 1002 2019-06-04 12 1 1 0
## 1003 2021-08-30 26 1 1 1
## 1004 2021-08-25 24 1 1 1
## 1005 2020-05-14 24 1 1 1
## 1006 2020-05-20 28 1 1 1
## 1007 2020-11-14 24 1 1 1
## 1008 2021-11-20 31 1 0 1
## 1009 2019-01-05 32 1 1 1
## 1010 2020-04-24 28 1 1 1
## 1011 2021-11-28 33 1 0 1
## 1012 2021-12-09 13 1 1 1
## 1013 2020-02-16 13 1 1 0
## 1014 2021-07-06 27 1 1 1
## 1015 2021-06-08 24 1 1 1
## 1016 2021-12-04 11 1 1 1
## 1017 2021-05-30 15 1 0 1
## 1018 2019-09-24 17 1 1 1
## 1019 2021-11-29 24 1 1 1
## 1020 2021-09-17 22 1 1 1
## 1021 2020-03-08 15 1 0 1
## 1022 2020-02-07 23 1 1 1
## 1023 2021-04-25 17 1 0 1
## 1024 2020-02-03 24 1 1 1
## 1025 2021-12-18 18 1 1 1
## 1026 2020-01-27 17 1 1 1
## 1027 2021-11-20 19 1 0 1
## 1028 2019-07-17 21 1 1 1
## 1029 2021-10-26 28 1 1 1
## 1030 2021-12-18 22 1 1 0
## 1031 2020-02-03 18 1 0 1
## 1032 2021-12-12 28 1 1 0
## 1033 2019-11-03 17 1 1 1
## 1034 2020-01-26 24 1 1 0
## 1035 2020-03-09 33 1 1 1
## 1036 2019-07-01 24 1 1 1
## 1037 2019-11-07 13 1 1 1
## 1038 2019-12-20 28 1 1 1
## 1039 2021-03-20 23 1 1 1
## 1040 2020-11-06 32 1 1 1
## 1041 2021-07-23 19 1 0 1
## 1042 2020-02-08 23 1 1 1
## 1043 2020-01-26 23 1 1 1
## 1044 2019-08-04 25 1 1 0
## 1045 2021-12-15 16 1 1 0
## 1046 2019-10-05 32 1 1 1
## 1047 2020-03-06 26 1 1 1
## 1048 2021-05-04 18 1 1 1
## 1049 2020-02-01 15 0 1 0
## 1050 2020-01-03 11 1 1 0
## 1051 2021-02-28 11 1 1 0
## 1052 2020-02-11 17 1 0 1
## 1053 2020-01-14 23 1 1 1
## 1054 2021-06-30 18 1 0 1
## 1055 2019-09-16 9 1 0 1
## 1056 2021-12-22 32 1 1 1
## 1057 2019-06-26 1 0 0 0
## 1058 2021-07-26 24 1 0 1
## 1059 2020-01-02 24 1 1 1
## 1060 2019-05-12 37 1 1 1
## 1061 2020-11-22 18 1 1 1
## 1062 2019-11-19 41 1 1 1
## 1063 2021-05-14 23 1 1 1
## 1064 2020-03-22 25 1 1 0
## 1065 2021-11-05 16 1 1 1
## 1066 2020-04-30 24 1 1 1
## 1067 2019-07-27 19 1 1 0
## 1068 2019-09-23 15 1 0 1
## 1069 2020-01-27 19 1 0 1
## 1070 2019-03-23 29 1 1 1
## 1071 2019-01-01 18 1 0 1
## 1072 2019-09-23 16 1 1 1
## 1073 2020-03-12 19 1 1 0
## 1074 2021-12-19 21 1 1 0
## 1075 2019-02-02 22 1 0 1
## 1076 2019-11-22 15 1 0 1
## 1077 2019-05-12 16 1 0 1
## 1078 2021-12-05 19 1 1 0
## 1079 2021-12-03 25 1 0 1
## 1080 2021-09-04 26 1 1 1
## 1081 2019-02-06 14 1 1 1
## 1082 2020-01-29 17 1 1 0
## 1083 2021-07-08 16 1 0 1
## 1084 2020-02-10 16 1 0 1
## 1085 2021-09-03 17 1 0 1
## 1086 2021-04-03 14 1 0 1
## 1087 2021-08-26 19 1 1 1
## 1088 2021-11-10 37 1 0 1
## 1089 2021-12-06 19 1 1 1
## 1090 2021-01-03 27 1 1 1
## 1091 2021-12-06 27 1 1 1
## 1092 2019-11-24 14 1 1 1
## 1093 2021-05-27 22 1 1 1
## 1094 2021-02-26 16 1 0 1
## 1095 2020-03-03 11 1 0 0
## 1096 2021-11-08 18 1 1 0
## 1097 2020-02-12 15 1 1 1
## 1098 2019-12-30 10 1 0 0
## 1099 2021-07-16 24 1 0 1
## 1100 2021-05-13 23 1 1 1
## 1101 2019-12-11 13 1 0 1
## 1102 2021-01-01 18 1 1 1
## 1103 2019-11-07 12 1 1 1
## 1104 2021-12-07 13 1 1 0
## 1105 2020-04-25 19 1 0 1
## 1106 2021-09-08 19 1 1 1
## 1107 2020-03-15 18 1 0 1
## 1108 2020-11-29 25 1 1 1
## 1109 2020-02-07 23 1 1 0
## 1110 2020-03-02 16 1 0 1
## 1111 2020-02-28 16 1 0 1
## 1112 2021-07-24 16 1 0 1
## 1113 2019-05-01 18 1 0 1
## 1114 2021-10-16 14 1 0 1
## 1115 2019-08-19 13 1 0 1
## 1116 2020-01-08 16 1 0 1
## 1117 2021-07-16 16 1 0 1
## 1118 2019-10-13 26 1 1 1
## 1119 2020-01-09 22 1 1 1
## 1120 2019-09-27 17 1 0 1
## 1121 2021-10-16 15 1 0 1
## 1122 2019-12-07 15 1 1 1
## 1123 2020-03-21 23 1 1 1
## 1124 2021-08-25 20 1 1 1
## 1125 2021-12-24 24 1 1 1
## 1126 2021-12-19 12 1 1 1
## 1127 2021-12-11 29 1 1 1
## 1128 2021-10-26 16 0 0 1
## 1129 2020-04-14 18 1 0 1
## 1130 2021-03-26 19 1 1 0
## 1131 2021-06-26 18 1 0 1
## 1132 2020-09-16 19 1 0 1
## 1133 2021-08-23 19 1 0 1
## 1134 2020-03-22 16 1 0 1
## 1135 2021-12-19 58 1 1 1
## 1136 2019-10-20 13 1 0 1
## 1137 2021-10-02 30 1 1 0
## 1138 2020-02-24 19 1 0 1
## 1139 2021-11-24 25 1 1 0
## 1140 2020-03-09 14 1 0 1
## 1141 2020-10-18 28 1 1 1
## 1142 2020-02-16 15 1 0 1
## 1143 2020-02-09 24 1 1 1
## 1144 2020-06-20 12 1 1 0
## 1145 2020-01-02 19 1 1 1
## 1146 2019-11-16 15 1 1 1
## 1147 2019-04-30 20 1 1 1
## 1148 2019-11-09 15 1 1 1
## 1149 2021-12-10 15 1 1 1
## 1150 2019-11-05 17 1 1 1
## 1151 2020-01-08 22 1 1 1
## 1152 2020-09-11 26 1 1 1
## 1153 2021-12-01 18 1 1 1
## 1154 2021-06-25 30 1 0 1
## 1155 2019-05-24 16 1 1 0
## 1156 2019-09-07 17 1 1 0
## 1157 2020-06-01 21 1 1 1
## 1158 2019-08-13 30 1 1 1
## 1159 2020-02-15 16 1 0 1
## 1160 2021-04-30 12 1 0 1
## 1161 2019-05-12 11 1 0 1
## 1162 2021-05-05 19 1 0 1
## 1163 2019-12-30 25 1 1 1
## 1164 2020-02-23 16 1 0 1
## 1165 2021-12-22 29 1 1 1
## 1166 2019-10-20 13 1 0 1
## 1167 2021-03-31 15 1 1 1
## 1168 2020-02-10 24 1 1 0
## 1169 2021-05-03 18 1 1 1
## 1170 2021-11-01 17 1 0 1
## 1171 2020-01-13 22 1 0 1
## 1172 2019-10-15 13 1 0 1
## 1173 2021-08-09 39 1 0 0
## 1174 2020-01-15 19 1 0 1
## 1175 2019-08-17 18 1 0 1
## 1176 2020-03-01 20 1 0 1
## 1177 2021-11-19 12 1 1 1
## 1178 2020-01-03 13 1 0 1
## 1179 2019-12-25 19 1 0 1
## 1180 2020-02-19 21 1 1 0
## 1181 2019-06-08 15 1 0 1
## 1182 2020-01-23 21 1 1 0
## 1183 2021-09-06 17 1 1 1
## 1184 2020-01-23 14 1 1 0
## 1185 2021-12-12 34 1 1 1
## 1186 2021-12-23 39 1 1 1
## 1187 2021-06-09 16 1 0 1
## 1188 2020-03-21 18 1 0 1
## 1189 2019-12-04 24 1 1 1
## 1190 2020-01-22 24 1 1 1
## 1191 2020-02-12 24 1 1 1
## 1192 2020-02-17 24 1 1 1
## 1193 2020-03-01 16 1 0 1
## 1194 2020-02-16 24 1 1 1
## 1195 2021-12-22 16 1 1 1
## 1196 2021-05-01 16 1 0 1
## 1197 2021-05-14 16 1 0 1
## 1198 2021-09-10 16 1 0 1
## 1199 2021-10-11 16 1 0 1
## 1200 2021-08-31 20 1 0 1
## 1201 2021-11-22 19 1 0 1
## 1202 2020-01-21 24 1 1 1
## 1203 2020-02-10 17 1 0 1
## 1204 2021-11-30 19 1 0 1
## 1205 2020-01-12 27 1 1 1
## 1206 2020-02-08 19 1 0 1
## 1207 2021-03-30 18 1 0 1
## 1208 2021-10-21 22 1 0 1
## 1209 2019-08-31 13 1 1 1
## 1210 2020-03-01 17 1 0 1
## 1211 2021-12-05 19 1 0 0
## 1212 2020-03-02 26 1 1 1
## 1213 2019-07-10 17 1 1 0
## 1214 2021-07-30 16 1 1 0
## 1215 2021-11-26 19 1 0 1
## 1216 2021-03-01 18 1 0 1
## 1217 2021-07-02 19 1 0 1
## 1218 2020-10-04 19 1 1 1
## 1219 2019-12-09 9 1 0 1
## 1220 2020-03-10 24 1 1 1
## 1221 2019-12-07 16 1 0 1
## 1222 2020-07-14 44 1 1 1
## 1223 2020-01-28 20 1 1 0
## 1224 2020-05-09 27 1 1 0
## 1225 2020-02-17 22 1 1 1
## 1226 2019-12-07 16 1 1 1
## 1227 2021-09-15 18 1 0 1
## 1228 2020-01-04 24 1 1 1
## 1229 2019-08-11 26 1 0 1
## 1230 2019-10-29 28 1 0 1
## 1231 2019-06-08 26 1 0 1
## 1232 2021-09-24 24 1 1 1
## 1233 2020-01-31 18 1 0 1
## 1234 2019-11-16 12 1 1 0
## 1235 2021-09-01 24 1 1 1
## 1236 2020-07-07 29 1 0 1
## 1237 2020-08-10 29 1 0 1
## 1238 2021-05-16 18 1 1 0
## 1239 2019-10-10 15 1 0 1
## 1240 2019-03-26 30 1 1 1
## 1241 2020-12-28 28 1 1 1
## 1242 2019-08-01 29 1 0 1
## 1243 2021-04-15 29 1 1 1
## 1244 2020-09-30 29 1 1 1
## 1245 2019-05-29 26 1 0 1
## 1246 2021-07-22 28 1 0 1
## 1247 2020-01-26 26 1 1 0
## 1248 2019-08-05 16 1 1 1
## 1249 2019-11-08 30 1 0 1
## 1250 2019-10-01 27 1 0 1
## 1251 2021-06-29 28 1 0 1
## 1252 2020-10-04 31 1 1 1
## 1253 2021-07-20 28 1 0 1
## 1254 2021-12-11 15 1 0 1
## 1255 2021-05-30 20 1 0 1
## 1256 2021-06-01 18 1 1 1
## 1257 2021-06-05 25 1 1 1
## 1258 2020-07-03 23 1 1 1
## 1259 2021-10-02 16 1 0 1
## 1260 2020-08-28 19 1 0 1
## 1261 2021-06-18 18 1 0 1
## 1262 2021-11-30 16 1 0 1
## 1263 2020-03-31 19 1 0 1
## 1264 2021-11-17 38 1 1 1
## 1265 2020-01-17 32 1 1 1
## 1266 2021-04-13 14 1 0 1
## 1267 2020-01-14 18 1 1 0
## 1268 2020-01-10 22 1 0 1
## 1269 2019-09-15 15 1 1 1
## 1270 2020-09-17 22 1 1 1
## 1271 2020-04-15 34 1 1 1
## 1272 2019-12-14 12 1 1 1
## 1273 2020-03-19 28 1 1 1
## 1274 2021-12-17 9 1 0 1
## 1275 2021-09-01 26 1 0 1
## 1276 2021-07-24 19 1 0 1
## 1277 2020-03-17 12 1 1 0
## 1278 2020-03-26 27 1 0 1
## 1279 2019-08-06 17 1 1 1
## 1280 2021-11-12 20 1 1 0
## 1281 2019-08-31 23 0 0 1
## 1282 2020-09-03 12 1 0 1
## 1283 2020-02-06 20 0 1 1
## 1284 2021-12-03 17 1 0 1
## 1285 2019-10-31 18 1 1 0
## 1286 2020-01-14 19 1 1 0
## 1287 2020-02-15 22 1 1 0
## 1288 2021-12-19 25 1 1 0
## 1289 2021-12-12 11 1 0 1
## 1290 2021-12-10 9 1 1 0
## 1291 2020-08-23 22 1 0 0
## 1292 2020-03-04 30 1 1 1
## 1293 2019-07-31 16 1 1 0
## 1294 2020-04-30 16 1 0 1
## 1295 2019-12-17 7 1 0 0
## 1296 2021-12-05 11 1 1 0
## 1297 2020-01-13 15 1 1 0
## 1298 2020-03-13 23 1 1 1
## 1299 2020-02-20 23 1 1 1
## 1300 2020-02-08 24 1 1 1
## 1301 2020-01-20 24 1 1 1
## 1302 2020-02-10 24 1 1 1
## 1303 2020-02-01 24 1 1 1
## 1304 2021-05-06 16 1 0 1
## 1305 2020-02-06 23 1 1 1
## 1306 2020-01-11 23 1 1 1
## 1307 2021-03-13 27 1 1 1
## 1308 2019-09-11 16 1 1 1
## 1309 2019-09-08 19 1 1 1
## 1310 2020-03-15 24 1 1 1
## 1311 2020-02-15 23 1 1 1
## 1312 2020-01-26 23 1 1 1
## 1313 2019-12-03 21 1 1 1
## 1314 2020-02-07 23 1 1 1
## 1315 2019-03-25 22 1 1 1
## 1316 2020-01-25 20 1 1 1
## 1317 2020-02-28 20 1 1 1
## 1318 2020-02-15 23 1 1 1
## 1319 2020-01-31 27 1 1 1
## 1320 2020-01-31 26 1 1 1
## 1321 2020-01-27 17 1 0 1
## 1322 2019-08-05 10 1 0 0
## 1323 2019-11-10 22 1 1 1
## 1324 2021-12-18 24 1 1 1
## 1325 2021-12-17 15 1 1 1
## 1326 2021-01-30 17 1 1 0
## 1327 2020-12-11 24 1 1 1
## 1328 2021-08-21 20 1 0 1
## 1329 2021-04-07 17 1 0 0
## 1330 2021-04-19 15 1 1 0
## 1331 2021-08-05 8 1 0 1
## 1332 2019-01-23 25 1 1 1
## 1333 2021-12-05 22 1 0 0
## 1334 2019-08-24 14 1 1 0
## 1335 2021-11-30 10 1 0 0
## 1336 2021-04-19 22 1 1 1
## 1337 2021-04-03 18 1 1 1
## 1338 2021-06-29 18 1 1 1
## 1339 2019-06-28 11 1 1 0
## 1340 2021-11-10 14 1 1 1
## 1341 2021-03-18 22 1 1 1
## 1342 2019-08-18 14 1 0 1
## 1343 2020-11-24 19 1 1 1
## 1344 2019-11-20 17 1 1 1
## 1345 2019-07-20 10 1 0 0
## 1346 2021-12-05 19 1 0 0
## 1347 2020-07-31 17 1 1 0
## 1348 2021-12-13 19 1 0 0
## 1349 2020-03-23 15 1 0 1
## 1350 2021-06-03 17 1 1 0
## 1351 2020-01-19 11 1 1 0
## 1352 2021-07-24 7 1 0 0
## 1353 2021-10-18 32 1 1 1
## 1354 2021-02-14 13 1 0 1
## 1355 2020-05-26 15 1 1 1
## 1356 2021-05-20 17 1 0 0
## 1357 2020-03-09 13 1 1 1
## 1358 2021-09-30 15 1 1 0
## 1359 2021-12-13 17 1 1 0
## 1360 2021-05-26 33 1 1 1
## 1361 2020-09-04 48 1 1 1
## 1362 2019-04-27 14 1 1 1
## 1363 2021-05-23 27 1 0 1
## 1364 2019-07-01 30 1 0 1
## 1365 2021-06-20 14 1 0 1
## 1366 2020-01-02 33 1 1 1
## 1367 2019-06-09 17 1 1 1
## 1368 2021-05-31 25 1 0 1
## 1369 2020-02-04 20 1 1 0
## 1370 2019-12-08 30 1 0 1
## 1371 2019-09-21 27 1 0 1
## 1372 2021-08-31 28 1 0 1
## 1373 2019-09-18 27 1 0 1
## 1374 2019-09-13 28 1 0 1
## 1375 2019-12-01 27 1 1 1
## 1376 2021-10-16 27 1 1 1
## 1377 2020-08-31 28 1 0 1
## 1378 2019-10-15 26 1 0 1
## 1379 2020-08-17 28 1 0 1
## 1380 2019-12-31 28 1 0 1
## 1381 2019-08-13 27 1 0 1
## 1382 2019-01-31 28 1 0 1
## 1383 2019-03-23 28 1 0 1
## 1384 2019-10-31 28 1 0 1
## 1385 2021-06-16 28 1 0 1
## 1386 2020-09-30 28 1 0 1
## 1387 2019-12-13 28 1 0 1
## 1388 2019-06-09 27 1 0 1
## 1389 2019-11-25 29 1 0 1
## 1390 2021-10-19 29 1 0 1
## 1391 2019-08-03 26 1 0 1
## 1392 2021-06-16 28 1 0 1
## 1393 2021-05-22 31 1 1 0
## 1394 2020-08-01 27 1 0 0
## 1395 2020-09-29 28 1 0 1
## 1396 2019-12-08 27 1 0 1
## 1397 2019-10-18 28 1 0 1
## 1398 2020-02-28 29 1 1 1
## 1399 2021-12-08 36 1 1 1
## 1400 2021-02-07 23 1 1 1
## 1401 2020-12-05 24 1 1 1
## 1402 2021-09-09 17 1 1 0
## 1403 2021-06-01 29 1 1 1
## 1404 2021-09-03 23 1 1 1
## 1405 2020-01-28 18 1 1 0
## 1406 2021-07-30 17 1 1 1
## 1407 2021-11-04 6 1 0 0
## 1408 2021-04-17 34 1 0 0
## 1409 2021-11-21 19 1 0 0
## 1410 2020-03-21 16 1 1 0
## 1411 2021-09-12 18 1 1 1
## 1412 2019-10-31 21 1 1 1
## 1413 2021-04-03 20 1 1 1
## 1414 2021-04-27 20 1 0 0
## 1415 2019-12-18 7 1 0 0
## 1416 2020-08-01 22 1 1 1
## 1417 2019-10-17 17 1 0 0
## 1418 2019-07-22 16 1 1 0
## 1419 2020-01-16 13 1 1 0
## 1420 2020-02-29 12 1 0 1
## 1421 2020-02-19 22 1 0 0
## 1422 2019-10-05 35 1 1 1
## 1423 2021-01-31 16 1 1 0
## 1424 2019-11-28 30 1 0 1
## 1425 2020-02-05 35 1 1 1
## 1426 2019-11-03 30 1 1 1
## 1427 2019-07-28 23 1 0 0
## 1428 2019-03-06 9 1 0 1
## 1429 2020-04-14 23 1 1 1
## 1430 2020-10-21 12 1 0 1
## 1431 2020-11-11 11 1 1 0
## 1432 2020-05-31 29 1 0 1
## 1433 2020-02-16 7 1 0 0
## 1434 2020-04-17 14 1 1 1
## 1435 2021-09-01 25 1 0 1
## 1436 2021-07-12 42 1 1 1
## 1437 2021-12-14 25 1 1 1
## 1438 2021-10-31 25 1 1 0
## 1439 2019-11-15 15 1 1 0
## 1440 2019-03-02 27 1 0 1
## 1441 2021-08-05 19 1 0 0
## 1442 2020-01-03 32 1 1 1
## 1443 2020-01-14 15 1 1 0
## 1444 2021-02-08 16 1 0 1
## 1445 2021-04-17 38 1 1 1
## 1446 2019-08-28 22 1 1 1
## 1447 2021-12-17 23 1 1 1
## 1448 2020-04-02 23 1 1 1
## 1449 2020-04-09 24 1 1 1
## 1450 2019-05-15 14 1 0 1
## 1451 2020-04-28 17 1 0 0
## 1452 2020-01-18 18 1 1 1
## 1453 2019-07-03 18 1 1 1
## 1454 2019-07-28 18 1 1 1
## 1455 2020-01-19 13 1 1 1
## 1456 2020-01-16 10 1 1 1
## 1457 2020-01-27 9 1 0 1
## 1458 2019-01-26 11 1 1 0
## 1459 2019-11-24 18 1 1 0
## 1460 2019-01-12 14 1 1 1
## 1461 2019-10-24 15 0 0 1
## 1462 2019-09-08 7 1 0 0
## 1463 2019-02-27 28 1 0 1
## 1464 2020-02-17 20 1 1 0
## 1465 2020-02-06 15 1 1 0
## 1466 2020-02-29 14 1 1 0
## 1467 2021-10-01 16 1 1 1
## 1468 2020-03-01 16 1 1 1
## 1469 2019-11-30 43 1 1 1
## 1470 2020-03-10 17 1 1 1
## 1471 2021-12-23 32 1 0 1
## 1472 2019-09-28 13 1 1 1
## 1473 2020-03-12 25 1 1 1
## 1474 2021-07-21 23 1 1 0
## 1475 2020-03-20 27 1 1 1
## 1476 2019-01-20 16 1 0 0
## 1477 2021-04-29 13 1 0 1
## 1478 2020-02-25 12 1 0 0
## 1479 2019-09-07 27 1 0 1
## 1480 2019-12-01 28 1 0 1
## 1481 2020-08-31 28 1 0 1
## 1482 2021-07-07 29 1 0 1
## 1483 2020-04-07 29 1 0 1
## 1484 2020-03-31 29 1 0 1
## 1485 2021-04-15 18 1 1 1
## 1486 2020-03-11 29 1 0 1
## 1487 2019-03-31 29 1 0 1
## 1488 2019-10-28 27 1 0 1
## 1489 2019-04-01 27 1 0 1
## 1490 2019-10-18 27 1 0 1
## 1491 2019-05-18 28 1 0 1
## 1492 2019-12-14 28 1 0 1
## 1493 2019-05-30 27 1 0 1
## 1494 2019-08-09 28 1 0 1
## 1495 2019-12-14 28 1 0 1
## 1496 2020-01-17 15 1 1 0
## 1497 2020-02-15 14 1 1 0
## 1498 2019-12-17 13 1 1 0
## 1499 2021-12-01 15 1 1 1
## 1500 2019-11-16 28 1 0 1
## 1501 2019-11-01 28 1 0 1
## 1502 2021-01-31 28 1 0 1
## 1503 2019-11-15 28 1 0 1
## 1504 2020-04-15 28 1 0 1
## 1505 2020-03-29 22 1 1 1
## 1506 2020-03-01 28 1 0 1
## 1507 2020-02-08 28 1 0 1
## 1508 2021-08-29 28 1 0 1
## 1509 2021-03-01 29 1 0 1
## 1510 2020-03-23 28 1 0 1
## 1511 2021-09-10 33 1 1 1
## 1512 2020-01-09 28 1 0 1
## 1513 2020-02-17 28 1 0 1
## 1514 2021-01-02 28 1 0 1
## 1515 2020-03-16 28 1 0 1
## 1516 2021-08-22 28 1 0 1
## 1517 2020-03-01 28 1 0 1
## 1518 2020-08-29 28 1 0 1
## 1519 2020-07-15 28 1 0 1
## 1520 2020-03-30 26 1 0 1
## 1521 2020-04-07 28 1 0 1
## 1522 2021-06-06 29 1 0 1
## 1523 2021-07-02 29 1 0 1
## 1524 2020-02-10 31 1 1 1
## 1525 2021-12-04 20 1 0 0
## 1526 2021-12-04 23 1 0 1
## 1527 2021-10-31 21 1 0 0
## 1528 2021-12-14 21 1 0 0
## 1529 2020-12-20 40 1 1 1
## 1530 2019-02-16 11 1 1 0
## 1531 2019-09-05 9 1 1 0
## 1532 2020-08-11 10 1 0 0
## 1533 2021-12-03 26 1 1 1
## 1534 2020-02-10 19 1 0 0
## 1535 2019-10-15 18 1 0 0
## 1536 2020-03-10 20 1 0 0
## 1537 2019-03-05 28 1 0 1
## 1538 2021-01-31 15 1 0 0
## Amenities_Long_Term Amenities_Washer Amenities_HairDryer
## 1 1 0 1
## 2 1 1 1
## 3 1 1 1
## 4 1 1 1
## 5 1 1 1
## 6 1 1 0
## 7 1 1 0
## 8 1 1 1
## 9 1 0 1
## 10 1 1 1
## 11 1 1 1
## 12 1 1 1
## 13 1 1 1
## 14 1 1 1
## 15 1 1 1
## 16 1 1 1
## 17 1 1 1
## 18 1 1 1
## 19 1 0 0
## 20 1 1 1
## 21 1 1 1
## 22 1 1 1
## 23 1 1 1
## 24 0 0 1
## 25 1 1 1
## 26 1 0 1
## 27 1 1 1
## 28 1 0 1
## 29 1 1 1
## 30 1 1 1
## 31 1 1 1
## 32 1 1 1
## 33 1 1 1
## 34 1 0 1
## 35 1 1 1
## 36 1 1 1
## 37 1 1 1
## 38 1 1 1
## 39 1 0 1
## 40 1 1 1
## 41 1 1 1
## 42 1 1 1
## 43 1 0 1
## 44 1 0 1
## 45 1 1 1
## 46 1 1 1
## 47 1 1 1
## 48 1 1 1
## 49 1 0 1
## 50 1 1 1
## 51 1 0 1
## 52 1 1 1
## 53 1 1 1
## 54 1 1 1
## 55 1 1 1
## 56 1 1 1
## 57 1 1 1
## 58 1 1 1
## 59 1 1 1
## 60 1 0 1
## 61 1 1 1
## 62 1 1 0
## 63 1 1 1
## 64 1 1 1
## 65 1 1 0
## 66 1 1 0
## 67 1 1 1
## 68 1 1 1
## 69 1 1 1
## 70 1 1 1
## 71 1 1 1
## 72 1 1 1
## 73 1 0 1
## 74 1 1 1
## 75 1 1 1
## 76 1 1 1
## 77 1 1 1
## 78 1 1 1
## 79 1 1 1
## 80 1 0 1
## 81 1 1 1
## 82 1 1 1
## 83 1 1 1
## 84 1 1 1
## 85 1 1 1
## 86 1 0 1
## 87 1 1 1
## 88 1 1 1
## 89 1 1 0
## 90 1 1 0
## 91 1 1 0
## 92 0 0 1
## 93 1 1 1
## 94 1 1 1
## 95 1 1 1
## 96 1 1 1
## 97 1 1 1
## 98 1 1 1
## 99 1 1 1
## 100 1 1 1
## 101 1 1 1
## 102 1 0 1
## 103 1 1 1
## 104 1 1 1
## 105 1 1 1
## 106 1 1 1
## 107 1 1 1
## 108 1 1 0
## 109 1 1 1
## 110 1 1 1
## 111 1 1 1
## 112 1 1 1
## 113 1 1 1
## 114 1 0 1
## 115 1 1 1
## 116 1 1 1
## 117 1 1 1
## 118 1 1 1
## 119 1 1 1
## 120 1 1 1
## 121 1 1 1
## 122 1 1 0
## 123 1 1 0
## 124 1 1 0
## 125 1 0 1
## 126 1 1 1
## 127 1 1 1
## 128 1 0 1
## 129 1 1 1
## 130 1 1 1
## 131 1 1 1
## 132 1 1 1
## 133 1 1 1
## 134 1 1 1
## 135 1 1 1
## 136 1 1 0
## 137 1 1 0
## 138 1 1 1
## 139 1 1 1
## 140 1 0 1
## 141 1 1 1
## 142 1 0 1
## 143 1 1 1
## 144 1 1 1
## 145 1 1 1
## 146 1 1 1
## 147 1 1 1
## 148 1 1 1
## 149 1 1 0
## 150 0 0 1
## 151 1 1 1
## 152 1 1 1
## 153 1 1 0
## 154 1 1 0
## 155 1 0 0
## 156 1 1 1
## 157 1 1 1
## 158 1 1 1
## 159 1 1 1
## 160 1 1 1
## 161 1 1 1
## 162 1 1 1
## 163 1 1 1
## 164 1 1 0
## 165 1 1 1
## 166 1 1 1
## 167 1 1 1
## 168 1 1 0
## 169 1 1 0
## 170 1 1 1
## 171 1 0 1
## 172 1 1 1
## 173 1 1 0
## 174 1 1 1
## 175 1 1 0
## 176 1 0 1
## 177 1 1 1
## 178 1 1 0
## 179 1 1 1
## 180 1 0 1
## 181 1 0 1
## 182 1 1 1
## 183 1 1 0
## 184 1 1 1
## 185 1 1 0
## 186 1 1 1
## 187 1 1 1
## 188 1 1 1
## 189 1 1 1
## 190 1 1 1
## 191 1 1 1
## 192 1 1 0
## 193 1 1 0
## 194 1 1 1
## 195 1 1 1
## 196 1 1 1
## 197 1 1 1
## 198 1 1 1
## 199 1 1 1
## 200 1 0 1
## 201 1 1 1
## 202 1 1 1
## 203 1 1 0
## 204 1 1 1
## 205 1 0 1
## 206 1 1 1
## 207 1 1 1
## 208 1 1 1
## 209 0 0 0
## 210 1 1 1
## 211 1 1 1
## 212 1 1 1
## 213 1 1 1
## 214 1 0 1
## 215 1 1 1
## 216 1 1 1
## 217 1 1 1
## 218 1 0 1
## 219 1 0 1
## 220 1 1 1
## 221 1 0 1
## 222 1 0 1
## 223 1 0 1
## 224 1 1 1
## 225 1 1 1
## 226 1 1 1
## 227 1 0 0
## 228 1 1 1
## 229 1 1 1
## 230 1 1 1
## 231 1 0 1
## 232 0 0 1
## 233 1 1 1
## 234 1 1 1
## 235 1 1 1
## 236 1 1 1
## 237 1 1 1
## 238 1 0 0
## 239 1 1 1
## 240 1 1 1
## 241 1 1 1
## 242 1 1 1
## 243 1 1 1
## 244 1 1 1
## 245 1 1 1
## 246 1 0 1
## 247 1 1 0
## 248 1 1 0
## 249 1 1 1
## 250 1 1 1
## 251 1 1 0
## 252 1 0 1
## 253 1 0 1
## 254 1 0 1
## 255 1 0 1
## 256 1 1 1
## 257 1 1 1
## 258 1 1 1
## 259 1 1 1
## 260 1 1 1
## 261 1 1 1
## 262 1 1 0
## 263 1 1 0
## 264 1 0 0
## 265 1 1 1
## 266 1 1 1
## 267 1 1 1
## 268 1 1 1
## 269 1 1 1
## 270 1 1 1
## 271 1 1 1
## 272 1 1 1
## 273 1 1 1
## 274 1 1 1
## 275 1 0 1
## 276 1 1 0
## 277 1 0 1
## 278 1 0 1
## 279 1 0 1
## 280 1 1 1
## 281 1 1 1
## 282 1 1 1
## 283 1 1 1
## 284 1 1 1
## 285 1 0 1
## 286 1 0 1
## 287 1 1 1
## 288 1 1 1
## 289 1 1 1
## 290 1 1 1
## 291 0 0 1
## 292 1 0 1
## 293 1 1 0
## 294 1 1 0
## 295 1 1 1
## 296 1 1 1
## 297 1 1 1
## 298 1 1 0
## 299 1 1 1
## 300 1 1 1
## 301 1 1 1
## 302 1 1 1
## 303 1 1 1
## 304 1 1 1
## 305 1 1 1
## 306 1 1 1
## 307 1 1 1
## 308 1 1 1
## 309 1 1 1
## 310 1 1 1
## 311 1 1 0
## 312 1 1 1
## 313 1 1 1
## 314 1 1 1
## 315 1 1 1
## 316 0 0 0
## 317 1 1 1
## 318 1 1 1
## 319 1 1 1
## 320 1 1 1
## 321 1 1 1
## 322 1 1 1
## 323 1 1 1
## 324 0 0 1
## 325 1 1 1
## 326 1 1 1
## 327 1 1 1
## 328 1 1 1
## 329 1 1 1
## 330 1 1 1
## 331 1 1 1
## 332 1 1 1
## 333 1 1 1
## 334 1 1 1
## 335 1 1 1
## 336 1 1 1
## 337 1 1 1
## 338 1 1 1
## 339 1 1 1
## 340 1 1 1
## 341 1 1 0
## 342 1 1 1
## 343 1 0 1
## 344 1 1 1
## 345 1 0 1
## 346 1 0 1
## 347 1 1 1
## 348 1 1 1
## 349 1 1 1
## 350 1 1 1
## 351 1 1 1
## 352 1 1 1
## 353 1 1 1
## 354 1 0 1
## 355 1 1 1
## 356 1 1 1
## 357 1 1 0
## 358 1 0 0
## 359 1 1 1
## 360 1 1 1
## 361 1 0 1
## 362 1 1 1
## 363 1 0 0
## 364 1 1 1
## 365 1 1 1
## 366 1 1 1
## 367 1 1 1
## 368 1 1 1
## 369 1 1 1
## 370 1 1 1
## 371 1 1 1
## 372 1 1 1
## 373 1 0 0
## 374 1 0 1
## 375 1 1 1
## 376 1 0 1
## 377 1 1 1
## 378 1 1 1
## 379 1 1 1
## 380 1 1 1
## 381 1 1 1
## 382 1 1 1
## 383 1 1 1
## 384 1 1 1
## 385 1 1 1
## 386 1 1 1
## 387 1 1 1
## 388 1 1 1
## 389 1 1 1
## 390 1 1 1
## 391 1 1 1
## 392 1 0 1
## 393 1 0 1
## 394 1 1 1
## 395 1 1 1
## 396 1 0 1
## 397 1 0 1
## 398 1 1 1
## 399 1 1 1
## 400 1 1 1
## 401 1 1 1
## 402 1 1 1
## 403 1 1 1
## 404 1 0 1
## 405 1 1 1
## 406 1 1 1
## 407 1 1 1
## 408 1 1 1
## 409 1 1 1
## 410 0 0 0
## 411 1 1 1
## 412 1 1 1
## 413 1 1 1
## 414 0 1 1
## 415 1 1 1
## 416 1 1 1
## 417 1 1 1
## 418 1 1 1
## 419 1 1 1
## 420 1 0 0
## 421 1 0 1
## 422 1 0 1
## 423 1 1 1
## 424 1 1 1
## 425 1 1 1
## 426 1 1 1
## 427 1 0 1
## 428 1 1 1
## 429 1 1 1
## 430 1 1 1
## 431 1 0 1
## 432 1 1 1
## 433 1 0 1
## 434 1 1 1
## 435 1 1 1
## 436 1 1 1
## 437 1 0 1
## 438 1 1 1
## 439 1 1 1
## 440 1 1 1
## 441 1 1 1
## 442 1 1 1
## 443 1 1 1
## 444 1 1 1
## 445 1 1 1
## 446 1 1 1
## 447 1 0 1
## 448 1 1 1
## 449 1 1 0
## 450 1 1 1
## 451 1 1 1
## 452 1 1 1
## 453 1 1 1
## 454 1 1 1
## 455 1 1 1
## 456 1 1 1
## 457 1 1 0
## 458 1 1 1
## 459 1 1 1
## 460 1 1 1
## 461 1 1 1
## 462 1 1 1
## 463 1 1 1
## 464 1 1 1
## 465 1 1 1
## 466 1 0 1
## 467 1 0 1
## 468 1 1 1
## 469 1 0 1
## 470 1 0 1
## 471 1 0 1
## 472 1 1 1
## 473 1 1 1
## 474 1 1 1
## 475 1 1 1
## 476 1 1 1
## 477 1 1 1
## 478 1 1 1
## 479 1 1 1
## 480 1 1 1
## 481 1 0 1
## 482 1 0 1
## 483 1 1 1
## 484 1 1 1
## 485 1 1 0
## 486 1 1 0
## 487 1 1 1
## 488 1 1 1
## 489 1 0 1
## 490 1 1 1
## 491 1 1 1
## 492 1 1 1
## 493 1 1 1
## 494 1 1 1
## 495 1 1 1
## 496 1 1 0
## 497 1 1 0
## 498 1 1 1
## 499 1 1 1
## 500 1 1 1
## 501 0 0 1
## 502 1 0 1
## 503 1 1 1
## 504 0 0 0
## 505 1 1 1
## 506 1 0 1
## 507 0 0 1
## 508 1 0 1
## 509 1 1 1
## 510 1 1 1
## 511 1 1 1
## 512 1 0 1
## 513 1 0 1
## 514 1 0 1
## 515 1 0 1
## 516 1 1 1
## 517 1 0 1
## 518 1 1 0
## 519 1 1 1
## 520 1 1 1
## 521 1 1 1
## 522 1 1 1
## 523 1 1 1
## 524 1 1 1
## 525 1 1 1
## 526 1 1 1
## 527 1 0 1
## 528 1 1 1
## 529 1 1 0
## 530 1 1 1
## 531 1 1 1
## 532 1 1 1
## 533 1 1 1
## 534 1 1 1
## 535 1 1 1
## 536 1 1 1
## 537 1 0 1
## 538 1 1 1
## 539 1 1 1
## 540 1 1 1
## 541 1 1 1
## 542 1 1 1
## 543 1 1 1
## 544 1 1 1
## 545 1 1 1
## 546 1 1 1
## 547 1 1 1
## 548 1 1 1
## 549 1 1 1
## 550 1 1 1
## 551 1 1 1
## 552 1 1 1
## 553 1 1 1
## 554 1 1 1
## 555 1 1 1
## 556 1 1 1
## 557 1 1 1
## 558 1 1 1
## 559 1 1 1
## 560 1 1 1
## 561 1 1 1
## 562 1 0 1
## 563 1 0 1
## 564 1 1 1
## 565 1 1 0
## 566 1 1 1
## 567 1 1 1
## 568 1 0 1
## 569 1 1 1
## 570 1 1 1
## 571 1 1 1
## 572 1 1 1
## 573 1 1 1
## 574 1 0 1
## 575 1 0 1
## 576 1 0 1
## 577 1 0 1
## 578 1 1 1
## 579 1 0 1
## 580 1 1 1
## 581 1 1 1
## 582 1 1 1
## 583 1 1 0
## 584 1 1 1
## 585 1 1 1
## 586 1 1 1
## 587 1 1 1
## 588 1 1 1
## 589 1 1 1
## 590 1 1 1
## 591 1 0 0
## 592 1 1 1
## 593 1 1 1
## 594 1 1 1
## 595 1 1 1
## 596 1 1 1
## 597 1 1 0
## 598 1 1 1
## 599 1 1 1
## 600 1 1 1
## 601 1 1 1
## 602 1 1 1
## 603 1 1 1
## 604 1 1 1
## 605 1 1 1
## 606 1 1 1
## 607 0 1 1
## 608 1 1 1
## 609 1 1 1
## 610 1 0 0
## 611 1 1 1
## 612 1 1 1
## 613 1 1 1
## 614 1 1 1
## 615 1 1 1
## 616 1 1 1
## 617 1 1 1
## 618 1 1 0
## 619 1 1 0
## 620 1 1 0
## 621 1 1 1
## 622 0 1 1
## 623 0 0 1
## 624 0 0 1
## 625 1 1 1
## 626 1 0 0
## 627 1 1 1
## 628 1 1 1
## 629 1 1 1
## 630 1 1 1
## 631 1 1 1
## 632 1 1 1
## 633 1 1 1
## 634 1 1 1
## 635 1 1 1
## 636 1 1 1
## 637 1 1 1
## 638 1 0 1
## 639 1 0 1
## 640 1 0 1
## 641 1 1 1
## 642 1 1 1
## 643 1 1 1
## 644 1 1 1
## 645 0 0 1
## 646 1 1 1
## 647 1 1 1
## 648 0 1 1
## 649 1 0 1
## 650 1 0 1
## 651 1 1 1
## 652 1 1 1
## 653 1 1 0
## 654 1 1 1
## 655 1 1 1
## 656 1 1 1
## 657 1 0 1
## 658 1 0 1
## 659 1 1 1
## 660 1 1 1
## 661 1 1 1
## 662 1 1 1
## 663 1 1 1
## 664 1 1 1
## 665 1 0 1
## 666 1 0 1
## 667 1 1 1
## 668 1 0 1
## 669 1 0 1
## 670 1 1 1
## 671 1 1 1
## 672 1 1 1
## 673 1 1 1
## 674 1 0 1
## 675 1 0 1
## 676 1 1 1
## 677 1 0 1
## 678 1 0 1
## 679 1 1 1
## 680 1 1 1
## 681 1 1 1
## 682 1 1 1
## 683 1 0 1
## 684 1 0 1
## 685 1 0 1
## 686 1 1 1
## 687 1 1 1
## 688 1 1 0
## 689 1 1 1
## 690 1 1 1
## 691 1 1 1
## 692 1 1 1
## 693 1 1 1
## 694 1 1 1
## 695 1 1 1
## 696 1 0 1
## 697 1 1 1
## 698 1 0 1
## 699 1 1 1
## 700 1 1 1
## 701 1 1 1
## 702 1 1 1
## 703 1 0 1
## 704 1 1 1
## 705 1 1 1
## 706 1 1 1
## 707 1 0 0
## 708 1 0 0
## 709 1 1 1
## 710 1 1 1
## 711 1 1 1
## 712 1 1 1
## 713 1 1 1
## 714 1 1 1
## 715 1 1 1
## 716 1 0 1
## 717 1 1 1
## 718 1 1 1
## 719 1 0 0
## 720 1 1 1
## 721 1 1 1
## 722 1 1 0
## 723 1 1 1
## 724 1 1 1
## 725 1 0 1
## 726 1 0 1
## 727 1 1 1
## 728 0 1 1
## 729 1 1 1
## 730 1 1 1
## 731 1 1 1
## 732 1 1 1
## 733 1 1 1
## 734 1 1 1
## 735 1 1 1
## 736 1 1 1
## 737 1 1 1
## 738 1 0 1
## 739 1 0 0
## 740 1 1 1
## 741 1 0 1
## 742 1 1 1
## 743 1 1 1
## 744 1 1 1
## 745 1 1 1
## 746 1 1 1
## 747 1 1 1
## 748 1 0 0
## 749 1 1 1
## 750 1 1 1
## 751 1 1 1
## 752 1 1 1
## 753 1 1 1
## 754 1 0 1
## 755 1 0 1
## 756 1 0 1
## 757 1 0 1
## 758 1 0 1
## 759 1 0 1
## 760 1 1 1
## 761 1 1 1
## 762 1 1 1
## 763 1 0 1
## 764 1 1 1
## 765 1 1 1
## 766 1 1 1
## 767 1 1 1
## 768 1 1 1
## 769 1 1 1
## 770 1 1 1
## 771 1 1 0
## 772 1 1 1
## 773 1 1 1
## 774 1 1 1
## 775 1 1 1
## 776 1 1 1
## 777 1 1 1
## 778 1 1 1
## 779 1 1 1
## 780 1 1 1
## 781 1 1 1
## 782 1 1 1
## 783 1 1 1
## 784 1 1 1
## 785 1 1 1
## 786 1 1 1
## 787 1 1 1
## 788 1 1 1
## 789 1 1 1
## 790 1 0 1
## 791 1 0 1
## 792 1 1 1
## 793 1 1 0
## 794 1 0 1
## 795 1 1 1
## 796 1 1 1
## 797 1 1 1
## 798 1 1 1
## 799 1 1 1
## 800 1 1 1
## 801 1 1 1
## 802 1 1 1
## 803 1 1 1
## 804 1 1 1
## 805 1 1 1
## 806 1 1 1
## 807 1 1 1
## 808 1 1 1
## 809 1 1 1
## 810 1 1 1
## 811 1 1 1
## 812 1 1 1
## 813 1 0 1
## 814 1 0 1
## 815 1 0 1
## 816 1 1 0
## 817 1 1 1
## 818 1 1 1
## 819 1 1 1
## 820 1 0 1
## 821 1 1 0
## 822 1 1 1
## 823 1 1 1
## 824 1 0 1
## 825 1 1 1
## 826 1 1 1
## 827 1 1 1
## 828 1 1 1
## 829 1 1 1
## 830 1 1 1
## 831 1 1 1
## 832 1 1 1
## 833 1 1 1
## 834 1 0 1
## 835 1 1 0
## 836 1 0 1
## 837 1 1 1
## 838 1 1 1
## 839 1 0 1
## 840 1 1 1
## 841 1 1 1
## 842 1 1 1
## 843 1 1 1
## 844 1 0 1
## 845 1 0 1
## 846 1 0 1
## 847 1 1 1
## 848 1 1 1
## 849 1 1 1
## 850 1 1 1
## 851 1 1 1
## 852 1 1 1
## 853 1 1 1
## 854 1 1 1
## 855 1 1 1
## 856 1 0 0
## 857 1 1 1
## 858 1 1 1
## 859 1 1 0
## 860 1 0 1
## 861 1 1 1
## 862 1 1 1
## 863 1 1 1
## 864 1 0 0
## 865 1 1 0
## 866 1 0 1
## 867 1 1 1
## 868 1 1 1
## 869 1 1 1
## 870 1 1 1
## 871 1 1 1
## 872 0 1 1
## 873 1 1 1
## 874 1 1 1
## 875 1 1 1
## 876 1 1 1
## 877 1 1 0
## 878 1 0 1
## 879 1 1 1
## 880 1 1 1
## 881 1 1 1
## 882 1 1 1
## 883 1 0 1
## 884 1 1 0
## 885 0 1 0
## 886 1 1 1
## 887 0 1 1
## 888 1 1 1
## 889 1 1 1
## 890 1 1 1
## 891 1 1 1
## 892 1 1 1
## 893 1 1 1
## 894 1 1 1
## 895 1 1 1
## 896 1 1 0
## 897 1 1 1
## 898 1 0 1
## 899 0 1 1
## 900 0 1 1
## 901 1 1 0
## 902 1 1 0
## 903 1 1 1
## 904 1 1 1
## 905 1 0 1
## 906 1 1 1
## 907 1 1 1
## 908 1 1 1
## 909 1 1 1
## 910 1 1 1
## 911 1 1 1
## 912 1 1 1
## 913 0 0 1
## 914 1 1 1
## 915 1 1 1
## 916 1 1 1
## 917 1 1 1
## 918 1 1 0
## 919 1 1 1
## 920 1 1 1
## 921 1 1 1
## 922 1 1 1
## 923 1 1 1
## 924 1 1 1
## 925 0 1 0
## 926 1 1 1
## 927 1 1 1
## 928 1 0 1
## 929 1 1 0
## 930 1 1 0
## 931 1 1 1
## 932 1 1 0
## 933 1 1 0
## 934 1 1 1
## 935 1 1 1
## 936 1 1 1
## 937 1 1 0
## 938 1 1 1
## 939 1 1 1
## 940 1 1 1
## 941 1 0 0
## 942 1 1 1
## 943 1 1 1
## 944 1 1 1
## 945 1 1 1
## 946 1 1 1
## 947 1 1 1
## 948 1 0 1
## 949 1 1 1
## 950 1 1 1
## 951 1 1 0
## 952 1 1 1
## 953 1 1 1
## 954 1 0 1
## 955 1 1 1
## 956 1 1 1
## 957 1 1 1
## 958 1 1 1
## 959 1 1 1
## 960 1 1 1
## 961 1 1 1
## 962 1 1 0
## 963 1 1 0
## 964 1 1 1
## 965 1 1 1
## 966 1 1 1
## 967 1 1 1
## 968 1 1 1
## 969 1 1 1
## 970 1 1 1
## 971 1 0 0
## 972 1 1 1
## 973 1 1 1
## 974 1 1 0
## 975 1 1 1
## 976 1 1 1
## 977 1 1 1
## 978 1 1 0
## 979 1 1 1
## 980 1 0 1
## 981 1 1 1
## 982 1 1 1
## 983 1 1 1
## 984 1 1 1
## 985 1 1 1
## 986 1 1 1
## 987 1 1 1
## 988 1 1 1
## 989 1 1 0
## 990 1 1 1
## 991 1 1 1
## 992 1 1 1
## 993 1 1 1
## 994 1 1 1
## 995 1 0 1
## 996 1 0 1
## 997 1 0 1
## 998 1 0 1
## 999 1 0 1
## 1000 1 0 1
## 1001 1 0 1
## 1002 1 0 0
## 1003 1 1 1
## 1004 1 1 1
## 1005 1 1 1
## 1006 1 1 1
## 1007 1 1 1
## 1008 1 1 1
## 1009 1 1 1
## 1010 1 1 1
## 1011 1 1 0
## 1012 1 1 0
## 1013 1 1 1
## 1014 1 1 1
## 1015 1 1 1
## 1016 1 1 1
## 1017 1 1 1
## 1018 0 1 1
## 1019 1 1 1
## 1020 1 1 1
## 1021 1 1 1
## 1022 1 1 1
## 1023 1 1 1
## 1024 1 1 1
## 1025 1 1 1
## 1026 1 1 1
## 1027 1 1 1
## 1028 1 1 1
## 1029 1 1 1
## 1030 1 1 1
## 1031 1 1 1
## 1032 1 1 1
## 1033 1 1 1
## 1034 1 1 1
## 1035 1 1 1
## 1036 1 1 1
## 1037 1 1 0
## 1038 1 1 1
## 1039 1 1 1
## 1040 1 1 1
## 1041 1 1 1
## 1042 1 1 1
## 1043 1 1 1
## 1044 1 1 1
## 1045 1 0 1
## 1046 0 1 1
## 1047 1 1 1
## 1048 1 1 1
## 1049 1 1 0
## 1050 1 0 0
## 1051 1 0 0
## 1052 1 1 1
## 1053 1 1 1
## 1054 1 1 1
## 1055 1 1 0
## 1056 1 1 1
## 1057 1 0 0
## 1058 1 1 1
## 1059 1 1 1
## 1060 1 1 1
## 1061 1 1 1
## 1062 1 1 1
## 1063 1 1 1
## 1064 1 1 1
## 1065 1 1 0
## 1066 1 1 1
## 1067 1 0 1
## 1068 1 1 0
## 1069 1 1 1
## 1070 1 1 1
## 1071 1 1 1
## 1072 1 1 1
## 1073 1 1 1
## 1074 1 1 1
## 1075 1 1 1
## 1076 1 1 1
## 1077 1 1 1
## 1078 1 1 1
## 1079 1 1 1
## 1080 1 1 1
## 1081 1 1 1
## 1082 1 1 1
## 1083 1 1 1
## 1084 1 1 1
## 1085 1 1 1
## 1086 1 1 1
## 1087 1 1 1
## 1088 1 1 1
## 1089 1 0 1
## 1090 1 1 1
## 1091 1 1 1
## 1092 1 1 1
## 1093 1 0 1
## 1094 1 1 1
## 1095 1 1 0
## 1096 1 1 1
## 1097 1 1 0
## 1098 1 1 0
## 1099 1 1 1
## 1100 1 1 1
## 1101 1 1 0
## 1102 1 0 0
## 1103 1 1 0
## 1104 1 1 1
## 1105 1 1 1
## 1106 1 0 1
## 1107 1 1 1
## 1108 1 0 1
## 1109 1 1 1
## 1110 1 1 1
## 1111 1 1 1
## 1112 1 1 1
## 1113 1 1 1
## 1114 1 1 1
## 1115 1 1 1
## 1116 1 1 1
## 1117 1 1 1
## 1118 1 1 1
## 1119 1 1 1
## 1120 1 1 1
## 1121 1 1 1
## 1122 1 1 1
## 1123 1 1 1
## 1124 1 1 1
## 1125 1 1 1
## 1126 1 1 1
## 1127 0 1 1
## 1128 1 1 0
## 1129 1 1 1
## 1130 1 1 1
## 1131 1 1 1
## 1132 1 1 1
## 1133 1 1 1
## 1134 1 1 1
## 1135 1 1 1
## 1136 1 1 1
## 1137 1 1 1
## 1138 1 1 1
## 1139 1 1 1
## 1140 1 1 1
## 1141 1 1 1
## 1142 1 1 1
## 1143 1 1 1
## 1144 1 1 0
## 1145 1 1 1
## 1146 1 1 1
## 1147 1 1 0
## 1148 1 0 1
## 1149 1 1 1
## 1150 1 1 1
## 1151 1 1 0
## 1152 1 0 1
## 1153 1 1 0
## 1154 1 1 1
## 1155 1 1 1
## 1156 1 1 1
## 1157 1 1 1
## 1158 1 1 1
## 1159 1 1 1
## 1160 1 1 0
## 1161 1 1 0
## 1162 1 1 1
## 1163 1 1 1
## 1164 1 1 1
## 1165 1 1 1
## 1166 1 1 0
## 1167 1 1 1
## 1168 1 1 1
## 1169 1 1 0
## 1170 1 1 1
## 1171 1 1 0
## 1172 1 1 0
## 1173 1 0 1
## 1174 1 0 1
## 1175 1 1 1
## 1176 1 1 1
## 1177 1 1 1
## 1178 1 1 0
## 1179 1 1 1
## 1180 1 1 1
## 1181 1 1 0
## 1182 1 1 1
## 1183 1 1 1
## 1184 1 1 1
## 1185 1 1 1
## 1186 1 1 1
## 1187 1 1 1
## 1188 1 1 1
## 1189 1 1 1
## 1190 1 1 1
## 1191 1 1 1
## 1192 1 1 1
## 1193 1 1 1
## 1194 1 1 1
## 1195 1 1 1
## 1196 1 1 1
## 1197 1 1 1
## 1198 1 1 1
## 1199 1 1 1
## 1200 1 1 1
## 1201 1 1 1
## 1202 1 1 1
## 1203 1 1 1
## 1204 1 1 1
## 1205 1 1 1
## 1206 1 1 1
## 1207 1 1 1
## 1208 1 1 1
## 1209 1 1 0
## 1210 1 1 1
## 1211 1 1 1
## 1212 1 1 1
## 1213 1 1 1
## 1214 1 1 1
## 1215 1 1 1
## 1216 1 1 1
## 1217 1 1 1
## 1218 1 1 1
## 1219 1 1 0
## 1220 1 1 1
## 1221 1 1 0
## 1222 1 1 1
## 1223 1 0 1
## 1224 1 1 1
## 1225 1 1 1
## 1226 1 1 1
## 1227 1 1 1
## 1228 1 1 1
## 1229 1 1 0
## 1230 1 1 0
## 1231 1 1 0
## 1232 1 1 1
## 1233 1 1 1
## 1234 1 0 1
## 1235 1 1 1
## 1236 1 1 1
## 1237 1 1 1
## 1238 1 1 1
## 1239 1 1 0
## 1240 1 1 1
## 1241 1 1 1
## 1242 1 1 1
## 1243 1 1 1
## 1244 1 1 0
## 1245 1 1 0
## 1246 1 1 0
## 1247 1 1 1
## 1248 1 1 1
## 1249 1 1 0
## 1250 1 1 1
## 1251 1 1 0
## 1252 1 1 1
## 1253 1 1 1
## 1254 1 1 1
## 1255 1 1 1
## 1256 1 1 1
## 1257 1 1 1
## 1258 1 1 1
## 1259 1 1 1
## 1260 1 1 1
## 1261 1 1 1
## 1262 1 1 1
## 1263 1 1 1
## 1264 1 1 1
## 1265 1 1 1
## 1266 1 1 1
## 1267 1 1 1
## 1268 1 1 1
## 1269 1 1 1
## 1270 1 1 1
## 1271 1 1 1
## 1272 1 1 1
## 1273 1 1 1
## 1274 1 1 0
## 1275 1 1 1
## 1276 1 1 1
## 1277 1 1 1
## 1278 1 1 1
## 1279 0 1 0
## 1280 1 1 1
## 1281 1 1 0
## 1282 1 1 0
## 1283 1 1 1
## 1284 1 1 1
## 1285 1 1 1
## 1286 1 0 1
## 1287 1 1 1
## 1288 1 0 0
## 1289 1 1 0
## 1290 1 1 0
## 1291 1 1 1
## 1292 1 1 1
## 1293 1 1 1
## 1294 1 1 1
## 1295 1 1 0
## 1296 1 0 0
## 1297 1 1 1
## 1298 1 1 1
## 1299 1 1 1
## 1300 1 1 1
## 1301 1 1 1
## 1302 1 1 1
## 1303 1 1 1
## 1304 1 1 1
## 1305 1 1 1
## 1306 1 1 1
## 1307 1 1 1
## 1308 1 1 1
## 1309 1 1 1
## 1310 1 1 1
## 1311 1 1 1
## 1312 1 1 1
## 1313 1 1 1
## 1314 1 1 1
## 1315 1 1 1
## 1316 1 1 1
## 1317 1 1 1
## 1318 1 1 1
## 1319 1 1 1
## 1320 1 1 1
## 1321 1 1 1
## 1322 1 0 0
## 1323 1 1 1
## 1324 1 1 1
## 1325 1 1 1
## 1326 1 1 0
## 1327 1 0 1
## 1328 1 1 0
## 1329 1 1 1
## 1330 1 1 1
## 1331 1 0 0
## 1332 1 1 1
## 1333 1 1 1
## 1334 1 0 1
## 1335 1 1 0
## 1336 1 1 1
## 1337 1 1 1
## 1338 1 1 1
## 1339 1 0 1
## 1340 1 1 1
## 1341 1 1 1
## 1342 1 1 1
## 1343 1 1 1
## 1344 1 1 1
## 1345 0 1 0
## 1346 1 1 1
## 1347 1 1 1
## 1348 1 1 1
## 1349 1 1 0
## 1350 1 1 1
## 1351 1 0 1
## 1352 1 0 0
## 1353 1 1 1
## 1354 1 1 0
## 1355 1 1 1
## 1356 1 1 1
## 1357 1 1 1
## 1358 1 0 1
## 1359 1 0 1
## 1360 1 1 1
## 1361 1 1 1
## 1362 1 1 1
## 1363 1 1 0
## 1364 1 1 0
## 1365 1 1 1
## 1366 1 1 1
## 1367 1 1 1
## 1368 1 1 1
## 1369 1 1 1
## 1370 1 1 0
## 1371 1 1 0
## 1372 1 1 0
## 1373 1 1 0
## 1374 1 1 0
## 1375 1 1 0
## 1376 1 1 1
## 1377 1 1 0
## 1378 1 1 0
## 1379 1 1 0
## 1380 1 1 0
## 1381 1 1 0
## 1382 1 1 0
## 1383 1 1 0
## 1384 1 1 0
## 1385 1 1 0
## 1386 1 1 0
## 1387 1 1 0
## 1388 1 1 0
## 1389 1 1 1
## 1390 1 1 1
## 1391 1 1 0
## 1392 1 1 0
## 1393 1 0 1
## 1394 1 1 0
## 1395 1 1 0
## 1396 1 1 0
## 1397 1 1 0
## 1398 1 1 0
## 1399 1 1 1
## 1400 1 1 1
## 1401 1 0 1
## 1402 1 0 0
## 1403 1 1 0
## 1404 1 1 1
## 1405 1 1 1
## 1406 1 1 1
## 1407 1 1 0
## 1408 1 1 1
## 1409 1 1 1
## 1410 1 1 1
## 1411 1 1 1
## 1412 1 1 1
## 1413 1 1 1
## 1414 1 1 1
## 1415 1 0 0
## 1416 1 1 1
## 1417 1 1 1
## 1418 1 1 0
## 1419 1 1 1
## 1420 1 1 0
## 1421 1 1 0
## 1422 1 1 1
## 1423 1 0 1
## 1424 1 1 1
## 1425 1 1 1
## 1426 1 1 1
## 1427 1 1 0
## 1428 1 1 0
## 1429 1 1 1
## 1430 1 1 0
## 1431 1 1 0
## 1432 1 1 0
## 1433 1 0 0
## 1434 1 1 1
## 1435 1 1 1
## 1436 1 1 1
## 1437 1 1 0
## 1438 1 1 1
## 1439 1 1 1
## 1440 1 1 0
## 1441 1 1 1
## 1442 1 1 1
## 1443 1 1 1
## 1444 1 1 0
## 1445 1 1 1
## 1446 1 1 1
## 1447 1 1 1
## 1448 1 1 1
## 1449 1 1 0
## 1450 1 1 0
## 1451 1 1 1
## 1452 1 1 1
## 1453 1 1 1
## 1454 1 1 1
## 1455 1 0 0
## 1456 1 0 0
## 1457 1 1 1
## 1458 1 1 0
## 1459 0 1 1
## 1460 1 1 1
## 1461 1 1 0
## 1462 1 0 0
## 1463 1 1 0
## 1464 1 1 0
## 1465 1 0 1
## 1466 1 1 1
## 1467 1 1 1
## 1468 1 1 1
## 1469 1 1 1
## 1470 1 1 0
## 1471 0 1 0
## 1472 1 1 1
## 1473 1 1 1
## 1474 1 1 0
## 1475 1 1 1
## 1476 1 0 1
## 1477 1 1 0
## 1478 1 1 1
## 1479 1 1 0
## 1480 1 1 0
## 1481 1 1 0
## 1482 1 1 1
## 1483 1 1 1
## 1484 1 1 1
## 1485 1 1 1
## 1486 1 1 0
## 1487 1 1 1
## 1488 1 1 0
## 1489 1 1 0
## 1490 1 1 0
## 1491 1 1 0
## 1492 1 1 0
## 1493 1 1 0
## 1494 1 1 0
## 1495 1 1 0
## 1496 1 1 1
## 1497 1 1 1
## 1498 1 1 1
## 1499 1 1 1
## 1500 1 1 0
## 1501 1 1 0
## 1502 1 1 0
## 1503 1 1 0
## 1504 1 1 0
## 1505 1 1 1
## 1506 1 1 0
## 1507 1 1 0
## 1508 1 1 0
## 1509 1 1 1
## 1510 1 1 0
## 1511 1 1 1
## 1512 1 1 0
## 1513 1 1 0
## 1514 1 1 0
## 1515 1 1 0
## 1516 1 1 0
## 1517 1 1 0
## 1518 1 1 0
## 1519 1 1 0
## 1520 1 1 0
## 1521 1 1 0
## 1522 1 1 0
## 1523 1 1 0
## 1524 1 1 1
## 1525 1 1 1
## 1526 1 1 0
## 1527 1 1 1
## 1528 1 1 1
## 1529 0 0 1
## 1530 1 1 1
## 1531 1 1 0
## 1532 1 1 0
## 1533 1 1 1
## 1534 1 1 1
## 1535 1 1 1
## 1536 1 1 1
## 1537 1 1 0
## 1538 1 1 1
## Amenities_HotWater Amenities_TV Amenities_AC
## 1 1 1 1
## 2 1 1 1
## 3 1 0 1
## 4 1 0 1
## 5 1 1 0
## 6 0 0 1
## 7 1 0 1
## 8 0 0 1
## 9 1 1 1
## 10 1 1 1
## 11 1 1 1
## 12 0 1 1
## 13 1 1 1
## 14 0 1 1
## 15 1 1 1
## 16 0 1 1
## 17 1 1 1
## 18 1 1 1
## 19 0 0 0
## 20 1 1 1
## 21 1 1 1
## 22 1 1 1
## 23 1 1 1
## 24 1 1 1
## 25 1 1 1
## 26 1 1 1
## 27 0 1 1
## 28 0 1 1
## 29 1 1 1
## 30 1 1 1
## 31 0 1 1
## 32 1 1 1
## 33 1 1 1
## 34 1 1 1
## 35 1 1 1
## 36 1 1 1
## 37 1 1 1
## 38 1 1 1
## 39 1 1 1
## 40 1 1 1
## 41 1 1 1
## 42 1 1 1
## 43 1 1 1
## 44 1 1 1
## 45 1 1 1
## 46 0 0 1
## 47 1 1 1
## 48 1 0 1
## 49 1 1 1
## 50 1 1 1
## 51 1 1 1
## 52 1 1 1
## 53 0 1 1
## 54 1 1 1
## 55 0 1 1
## 56 1 1 1
## 57 1 1 1
## 58 1 1 1
## 59 1 1 1
## 60 1 1 1
## 61 0 1 1
## 62 1 0 1
## 63 1 1 1
## 64 1 1 1
## 65 1 1 1
## 66 1 1 1
## 67 1 1 1
## 68 1 1 1
## 69 1 1 1
## 70 1 1 1
## 71 1 1 1
## 72 1 1 1
## 73 1 1 1
## 74 1 1 1
## 75 1 1 1
## 76 1 1 1
## 77 1 1 1
## 78 1 1 1
## 79 1 1 1
## 80 1 1 1
## 81 1 1 1
## 82 0 1 1
## 83 0 1 1
## 84 1 0 1
## 85 0 1 1
## 86 1 1 1
## 87 1 0 1
## 88 0 1 1
## 89 1 1 1
## 90 1 1 1
## 91 1 1 1
## 92 1 1 1
## 93 1 1 1
## 94 1 0 1
## 95 1 1 1
## 96 1 1 1
## 97 0 1 1
## 98 0 1 1
## 99 0 1 1
## 100 1 1 1
## 101 1 1 1
## 102 0 1 1
## 103 1 1 1
## 104 1 1 1
## 105 1 1 1
## 106 0 1 1
## 107 1 1 1
## 108 1 1 1
## 109 1 1 1
## 110 0 1 1
## 111 1 1 1
## 112 1 1 1
## 113 0 1 1
## 114 0 1 1
## 115 1 1 1
## 116 0 1 1
## 117 1 1 1
## 118 1 1 1
## 119 1 0 1
## 120 1 0 1
## 121 1 0 1
## 122 0 1 1
## 123 1 1 1
## 124 1 1 1
## 125 1 1 1
## 126 1 1 1
## 127 0 1 1
## 128 0 1 1
## 129 1 1 1
## 130 1 1 1
## 131 1 1 1
## 132 1 1 1
## 133 0 1 1
## 134 1 1 1
## 135 0 1 1
## 136 0 1 1
## 137 0 1 1
## 138 1 1 1
## 139 0 0 1
## 140 0 1 1
## 141 0 1 1
## 142 0 1 1
## 143 0 1 1
## 144 1 1 1
## 145 1 1 1
## 146 0 1 1
## 147 0 1 1
## 148 1 1 1
## 149 1 1 1
## 150 1 1 1
## 151 1 1 1
## 152 0 1 1
## 153 0 0 1
## 154 0 1 1
## 155 0 0 1
## 156 1 1 1
## 157 0 1 1
## 158 1 1 1
## 159 1 1 1
## 160 0 1 1
## 161 0 1 1
## 162 0 1 1
## 163 1 1 1
## 164 0 1 1
## 165 1 0 1
## 166 1 1 1
## 167 1 1 1
## 168 0 1 1
## 169 0 1 1
## 170 1 1 1
## 171 0 1 1
## 172 1 1 1
## 173 1 1 1
## 174 0 1 1
## 175 0 1 1
## 176 1 1 1
## 177 1 1 1
## 178 0 1 1
## 179 1 1 1
## 180 1 1 1
## 181 1 1 1
## 182 1 1 1
## 183 0 1 1
## 184 1 1 1
## 185 0 1 1
## 186 0 1 1
## 187 0 1 1
## 188 0 1 1
## 189 0 1 1
## 190 0 1 1
## 191 0 1 1
## 192 1 1 1
## 193 0 1 1
## 194 0 1 1
## 195 1 1 1
## 196 1 1 1
## 197 1 1 1
## 198 1 1 1
## 199 1 1 1
## 200 1 1 1
## 201 1 1 1
## 202 1 1 1
## 203 0 1 1
## 204 1 1 1
## 205 0 1 1
## 206 1 1 1
## 207 1 1 1
## 208 1 1 1
## 209 0 0 0
## 210 0 1 1
## 211 0 1 1
## 212 0 1 1
## 213 0 0 1
## 214 1 1 1
## 215 1 1 1
## 216 1 1 1
## 217 0 1 1
## 218 0 1 1
## 219 1 1 1
## 220 0 1 1
## 221 1 1 1
## 222 1 1 1
## 223 0 0 1
## 224 0 1 1
## 225 0 1 1
## 226 1 1 1
## 227 1 1 1
## 228 0 1 1
## 229 0 1 1
## 230 1 1 1
## 231 0 1 1
## 232 1 1 1
## 233 1 1 1
## 234 1 1 1
## 235 1 1 1
## 236 1 1 1
## 237 1 0 1
## 238 0 0 1
## 239 1 1 1
## 240 1 1 1
## 241 1 1 1
## 242 1 1 1
## 243 1 1 1
## 244 0 0 1
## 245 1 1 1
## 246 0 1 1
## 247 0 1 1
## 248 0 1 1
## 249 1 1 1
## 250 1 1 1
## 251 1 1 1
## 252 0 1 1
## 253 0 1 1
## 254 0 1 1
## 255 1 1 1
## 256 1 1 1
## 257 0 1 1
## 258 1 1 1
## 259 1 1 1
## 260 0 1 1
## 261 1 1 1
## 262 1 1 1
## 263 1 0 1
## 264 0 1 1
## 265 0 1 1
## 266 1 1 1
## 267 0 1 1
## 268 0 1 1
## 269 1 1 1
## 270 1 1 1
## 271 1 1 1
## 272 1 1 1
## 273 1 1 1
## 274 1 1 1
## 275 1 0 1
## 276 0 1 1
## 277 1 1 1
## 278 1 1 1
## 279 1 1 1
## 280 1 1 1
## 281 1 1 1
## 282 1 1 1
## 283 0 1 1
## 284 1 1 1
## 285 1 1 1
## 286 0 1 1
## 287 0 0 1
## 288 0 1 1
## 289 0 1 1
## 290 1 1 1
## 291 1 1 1
## 292 0 1 1
## 293 0 1 1
## 294 0 1 1
## 295 1 1 1
## 296 0 0 1
## 297 1 1 1
## 298 1 1 1
## 299 0 1 1
## 300 1 1 1
## 301 1 1 1
## 302 1 1 1
## 303 1 1 1
## 304 1 1 1
## 305 1 1 1
## 306 0 1 1
## 307 1 1 1
## 308 1 1 1
## 309 1 1 1
## 310 0 1 1
## 311 1 1 1
## 312 1 1 1
## 313 0 0 1
## 314 1 1 1
## 315 0 1 1
## 316 0 0 0
## 317 1 1 1
## 318 0 1 1
## 319 0 1 1
## 320 1 1 1
## 321 1 1 1
## 322 1 1 1
## 323 1 1 1
## 324 1 1 1
## 325 0 1 1
## 326 1 1 1
## 327 1 1 1
## 328 1 1 1
## 329 1 1 1
## 330 1 0 1
## 331 1 0 1
## 332 1 1 1
## 333 1 1 1
## 334 1 1 1
## 335 1 1 1
## 336 1 1 1
## 337 0 1 1
## 338 0 1 1
## 339 1 1 1
## 340 1 1 1
## 341 1 1 1
## 342 1 1 1
## 343 0 1 1
## 344 1 0 1
## 345 0 1 1
## 346 0 1 1
## 347 1 1 1
## 348 1 1 1
## 349 1 1 1
## 350 1 1 1
## 351 1 1 1
## 352 1 1 1
## 353 1 1 1
## 354 0 1 1
## 355 0 1 1
## 356 1 1 1
## 357 0 1 1
## 358 1 1 0
## 359 1 1 1
## 360 1 1 1
## 361 0 1 1
## 362 1 1 1
## 363 0 0 1
## 364 1 1 1
## 365 1 1 1
## 366 1 1 1
## 367 1 1 1
## 368 1 1 1
## 369 1 1 1
## 370 0 1 1
## 371 1 1 1
## 372 1 1 1
## 373 0 1 1
## 374 1 1 1
## 375 0 0 1
## 376 1 1 1
## 377 1 1 1
## 378 1 1 1
## 379 1 0 1
## 380 1 1 1
## 381 0 1 1
## 382 0 1 1
## 383 0 1 1
## 384 1 1 1
## 385 0 1 1
## 386 0 1 1
## 387 0 1 1
## 388 0 1 1
## 389 0 1 1
## 390 0 1 1
## 391 0 1 1
## 392 1 1 1
## 393 1 1 1
## 394 1 1 1
## 395 1 1 1
## 396 0 1 1
## 397 0 1 1
## 398 1 1 1
## 399 0 1 1
## 400 0 1 1
## 401 1 1 1
## 402 0 1 1
## 403 0 1 1
## 404 1 1 1
## 405 0 1 1
## 406 1 0 1
## 407 1 1 1
## 408 1 1 1
## 409 1 1 1
## 410 0 0 0
## 411 1 1 1
## 412 0 1 1
## 413 1 1 1
## 414 1 0 1
## 415 1 1 1
## 416 1 1 1
## 417 1 1 1
## 418 1 1 1
## 419 0 1 1
## 420 1 1 1
## 421 0 1 1
## 422 0 1 1
## 423 1 1 1
## 424 0 1 1
## 425 1 1 1
## 426 1 1 1
## 427 0 1 1
## 428 0 1 1
## 429 0 1 1
## 430 1 0 1
## 431 0 1 1
## 432 1 1 1
## 433 1 1 1
## 434 1 1 1
## 435 1 1 1
## 436 1 1 1
## 437 1 1 1
## 438 1 1 1
## 439 1 1 1
## 440 1 1 1
## 441 1 1 1
## 442 1 1 1
## 443 1 1 1
## 444 0 1 1
## 445 0 1 1
## 446 1 1 1
## 447 1 1 1
## 448 1 0 1
## 449 0 0 1
## 450 1 1 1
## 451 1 1 1
## 452 1 0 1
## 453 1 1 1
## 454 1 1 1
## 455 1 1 1
## 456 1 1 1
## 457 0 1 1
## 458 1 1 1
## 459 1 1 1
## 460 1 1 1
## 461 0 1 1
## 462 1 1 1
## 463 0 1 1
## 464 1 1 1
## 465 0 1 1
## 466 1 1 1
## 467 1 1 1
## 468 1 1 1
## 469 0 1 1
## 470 1 1 1
## 471 0 1 1
## 472 1 1 1
## 473 1 1 1
## 474 1 1 1
## 475 1 1 1
## 476 1 1 1
## 477 0 1 1
## 478 0 1 1
## 479 1 1 1
## 480 1 1 1
## 481 0 1 1
## 482 0 1 1
## 483 1 1 1
## 484 0 1 1
## 485 1 1 1
## 486 0 0 1
## 487 1 1 1
## 488 1 1 1
## 489 1 1 1
## 490 1 1 1
## 491 1 1 1
## 492 0 1 1
## 493 1 1 1
## 494 1 1 1
## 495 0 1 1
## 496 0 0 1
## 497 0 0 1
## 498 1 1 1
## 499 1 1 1
## 500 0 1 1
## 501 0 1 1
## 502 0 1 1
## 503 1 1 1
## 504 0 0 0
## 505 0 1 1
## 506 1 1 1
## 507 1 1 1
## 508 1 1 1
## 509 1 1 1
## 510 1 1 1
## 511 0 1 1
## 512 0 1 1
## 513 1 1 1
## 514 0 1 1
## 515 1 1 1
## 516 1 1 1
## 517 1 1 1
## 518 0 1 1
## 519 1 1 1
## 520 1 1 1
## 521 1 1 1
## 522 1 1 1
## 523 1 1 1
## 524 1 1 1
## 525 0 1 1
## 526 0 1 1
## 527 0 1 1
## 528 0 1 1
## 529 0 1 1
## 530 1 1 1
## 531 1 1 1
## 532 1 1 1
## 533 1 0 1
## 534 0 1 1
## 535 1 1 1
## 536 1 1 1
## 537 1 1 1
## 538 1 1 1
## 539 1 1 1
## 540 1 1 1
## 541 1 1 1
## 542 1 1 1
## 543 1 1 1
## 544 1 1 1
## 545 1 1 1
## 546 0 0 1
## 547 1 1 1
## 548 1 1 1
## 549 1 1 1
## 550 1 1 1
## 551 1 1 1
## 552 1 1 1
## 553 1 1 1
## 554 1 1 1
## 555 1 1 1
## 556 1 1 1
## 557 1 1 1
## 558 1 1 1
## 559 1 1 1
## 560 1 1 1
## 561 1 1 1
## 562 1 1 1
## 563 1 1 1
## 564 1 1 1
## 565 1 1 1
## 566 1 1 1
## 567 1 1 1
## 568 0 1 1
## 569 1 1 1
## 570 1 1 1
## 571 1 1 1
## 572 1 1 1
## 573 1 1 1
## 574 1 1 1
## 575 1 1 1
## 576 1 1 1
## 577 1 1 1
## 578 1 1 1
## 579 0 1 1
## 580 1 1 1
## 581 1 1 1
## 582 1 1 1
## 583 0 1 1
## 584 1 0 1
## 585 1 1 1
## 586 1 1 1
## 587 0 1 1
## 588 1 1 1
## 589 0 1 1
## 590 1 1 1
## 591 0 0 0
## 592 1 1 1
## 593 1 1 1
## 594 1 1 1
## 595 1 1 1
## 596 0 1 1
## 597 1 1 1
## 598 0 1 1
## 599 1 1 1
## 600 1 1 1
## 601 1 1 1
## 602 1 1 1
## 603 1 1 1
## 604 1 1 1
## 605 0 0 1
## 606 1 0 1
## 607 0 0 1
## 608 0 1 1
## 609 1 1 1
## 610 0 0 1
## 611 0 1 1
## 612 0 1 1
## 613 0 1 1
## 614 0 1 1
## 615 0 1 1
## 616 0 1 1
## 617 0 1 1
## 618 1 1 1
## 619 1 1 1
## 620 1 1 1
## 621 1 1 1
## 622 0 0 1
## 623 1 1 1
## 624 1 1 1
## 625 0 1 1
## 626 1 1 1
## 627 1 1 1
## 628 1 1 1
## 629 1 1 1
## 630 1 1 1
## 631 1 1 1
## 632 1 1 1
## 633 1 1 1
## 634 1 1 1
## 635 1 1 1
## 636 1 1 1
## 637 1 1 1
## 638 1 1 1
## 639 1 1 1
## 640 1 1 1
## 641 1 1 1
## 642 1 1 1
## 643 0 1 1
## 644 1 1 1
## 645 1 1 1
## 646 1 1 1
## 647 1 1 1
## 648 1 0 1
## 649 0 1 1
## 650 0 1 1
## 651 1 1 1
## 652 1 1 1
## 653 0 0 1
## 654 1 1 1
## 655 0 0 1
## 656 1 1 1
## 657 1 1 1
## 658 1 1 1
## 659 1 1 1
## 660 1 1 1
## 661 1 1 1
## 662 1 1 1
## 663 1 1 1
## 664 1 1 1
## 665 0 1 1
## 666 0 1 1
## 667 0 1 1
## 668 1 1 1
## 669 0 1 1
## 670 1 1 1
## 671 1 1 1
## 672 1 1 1
## 673 1 1 1
## 674 0 0 1
## 675 1 1 1
## 676 1 1 1
## 677 1 1 1
## 678 1 1 1
## 679 1 1 1
## 680 1 1 1
## 681 1 1 1
## 682 1 1 1
## 683 1 1 1
## 684 0 1 1
## 685 1 1 1
## 686 1 1 1
## 687 0 1 1
## 688 0 1 1
## 689 0 1 1
## 690 1 1 1
## 691 1 1 1
## 692 1 1 1
## 693 1 1 1
## 694 1 1 1
## 695 0 1 1
## 696 1 1 0
## 697 1 1 1
## 698 1 1 1
## 699 1 1 1
## 700 0 1 1
## 701 1 1 1
## 702 1 1 1
## 703 0 1 1
## 704 1 1 1
## 705 1 1 1
## 706 1 1 1
## 707 0 1 1
## 708 0 1 1
## 709 1 0 1
## 710 0 1 1
## 711 0 1 1
## 712 0 1 1
## 713 0 1 1
## 714 0 1 1
## 715 1 1 1
## 716 0 1 1
## 717 1 1 1
## 718 1 1 0
## 719 1 0 1
## 720 1 1 1
## 721 1 1 1
## 722 1 1 1
## 723 1 1 1
## 724 1 1 1
## 725 1 1 1
## 726 1 1 1
## 727 1 1 1
## 728 1 1 1
## 729 1 1 1
## 730 1 1 1
## 731 1 1 1
## 732 0 1 1
## 733 0 1 1
## 734 1 1 1
## 735 1 1 1
## 736 1 1 1
## 737 1 1 1
## 738 0 1 1
## 739 1 0 1
## 740 1 1 1
## 741 0 1 1
## 742 0 1 1
## 743 1 1 1
## 744 1 1 1
## 745 1 1 1
## 746 1 1 1
## 747 1 1 1
## 748 1 0 1
## 749 1 1 1
## 750 1 1 1
## 751 1 1 1
## 752 1 0 1
## 753 1 1 1
## 754 1 1 1
## 755 1 1 1
## 756 0 1 1
## 757 0 1 1
## 758 0 1 1
## 759 1 1 1
## 760 0 1 1
## 761 1 0 1
## 762 1 0 1
## 763 1 1 1
## 764 1 1 1
## 765 1 1 1
## 766 1 1 1
## 767 1 1 1
## 768 1 1 1
## 769 1 1 1
## 770 1 1 1
## 771 0 1 1
## 772 1 1 1
## 773 1 0 1
## 774 1 0 1
## 775 0 1 1
## 776 1 1 1
## 777 1 1 1
## 778 1 1 1
## 779 1 1 1
## 780 1 1 1
## 781 1 1 1
## 782 1 1 1
## 783 1 1 1
## 784 0 1 1
## 785 0 1 1
## 786 1 1 1
## 787 1 1 1
## 788 1 0 1
## 789 0 1 1
## 790 0 1 1
## 791 1 1 1
## 792 0 1 1
## 793 1 0 1
## 794 1 1 1
## 795 1 1 1
## 796 1 1 1
## 797 1 1 1
## 798 1 1 1
## 799 1 1 1
## 800 1 1 1
## 801 1 1 1
## 802 1 1 1
## 803 0 1 1
## 804 1 1 1
## 805 1 1 1
## 806 1 0 1
## 807 1 0 1
## 808 1 1 1
## 809 1 1 1
## 810 1 1 1
## 811 0 1 1
## 812 0 1 1
## 813 1 1 1
## 814 0 1 1
## 815 0 1 1
## 816 0 0 1
## 817 1 1 1
## 818 1 1 1
## 819 1 1 1
## 820 1 1 1
## 821 0 0 1
## 822 1 1 1
## 823 1 1 1
## 824 0 1 1
## 825 1 1 1
## 826 1 1 1
## 827 1 1 1
## 828 1 1 1
## 829 1 1 1
## 830 1 1 1
## 831 0 1 1
## 832 1 1 1
## 833 1 0 1
## 834 1 1 1
## 835 0 1 1
## 836 1 1 1
## 837 1 1 1
## 838 1 1 1
## 839 0 1 1
## 840 0 1 1
## 841 0 1 1
## 842 1 1 1
## 843 0 1 1
## 844 1 1 1
## 845 1 1 1
## 846 1 1 1
## 847 1 0 1
## 848 1 0 1
## 849 1 0 1
## 850 1 1 1
## 851 1 1 1
## 852 1 1 1
## 853 1 1 1
## 854 1 1 1
## 855 0 1 1
## 856 0 0 0
## 857 1 0 1
## 858 1 1 1
## 859 1 1 1
## 860 1 1 1
## 861 1 1 1
## 862 1 1 1
## 863 0 1 1
## 864 0 1 1
## 865 1 0 1
## 866 1 0 1
## 867 0 1 1
## 868 1 1 1
## 869 1 1 1
## 870 1 1 1
## 871 1 1 1
## 872 1 1 1
## 873 1 1 1
## 874 1 1 0
## 875 1 1 1
## 876 1 1 1
## 877 0 1 1
## 878 1 0 1
## 879 1 1 1
## 880 1 0 1
## 881 1 1 1
## 882 1 1 1
## 883 1 0 1
## 884 1 0 1
## 885 1 1 1
## 886 0 1 1
## 887 1 1 1
## 888 1 1 1
## 889 1 1 1
## 890 0 1 1
## 891 1 1 1
## 892 1 1 1
## 893 0 1 1
## 894 1 1 1
## 895 0 1 1
## 896 0 0 1
## 897 0 0 1
## 898 1 1 1
## 899 1 1 1
## 900 1 1 1
## 901 0 1 1
## 902 0 1 1
## 903 0 1 1
## 904 1 1 1
## 905 0 1 1
## 906 0 0 1
## 907 1 1 1
## 908 1 1 1
## 909 1 1 1
## 910 1 1 1
## 911 1 1 1
## 912 0 1 1
## 913 0 1 1
## 914 1 1 1
## 915 0 1 1
## 916 1 0 1
## 917 1 1 1
## 918 0 1 1
## 919 1 1 1
## 920 1 1 1
## 921 1 1 1
## 922 1 1 1
## 923 1 1 1
## 924 1 1 1
## 925 0 1 1
## 926 1 1 1
## 927 1 1 1
## 928 1 1 0
## 929 0 1 1
## 930 1 1 1
## 931 1 0 1
## 932 1 0 1
## 933 1 1 1
## 934 1 1 1
## 935 0 0 1
## 936 1 1 1
## 937 1 0 1
## 938 1 1 1
## 939 1 1 1
## 940 0 1 1
## 941 0 0 1
## 942 1 1 1
## 943 1 0 1
## 944 0 1 1
## 945 1 0 1
## 946 1 0 1
## 947 1 1 1
## 948 1 1 1
## 949 0 0 1
## 950 1 0 1
## 951 0 0 1
## 952 1 0 1
## 953 1 0 1
## 954 0 1 1
## 955 0 1 1
## 956 1 1 1
## 957 1 1 1
## 958 1 1 1
## 959 1 1 1
## 960 1 1 1
## 961 1 1 1
## 962 0 1 1
## 963 0 1 0
## 964 0 1 1
## 965 1 1 1
## 966 1 1 1
## 967 1 1 1
## 968 0 1 1
## 969 1 1 1
## 970 0 1 1
## 971 1 1 1
## 972 1 1 1
## 973 0 1 1
## 974 1 1 1
## 975 1 1 1
## 976 1 0 1
## 977 0 1 1
## 978 0 0 1
## 979 1 1 1
## 980 1 1 1
## 981 1 1 1
## 982 1 1 1
## 983 1 1 1
## 984 1 1 1
## 985 1 1 1
## 986 1 1 1
## 987 1 1 1
## 988 1 1 1
## 989 1 1 1
## 990 0 1 1
## 991 1 0 1
## 992 1 1 1
## 993 1 1 1
## 994 1 1 1
## 995 1 1 1
## 996 0 1 1
## 997 0 1 1
## 998 0 1 1
## 999 0 1 1
## 1000 0 1 1
## 1001 0 1 1
## 1002 0 1 1
## 1003 1 1 1
## 1004 1 1 1
## 1005 1 1 1
## 1006 1 1 1
## 1007 1 1 1
## 1008 1 1 1
## 1009 1 0 1
## 1010 1 1 1
## 1011 1 1 1
## 1012 0 1 1
## 1013 0 0 1
## 1014 1 1 1
## 1015 1 1 1
## 1016 0 0 1
## 1017 1 1 1
## 1018 1 1 1
## 1019 1 1 1
## 1020 0 1 1
## 1021 1 1 1
## 1022 1 1 1
## 1023 1 1 1
## 1024 1 1 1
## 1025 1 1 1
## 1026 1 1 1
## 1027 1 1 1
## 1028 1 0 1
## 1029 1 1 1
## 1030 1 1 1
## 1031 1 1 1
## 1032 1 0 1
## 1033 1 0 1
## 1034 1 1 1
## 1035 1 1 1
## 1036 1 1 1
## 1037 0 0 1
## 1038 1 1 1
## 1039 1 1 1
## 1040 1 1 1
## 1041 1 1 1
## 1042 1 1 1
## 1043 1 1 1
## 1044 1 1 1
## 1045 1 0 1
## 1046 1 1 1
## 1047 1 1 1
## 1048 0 1 1
## 1049 1 0 1
## 1050 0 1 1
## 1051 0 1 1
## 1052 1 1 1
## 1053 1 1 1
## 1054 1 1 1
## 1055 0 0 1
## 1056 1 0 1
## 1057 0 0 0
## 1058 1 1 1
## 1059 1 1 1
## 1060 1 1 1
## 1061 1 0 1
## 1062 1 1 1
## 1063 1 1 1
## 1064 1 1 1
## 1065 1 1 1
## 1066 0 1 1
## 1067 1 1 1
## 1068 0 1 1
## 1069 1 1 1
## 1070 1 1 1
## 1071 1 1 1
## 1072 1 1 1
## 1073 1 1 1
## 1074 1 1 1
## 1075 1 0 1
## 1076 0 1 1
## 1077 1 1 1
## 1078 1 1 1
## 1079 1 0 1
## 1080 1 1 1
## 1081 1 0 1
## 1082 1 1 1
## 1083 1 1 1
## 1084 1 1 1
## 1085 1 1 1
## 1086 0 0 1
## 1087 1 1 1
## 1088 1 1 1
## 1089 1 1 1
## 1090 1 1 1
## 1091 1 1 1
## 1092 0 1 1
## 1093 1 1 1
## 1094 0 1 1
## 1095 1 0 1
## 1096 0 0 1
## 1097 0 1 1
## 1098 0 0 1
## 1099 1 1 1
## 1100 1 1 1
## 1101 1 0 1
## 1102 1 1 1
## 1103 1 0 0
## 1104 0 1 1
## 1105 1 1 1
## 1106 1 1 1
## 1107 1 1 1
## 1108 1 0 1
## 1109 1 1 1
## 1110 0 1 1
## 1111 0 1 1
## 1112 1 1 1
## 1113 1 1 1
## 1114 1 1 1
## 1115 1 1 1
## 1116 1 1 1
## 1117 1 1 1
## 1118 1 1 1
## 1119 1 1 1
## 1120 0 1 1
## 1121 1 1 1
## 1122 0 0 1
## 1123 0 1 1
## 1124 0 1 1
## 1125 0 1 1
## 1126 0 0 1
## 1127 1 1 1
## 1128 0 1 1
## 1129 0 1 1
## 1130 1 1 1
## 1131 1 1 1
## 1132 1 1 1
## 1133 1 1 1
## 1134 1 1 1
## 1135 1 1 1
## 1136 1 1 1
## 1137 1 1 1
## 1138 1 1 1
## 1139 1 0 1
## 1140 1 1 1
## 1141 1 1 1
## 1142 1 1 1
## 1143 1 1 1
## 1144 0 1 1
## 1145 1 1 1
## 1146 1 1 1
## 1147 1 1 1
## 1148 1 0 1
## 1149 0 1 1
## 1150 0 1 1
## 1151 1 1 1
## 1152 1 0 1
## 1153 1 0 1
## 1154 1 1 1
## 1155 1 0 1
## 1156 1 0 1
## 1157 1 0 1
## 1158 1 1 1
## 1159 0 1 1
## 1160 1 1 1
## 1161 1 0 1
## 1162 1 1 1
## 1163 1 1 1
## 1164 0 1 1
## 1165 1 0 1
## 1166 1 1 1
## 1167 0 1 1
## 1168 1 1 1
## 1169 1 0 1
## 1170 1 1 1
## 1171 1 1 1
## 1172 1 0 1
## 1173 1 0 0
## 1174 1 1 1
## 1175 1 1 1
## 1176 1 1 1
## 1177 0 0 1
## 1178 1 0 1
## 1179 1 1 1
## 1180 1 1 1
## 1181 0 1 1
## 1182 1 1 1
## 1183 0 0 1
## 1184 1 0 1
## 1185 1 1 1
## 1186 1 1 1
## 1187 1 1 1
## 1188 1 1 1
## 1189 1 1 1
## 1190 1 1 1
## 1191 1 1 1
## 1192 1 1 1
## 1193 1 1 1
## 1194 1 1 1
## 1195 1 1 1
## 1196 1 1 1
## 1197 1 1 1
## 1198 1 1 1
## 1199 1 1 1
## 1200 1 1 1
## 1201 1 1 1
## 1202 1 0 1
## 1203 1 1 1
## 1204 1 1 1
## 1205 1 1 1
## 1206 1 1 1
## 1207 1 1 1
## 1208 1 1 1
## 1209 0 0 1
## 1210 1 1 1
## 1211 1 1 1
## 1212 1 1 1
## 1213 1 1 1
## 1214 1 1 1
## 1215 1 1 1
## 1216 0 1 1
## 1217 1 1 1
## 1218 1 1 1
## 1219 0 1 1
## 1220 1 0 1
## 1221 0 0 1
## 1222 1 1 1
## 1223 1 1 1
## 1224 1 1 1
## 1225 1 0 1
## 1226 0 1 1
## 1227 1 1 1
## 1228 1 1 1
## 1229 1 0 1
## 1230 1 0 1
## 1231 1 0 1
## 1232 1 0 1
## 1233 1 1 1
## 1234 0 1 1
## 1235 1 1 1
## 1236 1 1 1
## 1237 1 1 1
## 1238 1 1 1
## 1239 0 0 1
## 1240 1 1 1
## 1241 1 0 1
## 1242 1 1 1
## 1243 1 1 1
## 1244 1 0 1
## 1245 1 0 1
## 1246 1 1 1
## 1247 1 0 1
## 1248 0 0 1
## 1249 1 1 1
## 1250 1 1 1
## 1251 1 1 1
## 1252 1 1 1
## 1253 1 1 1
## 1254 1 1 1
## 1255 1 1 1
## 1256 1 1 1
## 1257 1 1 1
## 1258 1 0 1
## 1259 1 1 1
## 1260 1 1 1
## 1261 1 1 1
## 1262 1 1 1
## 1263 1 1 1
## 1264 1 1 1
## 1265 1 1 1
## 1266 0 1 1
## 1267 1 0 1
## 1268 1 1 1
## 1269 1 0 1
## 1270 1 0 1
## 1271 1 1 1
## 1272 1 0 1
## 1273 1 0 1
## 1274 0 0 1
## 1275 1 0 1
## 1276 1 1 1
## 1277 0 1 1
## 1278 1 0 1
## 1279 1 1 1
## 1280 1 0 1
## 1281 1 1 1
## 1282 0 0 1
## 1283 0 1 1
## 1284 1 1 1
## 1285 0 0 1
## 1286 1 0 1
## 1287 1 0 1
## 1288 1 1 1
## 1289 1 1 1
## 1290 1 0 1
## 1291 1 0 1
## 1292 1 1 1
## 1293 0 0 1
## 1294 0 1 1
## 1295 0 0 1
## 1296 1 1 1
## 1297 1 0 1
## 1298 1 1 1
## 1299 1 1 1
## 1300 1 1 1
## 1301 1 1 1
## 1302 1 1 1
## 1303 1 1 1
## 1304 0 1 1
## 1305 1 1 1
## 1306 1 1 1
## 1307 1 0 1
## 1308 0 0 1
## 1309 1 0 1
## 1310 1 1 1
## 1311 1 1 1
## 1312 1 1 1
## 1313 1 1 1
## 1314 1 1 1
## 1315 1 1 1
## 1316 1 1 1
## 1317 1 1 1
## 1318 1 1 1
## 1319 1 1 1
## 1320 1 1 1
## 1321 0 1 1
## 1322 0 0 1
## 1323 1 1 1
## 1324 1 0 1
## 1325 0 1 1
## 1326 1 0 1
## 1327 1 0 1
## 1328 1 1 1
## 1329 1 1 1
## 1330 1 0 1
## 1331 0 1 1
## 1332 1 1 1
## 1333 1 1 1
## 1334 1 0 1
## 1335 1 1 1
## 1336 1 1 1
## 1337 1 1 1
## 1338 1 1 1
## 1339 1 1 1
## 1340 1 1 1
## 1341 1 1 1
## 1342 0 0 1
## 1343 0 1 1
## 1344 1 0 1
## 1345 0 0 1
## 1346 1 1 1
## 1347 1 0 1
## 1348 1 1 1
## 1349 0 1 1
## 1350 1 1 1
## 1351 1 1 1
## 1352 1 0 1
## 1353 1 0 1
## 1354 1 1 1
## 1355 0 0 1
## 1356 1 1 1
## 1357 1 0 1
## 1358 1 0 1
## 1359 1 0 1
## 1360 1 1 1
## 1361 1 1 1
## 1362 1 1 1
## 1363 1 0 1
## 1364 1 1 1
## 1365 1 0 1
## 1366 1 0 1
## 1367 0 1 1
## 1368 1 0 1
## 1369 0 1 1
## 1370 1 1 1
## 1371 1 0 1
## 1372 1 0 1
## 1373 1 0 1
## 1374 1 0 1
## 1375 1 1 1
## 1376 1 0 1
## 1377 1 0 1
## 1378 1 0 1
## 1379 1 0 1
## 1380 1 0 1
## 1381 1 0 1
## 1382 1 0 1
## 1383 1 0 1
## 1384 1 0 1
## 1385 1 0 1
## 1386 1 0 1
## 1387 1 0 1
## 1388 1 0 1
## 1389 1 0 1
## 1390 1 1 1
## 1391 1 0 1
## 1392 1 1 1
## 1393 1 1 1
## 1394 1 0 1
## 1395 1 0 1
## 1396 1 0 1
## 1397 1 0 1
## 1398 1 0 1
## 1399 1 1 1
## 1400 1 0 1
## 1401 1 0 1
## 1402 0 1 1
## 1403 1 0 1
## 1404 1 1 1
## 1405 1 1 1
## 1406 1 1 1
## 1407 0 0 1
## 1408 1 0 1
## 1409 1 1 1
## 1410 0 0 1
## 1411 1 0 1
## 1412 0 0 1
## 1413 1 0 1
## 1414 1 1 1
## 1415 0 0 1
## 1416 0 1 1
## 1417 1 0 1
## 1418 1 0 1
## 1419 0 0 1
## 1420 1 0 1
## 1421 1 0 1
## 1422 1 1 1
## 1423 1 1 1
## 1424 1 1 1
## 1425 1 1 1
## 1426 1 1 1
## 1427 1 0 1
## 1428 0 0 1
## 1429 1 1 1
## 1430 0 1 1
## 1431 0 0 1
## 1432 1 1 1
## 1433 0 0 1
## 1434 1 1 1
## 1435 1 0 1
## 1436 1 0 1
## 1437 0 1 1
## 1438 1 0 1
## 1439 0 0 1
## 1440 1 0 1
## 1441 1 1 1
## 1442 1 1 1
## 1443 0 0 1
## 1444 1 1 1
## 1445 1 1 1
## 1446 0 1 1
## 1447 1 0 1
## 1448 1 0 1
## 1449 1 0 1
## 1450 1 1 1
## 1451 1 1 1
## 1452 0 1 1
## 1453 0 1 1
## 1454 0 1 1
## 1455 0 0 1
## 1456 0 0 1
## 1457 0 0 1
## 1458 0 0 1
## 1459 1 0 1
## 1460 1 0 1
## 1461 1 0 1
## 1462 0 0 1
## 1463 1 0 1
## 1464 1 0 1
## 1465 1 1 1
## 1466 1 0 1
## 1467 0 0 1
## 1468 0 0 1
## 1469 1 1 1
## 1470 0 1 1
## 1471 1 1 0
## 1472 1 1 1
## 1473 1 1 1
## 1474 1 0 1
## 1475 1 0 1
## 1476 1 1 1
## 1477 0 0 1
## 1478 0 1 1
## 1479 1 0 1
## 1480 1 0 1
## 1481 1 0 1
## 1482 1 0 1
## 1483 1 0 1
## 1484 1 0 1
## 1485 1 1 1
## 1486 1 1 1
## 1487 1 1 1
## 1488 1 0 1
## 1489 1 0 1
## 1490 1 0 1
## 1491 1 0 1
## 1492 1 0 1
## 1493 1 0 1
## 1494 1 1 1
## 1495 1 0 1
## 1496 0 0 1
## 1497 0 0 1
## 1498 0 0 1
## 1499 0 1 1
## 1500 1 0 1
## 1501 1 0 1
## 1502 1 0 1
## 1503 1 0 1
## 1504 1 0 1
## 1505 1 0 1
## 1506 1 0 1
## 1507 1 0 1
## 1508 1 0 1
## 1509 1 0 1
## 1510 1 0 1
## 1511 1 0 1
## 1512 1 0 1
## 1513 1 0 1
## 1514 1 0 1
## 1515 1 0 1
## 1516 1 0 1
## 1517 1 0 1
## 1518 1 0 1
## 1519 1 0 1
## 1520 1 0 1
## 1521 1 0 1
## 1522 1 0 1
## 1523 1 0 1
## 1524 1 1 1
## 1525 1 1 1
## 1526 1 0 1
## 1527 1 1 1
## 1528 1 1 1
## 1529 1 1 1
## 1530 0 0 1
## 1531 0 1 0
## 1532 1 0 1
## 1533 1 0 1
## 1534 1 1 1
## 1535 1 1 1
## 1536 1 1 1
## 1537 1 0 1
## 1538 1 1 1
## host_verifications
## 1 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 2 'email','phone','reviews','work_email'
## 3 'email','phone','reviews'
## 4 'email','phone','reviews'
## 5 'email','phone','google','offline_government_id','selfie','government_id','identity_manual'
## 6 'email','phone','reviews'
## 7 'email','phone','reviews'
## 8 'email','phone','reviews','jumio','government_id'
## 9 'email','phone','google','offline_government_id','selfie','government_id','identity_manual'
## 10 'email','phone','reviews','jumio','offline_government_id','work_email'
## 11 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 12 'email','phone','work_email'
## 13 'email','phone','reviews','work_email'
## 14 'email','phone','reviews','jumio','government_id'
## 15 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 16 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual','work_email'
## 17 'email','phone','reviews','jumio','offline_government_id','work_email'
## 18 'email','phone','reviews','jumio','offline_government_id'
## 19 'email','phone'
## 20 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 21 'email','phone','reviews','jumio','offline_government_id','government_id'
## 22 'email','phone','reviews'
## 23 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 24 'email','phone','facebook','reviews'
## 25 'email','phone','reviews','jumio','offline_government_id','work_email'
## 26 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 27 'email','phone','work_email'
## 28 'email','phone','identity_manual'
## 29 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 30 'email','phone','work_email'
## 31 'email','phone','manual_online','manual_offline'
## 32 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 33 'email','phone','facebook','reviews','jumio','offline_government_id','government_id','work_email'
## 34 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 35 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 36 'email','phone','reviews','jumio','offline_government_id'
## 37 'email','phone','manual_online','manual_offline'
## 38 'email','phone','offline_government_id','government_id'
## 39 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 40 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 41 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 42 'email','phone','reviews','jumio','government_id'
## 43 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 44 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 45 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 46 'email','phone','reviews','jumio','government_id'
## 47 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 48 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 49 'email','phone'
## 50 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 51 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 52 'email','phone','google','reviews'
## 53 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 54 'email','phone','reviews','work_email'
## 55 'email','phone','offline_government_id'
## 56 'email','phone','reviews','jumio','offline_government_id','work_email'
## 57 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 58 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 59 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 60 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 61 'email','phone','reviews','manual_offline'
## 62 'email','phone','reviews','work_email'
## 63 'email','phone','reviews','jumio','offline_government_id','work_email'
## 64 'email','phone','reviews','jumio','offline_government_id'
## 65 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 66 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 67 'email','phone','offline_government_id','government_id'
## 68 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 69 'email','phone','reviews','work_email'
## 70 'email','phone','reviews','work_email'
## 71 'email','phone'
## 72 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 73 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 74 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 75 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 76 'email','phone','reviews','jumio','offline_government_id'
## 77 'email','phone','reviews','jumio','government_id'
## 78 'phone','facebook','reviews','offline_government_id','government_id'
## 79 'email','phone','reviews','jumio','offline_government_id','government_id'
## 80 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 81 'phone','reviews'
## 82 'email','phone','offline_government_id'
## 83 'email','phone','reviews','jumio'
## 84 'email','phone','jumio','offline_government_id','selfie','government_id','zhima_selfie'
## 85 'email','phone','reviews','jumio'
## 86 'email','phone','jumio','offline_government_id','government_id'
## 87 'email','phone','reviews'
## 88 'phone','reviews'
## 89 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 90 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 91 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 92 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 93 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 94 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 95 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 96 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 97 'email','phone','offline_government_id'
## 98 'email','phone','offline_government_id'
## 99 'email','phone','offline_government_id'
## 100 'email','phone','offline_government_id','government_id'
## 101 'email','phone','reviews','jumio','offline_government_id','work_email'
## 102 'email','phone','jumio','offline_government_id','government_id'
## 103 'email','phone','reviews','offline_government_id'
## 104 'email','phone','reviews','work_email'
## 105 'email','phone'
## 106 'email','phone'
## 107 'email','phone','reviews','offline_government_id'
## 108
## 109 'email','phone','reviews','offline_government_id'
## 110 'email','phone','reviews','manual_offline'
## 111 'email','phone','reviews','offline_government_id'
## 112 'email','phone','reviews','jumio','government_id'
## 113 'email','phone','reviews','jumio'
## 114 'email','phone','jumio','offline_government_id','government_id'
## 115 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 116 'email','phone','manual_online','manual_offline'
## 117 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 118 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 119 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 120 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 121 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 122 'email','phone','offline_government_id','government_id'
## 123 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 124 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 125 'email','phone'
## 126 'email','phone','reviews','jumio','offline_government_id'
## 127 'email','phone','offline_government_id','government_id'
## 128 'email','phone','work_email'
## 129 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 130 'email','phone','reviews','weibo','jumio','offline_government_id','selfie','government_id','identity_manual'
## 131 'email','phone','manual_online','manual_offline'
## 132 'email','phone','reviews','work_email'
## 133 'email','phone','reviews','jumio'
## 134 'email','phone','reviews','jumio'
## 135 'email','phone','offline_government_id'
## 136 'email','phone','offline_government_id','government_id'
## 137 'email','phone','offline_government_id','government_id'
## 138 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 139 'email','phone','work_email'
## 140 'email','phone','reviews','work_email'
## 141 'email','phone','facebook','offline_government_id','government_id'
## 142 'email','phone'
## 143 'email','phone','reviews','jumio'
## 144 'email','phone','reviews','offline_government_id'
## 145 'email','phone','reviews','weibo','jumio','offline_government_id','selfie','government_id','identity_manual'
## 146 'email','phone','offline_government_id','government_id'
## 147 'email','phone','offline_government_id'
## 148 'email','phone','offline_government_id','government_id'
## 149 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 150 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 151 'email','phone','manual_online','manual_offline'
## 152 'email','phone','offline_government_id','selfie','government_id','identity_manual'
## 153 'phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 154 'phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 155 'email','phone','offline_government_id','selfie','government_id','identity_manual'
## 156 'email','phone','reviews','work_email'
## 157 'email','phone','offline_government_id'
## 158 'email','phone','reviews','work_email'
## 159 'email','phone','work_email'
## 160 'email','phone','jumio','government_id'
## 161 'email','phone','jumio','government_id'
## 162 'email','phone','jumio','government_id'
## 163 'email','phone','jumio','offline_government_id','government_id'
## 164 'email','phone','reviews'
## 165 'email','phone','reviews'
## 166 'email','phone','offline_government_id','selfie','government_id','identity_manual'
## 167 'email','phone','reviews','offline_government_id'
## 168 'phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 169 'phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 170 'email','phone','reviews','offline_government_id'
## 171 'email','phone'
## 172 'email','phone','reviews','offline_government_id'
## 173 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 174 'email','phone','jumio','government_id'
## 175 'phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 176 'email','phone','offline_government_id','government_id'
## 177 'email','phone','reviews','jumio','offline_government_id','work_email'
## 178 'phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 179 'email','phone','facebook','jumio','offline_government_id','selfie','government_id','identity_manual'
## 180 'email','phone','facebook','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 181 'email','phone','facebook','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 182 'email','phone','reviews','work_email'
## 183 'phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 184 'email','phone','facebook','reviews','manual_offline','jumio','offline_government_id','government_id','work_email'
## 185 'phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 186 'email','phone','reviews','manual_offline'
## 187 'email','phone','reviews','manual_offline'
## 188 'email','phone','reviews','manual_offline'
## 189 'email','phone','reviews','manual_offline'
## 190 'email','phone','reviews','manual_offline'
## 191 'email','phone','reviews','manual_offline'
## 192 'phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 193 'email','phone','offline_government_id','government_id'
## 194 'email','phone','offline_government_id','government_id'
## 195 'email','phone','facebook','reviews','manual_offline','jumio','offline_government_id','government_id','work_email'
## 196 'email','phone','work_email'
## 197 'email','phone','reviews','offline_government_id'
## 198 'email','phone','reviews','offline_government_id'
## 199 'email','phone','facebook','offline_government_id','government_id'
## 200 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 201 'email','phone','reviews','offline_government_id'
## 202 'email','phone','reviews','jumio','offline_government_id','government_id'
## 203 'phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 204 'phone'
## 205 'email','phone'
## 206 'email','phone','reviews','work_email'
## 207 'email','phone','reviews','offline_government_id'
## 208 'email','phone','reviews','jumio','offline_government_id'
## 209 'email','phone'
## 210 'email','phone','offline_government_id'
## 211 'email','phone','offline_government_id'
## 212 'email','phone','offline_government_id'
## 213 'email','phone','reviews','jumio','government_id'
## 214 'email','phone','reviews'
## 215 'email','phone','reviews','jumio','government_id','work_email'
## 216 'email','phone'
## 217 'email','phone'
## 218 'email','phone'
## 219 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 220 'email','phone','offline_government_id','selfie','government_id','identity_manual'
## 221 'email','phone','jumio','offline_government_id','government_id'
## 222 'email','phone','jumio','offline_government_id','government_id'
## 223 'email','phone','jumio','offline_government_id','government_id'
## 224 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 225 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 226 'email','phone','facebook','reviews'
## 227 'phone'
## 228 'email','phone','work_email'
## 229 'email','phone','offline_government_id','selfie','government_id','identity_manual'
## 230 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 231 'email','phone','reviews','work_email'
## 232 'email','phone','jumio','offline_government_id'
## 233 'email','phone','reviews','offline_government_id'
## 234 'email','phone','reviews','offline_government_id'
## 235 'email','phone','reviews','offline_government_id'
## 236 'email','phone','reviews','offline_government_id'
## 237 'email','phone','reviews'
## 238 'email','phone','reviews'
## 239 'email','phone','reviews','offline_government_id'
## 240 'email','phone','reviews','jumio','offline_government_id','government_id'
## 241 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 242 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 243 'email','phone'
## 244 'email','phone'
## 245 'email','phone','reviews','jumio'
## 246 'email','phone'
## 247 'phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 248 'phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 249 'email','phone','reviews'
## 250 'email','phone','work_email'
## 251 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 252 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 253 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 254 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 255 'email','phone','identity_manual'
## 256 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 257 'email','phone','offline_government_id','selfie','government_id','identity_manual'
## 258 'email','phone','facebook','reviews','manual_offline','jumio','offline_government_id','government_id','work_email'
## 259 'email','phone','reviews','manual_offline','jumio','government_id','work_email'
## 260 'email','phone','offline_government_id'
## 261 'email','phone','offline_government_id','government_id'
## 262 'email','reviews'
## 263 'email','phone','offline_government_id','selfie','government_id','identity_manual'
## 264 'email','phone','offline_government_id','government_id'
## 265 'email','phone'
## 266 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 267 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 268 'email','phone'
## 269 'email','phone','google','reviews','jumio','selfie','government_id','identity_manual'
## 270 'email','phone','google','reviews','jumio','selfie','government_id','identity_manual'
## 271 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 272 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 273 'email','phone','reviews','jumio'
## 274 'email','phone','jumio','offline_government_id','selfie','government_id'
## 275 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 276 'phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 277 'email','phone'
## 278 'email','phone','identity_manual'
## 279 'email','phone','reviews','work_email'
## 280 'email','phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 281 'phone','facebook','reviews','offline_government_id','government_id'
## 282 'email','phone'
## 283 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 284 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 285 'email','phone','work_email'
## 286 'email','phone'
## 287 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual','work_email'
## 288 'email','phone','offline_government_id'
## 289 'email','phone','reviews'
## 290 'email','phone','reviews','work_email'
## 291 'email','phone','jumio','offline_government_id'
## 292 'email','phone','jumio','offline_government_id','government_id'
## 293 'phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 294 'phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 295 'email','phone','reviews','jumio','offline_government_id','government_id'
## 296 'email','phone','work_email'
## 297 'email','phone','offline_government_id','selfie','government_id','identity_manual'
## 298 'email','phone','reviews','jumio','government_id','work_email'
## 299 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 300 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 301 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 302 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 303 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 304 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 305 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 306 'email','phone','offline_government_id','selfie','government_id','identity_manual'
## 307 'phone'
## 308 'email','phone','reviews'
## 309 'email','phone','reviews','work_email'
## 310 'email','phone'
## 311 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 312 'email','phone'
## 313 'email','phone','reviews'
## 314 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 315 'email','phone','reviews'
## 316 'email','phone'
## 317 'email','phone','reviews','jumio','offline_government_id','government_id','work_email'
## 318 'email','phone','reviews','jumio','offline_government_id','government_id','work_email'
## 319 'email','phone','work_email'
## 320 'email','phone','reviews','offline_government_id','government_id'
## 321 None
## 322 None
## 323 'email','phone'
## 324 'email','phone','jumio','offline_government_id'
## 325 'email','phone'
## 326 'email','phone','reviews','offline_government_id'
## 327 'phone','offline_government_id','selfie','government_id','identity_manual'
## 328 'phone','offline_government_id','selfie','government_id','identity_manual'
## 329 'email','phone','google','reviews','jumio','selfie','government_id','identity_manual'
## 330 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 331 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual','work_email'
## 332 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 333 'email','phone','reviews'
## 334 'email','phone','reviews','jumio'
## 335 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual','work_email'
## 336 'email','phone','reviews','jumio','government_id'
## 337 'email','phone'
## 338 'email','phone'
## 339 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 340 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 341 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 342 'email','phone','work_email'
## 343 'email','phone','reviews','work_email'
## 344 'email','phone','reviews'
## 345 'email','phone','reviews','jumio','offline_government_id','government_id','work_email'
## 346 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 347 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 348 'email','phone','reviews'
## 349 'email','phone','reviews'
## 350 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual','work_email'
## 351 None
## 352 None
## 353 'phone','reviews','offline_government_id','government_id'
## 354 'email','phone','work_email'
## 355 'email','phone','work_email'
## 356 'email','phone','reviews','work_email'
## 357 'email','phone','offline_government_id','government_id'
## 358 'email','phone','facebook','reviews','jumio','government_id'
## 359 'email','phone','reviews','offline_government_id'
## 360 'email','phone','reviews','jumio','government_id','work_email'
## 361 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 362 'email','phone','reviews','weibo','jumio','government_id'
## 363 'phone','facebook'
## 364 'email','phone','reviews'
## 365 'email','phone','reviews','jumio','offline_government_id'
## 366 'email','phone','reviews','jumio'
## 367 'email','phone','offline_government_id','government_id'
## 368 'email','phone','reviews','jumio','government_id','work_email'
## 369 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 370 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 371 'email','phone','jumio','government_id'
## 372 'email','phone','facebook','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 373 'email','phone','offline_government_id','government_id'
## 374 'email','phone','reviews','work_email'
## 375 'email','phone','work_email'
## 376 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 377 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 378 'email','phone','facebook','reviews','manual_offline','jumio','offline_government_id','government_id'
## 379 'email','phone','reviews'
## 380 'email','phone','reviews','jumio'
## 381 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 382 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 383 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 384 'email','phone','offline_government_id','selfie','government_id','identity_manual'
## 385 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 386 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 387 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 388 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 389 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 390 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 391 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 392 'email','phone'
## 393 'email','phone','reviews','jumio'
## 394 'email','phone','reviews','jumio'
## 395 'email','phone','reviews','work_email'
## 396 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 397 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 398 'email','phone'
## 399 'email','phone','jumio','government_id'
## 400 'email','phone'
## 401 'email','phone','reviews'
## 402 'email','phone'
## 403 'email','phone'
## 404 'email','phone','jumio','offline_government_id','government_id'
## 405 'email','phone','reviews','jumio'
## 406 None
## 407 'email','phone','google','reviews','jumio','government_id'
## 408 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','work_email'
## 409 'email','phone','reviews'
## 410 'email','phone'
## 411 'email','phone','reviews','jumio'
## 412 'email','phone'
## 413 'email','phone','reviews','jumio'
## 414 'email','phone','reviews'
## 415 'email','phone','reviews','jumio'
## 416 'email','phone','reviews','jumio'
## 417 'email','phone','reviews'
## 418 'email','phone','work_email'
## 419 'email','phone','reviews'
## 420 'email','phone','reviews'
## 421 'email','phone','reviews'
## 422 'email','phone'
## 423 'email','phone','google','reviews','jumio','government_id'
## 424 'email','phone','reviews'
## 425 'email','phone','reviews'
## 426 'email','phone','reviews','jumio','offline_government_id','government_id'
## 427 'email','phone','reviews','work_email'
## 428 'email','phone','offline_government_id','selfie','government_id','identity_manual'
## 429 'email','phone','work_email'
## 430 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 431 'email','phone','reviews','jumio'
## 432 'email','phone','reviews'
## 433 'email','phone','reviews','jumio'
## 434 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 435 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','work_email'
## 436 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 437 'email','phone','reviews','jumio'
## 438 'email','phone','facebook','reviews','jumio'
## 439 'email','phone','reviews','jumio','government_id'
## 440 'email','phone','reviews','weibo','jumio','government_id'
## 441 'email','phone','reviews'
## 442 'email','phone','reviews','manual_offline','jumio','offline_government_id','government_id'
## 443 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','work_email'
## 444 'email','phone','reviews'
## 445 'email','phone','reviews'
## 446 'phone'
## 447 'email','phone'
## 448 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual','zhima_selfie'
## 449 'email','phone','offline_government_id','selfie','government_id','identity_manual'
## 450 'email','phone','reviews'
## 451 'email','phone','facebook','reviews','jumio','government_id'
## 452 'email','phone','reviews','offline_government_id','government_id','work_email'
## 453 'email','phone','google','reviews'
## 454 'email','phone','reviews','manual_offline','work_email'
## 455 'email','phone','reviews','jumio','selfie','government_id'
## 456 'email','phone','reviews','jumio'
## 457 'email','phone','reviews'
## 458 'email','phone','reviews','jumio'
## 459 'email','phone','reviews','jumio'
## 460 'email','phone','reviews'
## 461 'email','phone','work_email'
## 462 'email','phone'
## 463 'email','phone','reviews','jumio'
## 464 'email','phone','jumio','government_id'
## 465 'email','phone','reviews','jumio'
## 466 'email','phone','reviews','weibo','jumio','government_id'
## 467 'email','phone','reviews','work_email'
## 468 'email','phone','reviews','jumio','offline_government_id'
## 469 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 470 'phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 471 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 472 'email','phone','reviews','jumio'
## 473 'email','phone','jumio','government_id'
## 474 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 475 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual','work_email'
## 476 'email','phone','reviews','work_email'
## 477 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 478 'email','phone','reviews'
## 479 'email','phone','facebook','reviews','jumio','selfie','government_id'
## 480 'email','phone','work_email'
## 481 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 482 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 483 'email','phone','offline_government_id','selfie','government_id'
## 484 'email','phone','reviews','jumio'
## 485 'email','phone','facebook','reviews','jumio','offline_government_id','selfie','government_id','identity_manual','work_email'
## 486 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual','work_email'
## 487 'email','phone','facebook','reviews','jumio','selfie','government_id'
## 488 'email','phone','reviews','jumio','offline_government_id','government_id'
## 489 'email','phone','reviews','jumio'
## 490 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 491 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 492 'email','phone','reviews'
## 493 'email','phone','reviews'
## 494 'email','phone','reviews'
## 495 'email','phone','work_email'
## 496 'phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 497 'phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 498 'email','phone','reviews','jumio'
## 499 'email','phone','facebook','reviews','jumio','selfie','government_id'
## 500 'email','phone','reviews','jumio'
## 501 'email','phone','jumio','offline_government_id'
## 502 'email','phone','jumio','offline_government_id','government_id'
## 503 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','work_email'
## 504 'email','phone','reviews','work_email'
## 505 'email','phone','offline_government_id','government_id'
## 506 'email','phone','reviews','jumio'
## 507 'email','phone','jumio','offline_government_id'
## 508 'phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 509 'email','phone','reviews','jumio','offline_government_id','government_id'
## 510 'email','phone','offline_government_id','selfie','government_id','identity_manual'
## 511 'email','phone','google','reviews','jumio','government_id'
## 512 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 513 'phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 514 'email','phone','jumio','offline_government_id','government_id'
## 515 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 516 'email','phone','google','reviews'
## 517 'email','phone','reviews','jumio'
## 518 'phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 519 'email','phone','reviews','selfie','work_email'
## 520 'email','phone','reviews','jumio'
## 521 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','work_email'
## 522 'email','phone','reviews'
## 523 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 524 'phone','jumio','offline_government_id'
## 525 'email','phone','reviews'
## 526 'email','phone','reviews','weibo','jumio','government_id'
## 527 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 528 'email','phone','jumio','government_id'
## 529 'phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 530 'email','phone','reviews','weibo','jumio','government_id'
## 531 'email','phone','reviews','offline_government_id','selfie','government_id'
## 532 'email','phone','reviews','weibo','jumio','offline_government_id','selfie','government_id','identity_manual'
## 533 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 534 None
## 535 'email','phone','offline_government_id','selfie','government_id','identity_manual'
## 536 'email','phone','google','reviews','jumio','government_id'
## 537 'email','phone','reviews','jumio'
## 538 'email','phone','reviews','jumio'
## 539 'email','phone','jumio','offline_government_id','government_id'
## 540 'email','phone','reviews','jumio'
## 541 'email','phone','jumio','offline_government_id','government_id'
## 542 'email','phone','facebook','reviews','jumio','government_id'
## 543 'email','phone','reviews','work_email'
## 544 'email','phone','reviews','jumio'
## 545 'email','phone','google','reviews'
## 546 'email','phone','reviews','jumio'
## 547 'email','phone','reviews','weibo','jumio','government_id'
## 548 'email','phone','work_email'
## 549 'email','phone','work_email'
## 550 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 551 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 552 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 553 'email','phone','facebook','reviews','jumio','selfie','government_id'
## 554 'email','phone','reviews','work_email'
## 555 'email','phone','reviews','work_email'
## 556 'email','phone','reviews','work_email'
## 557 'email','phone','reviews','work_email'
## 558 'email','phone','reviews','work_email'
## 559 'email','phone','reviews','work_email'
## 560 'email','phone','reviews','work_email'
## 561 'email','phone','reviews','work_email'
## 562 'phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 563 'phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 564 'email','phone','reviews','work_email'
## 565 'email','phone'
## 566 'email','phone','reviews','work_email'
## 567 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 568 'email','phone'
## 569 'email','phone','reviews','work_email'
## 570 'email','phone','reviews','work_email'
## 571 'email','phone','reviews','work_email'
## 572 'email','phone','reviews','jumio','government_id'
## 573 'email','phone','jumio','government_id'
## 574 'phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 575 'phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 576 'phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 577 'phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 578 'email','phone','google','reviews'
## 579 'email','phone','reviews','jumio'
## 580 'email','phone','reviews','jumio'
## 581 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 582 'email','phone','offline_government_id','selfie','government_id','identity_manual'
## 583 'email','phone'
## 584 'email','phone','reviews','jumio','government_id'
## 585 'email','phone','reviews','jumio'
## 586 'email','phone','reviews','jumio'
## 587 'email','phone','reviews','jumio'
## 588 'email','phone','reviews','jumio'
## 589 'email','phone','reviews','jumio'
## 590 'email','phone','facebook','reviews','manual_offline','jumio','offline_government_id','government_id','work_email'
## 591 'email','phone','facebook','reviews','offline_government_id','selfie','government_id','identity_manual'
## 592 'email','phone','reviews','jumio','government_id'
## 593 'email','phone','facebook','reviews','offline_government_id','selfie','government_id','identity_manual'
## 594 'email','phone','reviews','weibo','jumio','government_id'
## 595 'email','phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 596 'phone','jumio','offline_government_id','government_id'
## 597 'email','phone','google'
## 598 'email','phone','reviews','jumio'
## 599 'email','phone','reviews'
## 600 None
## 601 'email','phone','reviews','jumio'
## 602 'email','phone','reviews'
## 603 'email','phone'
## 604 'email','phone','reviews'
## 605 'email','phone','work_email'
## 606 'email','phone','work_email'
## 607 'phone'
## 608 'email','phone','work_email'
## 609 'email','phone','work_email'
## 610 'phone','facebook'
## 611 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 612 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 613 'email','phone','reviews'
## 614 'email','phone','reviews','weibo','jumio','government_id'
## 615 'email','phone','work_email'
## 616 'email','phone','reviews','work_email'
## 617 'phone'
## 618 'email','phone','reviews','jumio','government_id','work_email'
## 619 'email','phone','reviews','jumio','government_id','work_email'
## 620 'email','phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 621 'email','phone','reviews','jumio','selfie','government_id','identity_manual','work_email'
## 622 'email','phone','reviews'
## 623 'email','phone','jumio','offline_government_id'
## 624 'email','phone','jumio','offline_government_id'
## 625 'email','phone','reviews','jumio'
## 626 'phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 627 'email','phone','reviews','jumio','government_id','work_email'
## 628 'email','phone','offline_government_id','selfie','government_id','identity_manual'
## 629 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 630 'email','phone','facebook','google','reviews','jumio','offline_government_id','selfie','government_id','identity_manual','work_email'
## 631 'phone','reviews','jumio','offline_government_id','government_id'
## 632 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 633 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 634 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 635 'email','phone','reviews','jumio','government_id','work_email'
## 636 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','work_email'
## 637 'email','phone','reviews','jumio'
## 638 'phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 639 'phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 640 'email','phone','identity_manual'
## 641 'email','phone','offline_government_id','selfie','government_id','identity_manual'
## 642 'email','phone','reviews'
## 643 'email','phone','reviews'
## 644 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual','work_email'
## 645 'email','phone','jumio','offline_government_id'
## 646 'email','phone','work_email'
## 647 'email','phone','offline_government_id','selfie','government_id','identity_manual'
## 648 'email','phone','reviews'
## 649 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 650 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 651 'email','phone','reviews','jumio'
## 652 'email','phone','reviews'
## 653 'phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 654 'email','phone','reviews','jumio','offline_government_id','government_id'
## 655 'email','phone','reviews','jumio','government_id'
## 656 'email','phone','reviews','jumio','offline_government_id','government_id'
## 657 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 658 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 659 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 660 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 661 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 662 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 663 'email','phone','reviews','jumio','government_id'
## 664 'email','phone','reviews','jumio','offline_government_id','government_id'
## 665 'email','phone'
## 666 'email','phone'
## 667 'email','phone'
## 668 'email','phone'
## 669 'email','phone'
## 670 'email','phone','reviews','jumio'
## 671 'email','phone','reviews','jumio'
## 672 'email','phone','reviews','jumio'
## 673 'email','phone','reviews','jumio'
## 674 'email','phone','reviews','jumio','offline_government_id','government_id'
## 675 'phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 676 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 677 'email','phone','jumio','offline_government_id','government_id'
## 678 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 679 'email','phone','jumio','government_id'
## 680 'email','phone','facebook','reviews','jumio','offline_government_id','government_id'
## 681 'email','phone','reviews'
## 682 'email','phone','facebook','reviews','jumio','selfie','government_id'
## 683 'phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 684 'email','phone'
## 685 'email','phone','reviews','jumio'
## 686 'email','phone','facebook','reviews','jumio','selfie','government_id'
## 687 'email','phone'
## 688 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 689 'email','phone','reviews','jumio','offline_government_id','government_id'
## 690 'email','phone','google','reviews'
## 691 'email','phone','reviews','jumio'
## 692 'email','phone'
## 693 'email','phone','reviews','jumio'
## 694 'email','phone','reviews','jumio'
## 695 'email','phone','reviews'
## 696 'email','phone','reviews','jumio'
## 697 'email','phone','reviews','weibo','jumio','government_id'
## 698 'email','phone','reviews','jumio'
## 699 'email','phone','reviews','jumio','government_id'
## 700 'email','phone','reviews','jumio'
## 701 'email','phone','reviews','jumio'
## 702 'email','phone','reviews','jumio'
## 703 'email','phone','reviews','jumio','offline_government_id','government_id'
## 704 'email','phone','reviews','jumio'
## 705 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 706 'email','phone','reviews','jumio'
## 707 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 708 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 709 'email','phone','facebook','jumio','offline_government_id','government_id'
## 710 'email','phone','reviews'
## 711 'email','phone','reviews'
## 712 'email','phone','reviews','weibo','jumio','government_id'
## 713 'email','phone','reviews','weibo','jumio','government_id'
## 714 'email','phone','reviews','weibo','jumio','government_id'
## 715 'email','phone','reviews','work_email'
## 716 'email','phone','jumio','offline_government_id','government_id'
## 717 'email','phone','reviews','jumio','government_id'
## 718 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 719 'email','phone'
## 720 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 721 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 722 'email','phone','facebook','reviews','offline_government_id','selfie','government_id','identity_manual'
## 723 'email','phone','offline_government_id','selfie','government_id','identity_manual'
## 724 'email','phone','reviews','jumio'
## 725 'phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 726 'phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 727 'email','phone','reviews','jumio'
## 728 'email','phone','reviews','jumio','offline_government_id'
## 729 'email','phone','reviews','jumio'
## 730 'email','phone','reviews','jumio'
## 731 'email','phone','google','jumio','offline_government_id','selfie','government_id','identity_manual','work_email'
## 732 'email','phone','reviews','jumio'
## 733 'email','phone','reviews','jumio','offline_government_id','government_id'
## 734 'email','phone','reviews','jumio','offline_government_id','government_id'
## 735 'email','phone','reviews','jumio','offline_government_id','government_id'
## 736 'email','phone','google','reviews','jumio','government_id'
## 737 'email','phone','reviews','jumio'
## 738 'email','phone'
## 739 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 740 'email','phone','reviews','jumio','offline_government_id','government_id'
## 741 'email','phone','reviews','jumio'
## 742 'email','phone','offline_government_id'
## 743 'email','phone','reviews','work_email'
## 744 'email','phone','reviews','work_email'
## 745 'email','phone','reviews','work_email'
## 746 'email','phone'
## 747 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 748 'phone'
## 749 'email','phone','reviews','jumio'
## 750 'email','phone','reviews','work_email'
## 751 'email','phone','reviews','work_email'
## 752 'email','phone','facebook','reviews','jumio','government_id'
## 753 'email','phone','facebook','reviews','jumio','selfie','government_id'
## 754 'phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 755 'phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 756 'email','phone'
## 757 'email','phone','jumio','offline_government_id','government_id'
## 758 'email','phone'
## 759 'phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 760 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual','work_email'
## 761 'email','phone','reviews'
## 762 'email','phone','reviews'
## 763 'email','phone','identity_manual'
## 764 'email','phone','reviews','jumio'
## 765 'email','phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 766 'email','phone','reviews','jumio'
## 767 'email','phone','reviews','jumio'
## 768 'email','phone','reviews','jumio'
## 769 'email','phone','reviews','jumio'
## 770 'email','phone','reviews','jumio'
## 771 'email','phone','reviews','weibo','jumio','government_id'
## 772 'email','phone','reviews','weibo','jumio','government_id'
## 773 'email','phone','reviews','jumio','offline_government_id','government_id'
## 774 'email','phone','reviews','jumio','offline_government_id','government_id'
## 775 'email','phone','reviews'
## 776 'email','phone','reviews','weibo','jumio','government_id'
## 777 'email','phone','reviews'
## 778 'email','phone','reviews','jumio'
## 779 'email','phone','reviews','weibo','jumio','government_id'
## 780 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 781 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 782 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 783 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 784 'email','phone','reviews','jumio'
## 785 'email','phone','facebook','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 786 'email','phone','facebook','reviews','jumio','selfie','government_id'
## 787 'email','phone','reviews','jumio'
## 788 'email','phone','reviews','jumio','offline_government_id','government_id'
## 789 'email','phone'
## 790 'email','phone'
## 791 'email','phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 792 'email','phone','reviews','work_email'
## 793 'email','phone','reviews','jumio','government_id'
## 794 'email','phone'
## 795 'email','phone','reviews'
## 796 'email','phone','reviews'
## 797 'email','phone','reviews','jumio'
## 798 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 799 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 800 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 801 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 802 'email','phone','jumio','government_id'
## 803 'email','phone','reviews','jumio','offline_government_id','government_id'
## 804 'email','phone','reviews','jumio','offline_government_id','government_id'
## 805 'phone','facebook','reviews','offline_government_id','government_id'
## 806 'email','phone','reviews'
## 807 'email','phone','reviews'
## 808 'email','phone','reviews','jumio','offline_government_id','government_id'
## 809 'phone','reviews'
## 810 'email','phone','reviews','jumio','offline_government_id','government_id'
## 811 'email','phone','reviews','jumio','offline_government_id','government_id'
## 812 'email','phone','reviews','jumio','offline_government_id','government_id'
## 813 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 814 'email','phone','work_email'
## 815 'email','phone','reviews','jumio'
## 816 'phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 817 'email','phone','reviews'
## 818 'email','phone','reviews','jumio'
## 819 'email','phone','reviews','jumio'
## 820 'phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 821 'phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 822 'email','phone'
## 823 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 824 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 825 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 826 'email','phone','reviews','jumio'
## 827 'email','phone','google','reviews','jumio','government_id'
## 828 'email','phone','reviews','jumio'
## 829 'email','phone','reviews','jumio'
## 830 'email','phone','reviews','jumio'
## 831 'email','phone','reviews','jumio'
## 832 'email','phone','reviews','jumio'
## 833 'email','phone','reviews','jumio'
## 834 'email','phone','reviews','jumio'
## 835 'email','phone','reviews','offline_government_id','selfie','government_id'
## 836 'email','phone','identity_manual'
## 837 'email','phone','reviews'
## 838 'email','phone','reviews','jumio'
## 839 'email','phone'
## 840 'email','phone','reviews','jumio'
## 841 'email','phone','work_email'
## 842 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 843 'email','phone','google','reviews','jumio','government_id'
## 844 'phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 845 'phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 846 'phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 847 'email','phone','reviews'
## 848 'email','phone','reviews'
## 849 'email','phone','reviews'
## 850 'email','phone','reviews'
## 851 'email','phone','facebook','reviews','jumio','offline_government_id','government_id'
## 852 'email','phone','reviews','jumio'
## 853 'email','phone','reviews','jumio'
## 854 'email','phone','reviews','jumio'
## 855 'email','phone','reviews','jumio'
## 856 'email','phone','reviews','jumio','government_id'
## 857 'email','phone','facebook','offline_government_id','government_id'
## 858 'email','phone','reviews','jumio'
## 859 'email','phone'
## 860 'email','phone'
## 861 'email','phone','reviews','jumio','offline_government_id','government_id'
## 862 'email','phone','reviews','jumio'
## 863 'email','phone','reviews','jumio'
## 864 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 865 'phone','facebook'
## 866 'phone'
## 867 'email','phone','reviews'
## 868 'email','phone','google','jumio','offline_government_id','selfie','government_id','identity_manual','work_email'
## 869 'email','phone','reviews','jumio'
## 870 'email','phone','reviews','jumio','government_id','work_email'
## 871 'email','phone','reviews','jumio','government_id','work_email'
## 872 'email','phone','reviews','jumio','offline_government_id'
## 873 'email','phone','reviews'
## 874 'email','phone','reviews'
## 875 'email','phone','reviews'
## 876 'email','phone','reviews','jumio','government_id','work_email'
## 877 'email','phone','reviews','jumio','government_id'
## 878 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual','work_email'
## 879 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 880 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 881 'email','phone','reviews','jumio'
## 882 'phone','reviews','jumio','offline_government_id','government_id'
## 883 'email','phone','facebook','reviews','jumio','work_email'
## 884 'phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 885 'email','phone','reviews','jumio','offline_government_id'
## 886 'email','phone','reviews','jumio'
## 887 'email','phone','reviews','jumio','offline_government_id'
## 888 'email','phone','reviews'
## 889 'email','phone','reviews','jumio'
## 890 'email','phone','offline_government_id','government_id','work_email'
## 891 'email','phone','reviews','jumio'
## 892 'email','phone','reviews','jumio'
## 893 'email','phone','google','offline_government_id','selfie','government_id','identity_manual'
## 894 'email','phone','google','reviews','jumio','government_id'
## 895 'email','phone','reviews','jumio'
## 896 'email','phone','jumio','offline_government_id','government_id'
## 897 'email','phone','work_email'
## 898 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 899 'email','phone','reviews','jumio','offline_government_id'
## 900 'email','phone','reviews','jumio','offline_government_id'
## 901 'email','phone','reviews','jumio','offline_government_id'
## 902 'email','phone','work_email'
## 903 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 904 'email','phone','reviews','jumio'
## 905 'email','phone'
## 906 'email','phone'
## 907 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 908 'email','phone'
## 909 'email','phone','reviews','jumio','government_id','work_email'
## 910 'email','phone','reviews'
## 911 'email','phone','reviews','jumio'
## 912 'email','phone','facebook','reviews','offline_government_id','government_id'
## 913 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 914 'phone','facebook','offline_government_id','government_id'
## 915 'email','phone','reviews','jumio'
## 916 'email','phone','jumio','offline_government_id','government_id'
## 917 'email','phone','reviews','jumio'
## 918 'email','phone','jumio','offline_government_id','selfie','government_id','zhima_selfie'
## 919 'email','phone','reviews'
## 920 'email','phone','reviews'
## 921 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 922 'email','phone','reviews','jumio'
## 923 'email','phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 924 'email','phone','jumio','government_id'
## 925 'email','phone','google','reviews','jumio','offline_government_id','government_id','work_email'
## 926 'email','phone','google','reviews','jumio','government_id'
## 927 'email','phone','reviews','jumio'
## 928 'email','phone','reviews','jumio','government_id'
## 929 'phone'
## 930 'email','phone','reviews'
## 931 'email','phone','reviews','work_email'
## 932 'email','phone','reviews','jumio','government_id'
## 933 'email','phone','reviews','jumio','government_id'
## 934 'email','phone','reviews','jumio'
## 935 'email','phone'
## 936 'email','phone'
## 937 'phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 938 'email','phone','reviews'
## 939 'email','phone','reviews','jumio','government_id','work_email'
## 940 'email','phone','reviews','jumio'
## 941 'email','phone','work_email'
## 942 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 943 'email','phone','reviews'
## 944 'email','phone','reviews','jumio','offline_government_id','government_id'
## 945 'email','phone','offline_government_id','selfie','government_id','identity_manual'
## 946 'email','phone','reviews'
## 947 'email','phone','jumio','government_id'
## 948 'email','phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 949 'email','phone'
## 950 'email','phone','jumio','offline_government_id','government_id'
## 951 'email','phone','reviews','jumio','government_id'
## 952 'email','phone','reviews','jumio','government_id'
## 953 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 954 'email','phone','reviews'
## 955 'email','phone','work_email'
## 956 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 957 'email','phone','facebook','reviews','offline_government_id','selfie','government_id','identity_manual'
## 958 'email','phone','reviews','weibo','jumio','government_id'
## 959 'email','phone','reviews','weibo','jumio','government_id'
## 960 'email','phone','reviews','weibo','jumio','government_id'
## 961 'email','phone','reviews','weibo','jumio','government_id'
## 962 'email','phone','reviews','weibo','jumio','government_id'
## 963 'email','phone','reviews'
## 964 'email','phone','reviews'
## 965 'email','phone','reviews','jumio'
## 966 'email','phone','reviews','jumio','offline_government_id','government_id','work_email'
## 967 'phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 968 'email','phone','reviews','jumio'
## 969 'email','phone','reviews'
## 970 'email','phone','reviews'
## 971 'email','phone','offline_government_id','government_id'
## 972 'email','phone'
## 973 'email','phone'
## 974 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 975 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual','work_email'
## 976 'email','phone','reviews','jumio','offline_government_id','government_id'
## 977 'email','phone','reviews','jumio'
## 978 'email','phone','jumio','government_id'
## 979 'email','phone','reviews','jumio','offline_government_id','selfie','government_id'
## 980 'email','phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 981 'email','phone','reviews','jumio','offline_government_id','selfie','government_id'
## 982 'email','phone','reviews','jumio','government_id'
## 983 'email','phone','offline_government_id','selfie','government_id','identity_manual'
## 984 'email','phone','reviews','jumio','government_id'
## 985 'email','phone','reviews','jumio'
## 986 'email','phone','reviews','jumio','offline_government_id','selfie','government_id'
## 987 'email','phone','reviews','jumio'
## 988 'email','phone','reviews','jumio','offline_government_id','selfie','government_id'
## 989 'email','phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 990 'email','phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 991 'phone'
## 992 'email','phone','reviews','jumio','offline_government_id','selfie','government_id'
## 993 'phone','offline_government_id','selfie','government_id','identity_manual'
## 994 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 995 'email','phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 996 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 997 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 998 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 999 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 1000 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 1001 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 1002 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 1003 'email','phone','reviews','jumio'
## 1004 'email','phone','reviews','jumio'
## 1005 'email','phone','reviews','jumio'
## 1006 'email','phone','google','reviews','jumio','government_id'
## 1007 'email','phone','reviews','jumio'
## 1008 'email','phone','reviews','jumio','offline_government_id','selfie','government_id'
## 1009 'email','phone'
## 1010 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1011 'email','phone','offline_government_id','selfie','government_id'
## 1012 'email','phone','reviews','jumio','offline_government_id'
## 1013 'email','phone'
## 1014 'email','phone','reviews','jumio'
## 1015 'email','phone','jumio','government_id'
## 1016 'email','phone','jumio','offline_government_id','selfie','government_id','zhima_selfie'
## 1017 'email','phone','reviews','jumio'
## 1018 'email','phone','facebook'
## 1019 'email','phone'
## 1020 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1021 'email','phone','reviews','jumio'
## 1022 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1023 'email','phone','reviews','jumio'
## 1024 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1025 'email','phone','facebook','reviews','offline_government_id','selfie','government_id','identity_manual'
## 1026 'email','phone','facebook','reviews','offline_government_id','selfie','government_id','identity_manual'
## 1027 'email','phone','reviews','jumio'
## 1028 'email','phone','reviews','weibo','jumio','government_id'
## 1029 'email','phone','reviews','jumio'
## 1030 'email','phone','manual_online','reviews','manual_offline'
## 1031 'email','phone','offline_government_id','government_id','work_email'
## 1032 'email','phone','manual_online','reviews','manual_offline'
## 1033 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual','zhima_selfie'
## 1034 'phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1035 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual','work_email'
## 1036 'email','phone','reviews','jumio'
## 1037 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual','zhima_selfie'
## 1038 'email','phone','reviews','jumio','offline_government_id','government_id'
## 1039 'email','phone','offline_government_id','selfie','government_id','identity_manual'
## 1040 'email','phone','reviews'
## 1041 'email','phone','reviews','jumio'
## 1042 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1043 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1044 'phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1045 'email','phone','reviews','offline_government_id','government_id','work_email'
## 1046 'email','phone'
## 1047 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1048 'email','phone','google','offline_government_id','selfie','government_id','identity_manual'
## 1049 'email','phone','offline_government_id','selfie','government_id'
## 1050 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 1051 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 1052 'email','phone','jumio','offline_government_id','government_id'
## 1053 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1054 'email','phone','reviews','jumio'
## 1055 'email','phone','reviews','jumio','government_id'
## 1056 'email','phone','reviews'
## 1057 'email','phone','reviews','jumio','offline_government_id','government_id'
## 1058 'email','phone','reviews','jumio','offline_government_id','selfie','government_id'
## 1059 'email','phone','reviews','jumio','government_id'
## 1060 'phone','reviews'
## 1061 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual','work_email'
## 1062 'email','phone','reviews','offline_government_id'
## 1063 'phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1064 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1065 'email','phone','reviews','jumio','offline_government_id','government_id'
## 1066 'email','phone','reviews','jumio'
## 1067 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','work_email'
## 1068 'email','phone','reviews'
## 1069 'email','phone','reviews','jumio'
## 1070 'phone','reviews','jumio','government_id','work_email'
## 1071 'email','phone','reviews','jumio'
## 1072 'email','phone','reviews','offline_government_id'
## 1073 'email','phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 1074 'email','phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 1075 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual','work_email'
## 1076 'email','phone','offline_government_id','government_id','work_email'
## 1077 'email','phone','offline_government_id','government_id','work_email'
## 1078 'email','phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 1079 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1080 'email','phone','reviews','jumio','offline_government_id','government_id'
## 1081 'phone','jumio','offline_government_id','government_id'
## 1082 'email','phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 1083 'email','phone','reviews','jumio'
## 1084 'email','phone','reviews','jumio'
## 1085 'email','phone','reviews','jumio'
## 1086 'email','phone','jumio','government_id'
## 1087 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1088 'email','phone','reviews','jumio','offline_government_id','selfie','government_id'
## 1089 'email','phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 1090 'email','phone','reviews','jumio','offline_government_id','government_id'
## 1091 'email','phone','reviews','jumio'
## 1092 'email','phone'
## 1093 'email','phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 1094 'email','phone','offline_government_id','government_id','work_email'
## 1095 'phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 1096 'email','phone','reviews','work_email'
## 1097 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1098 'phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 1099 'email','phone','offline_government_id','government_id','work_email'
## 1100 'email','phone','reviews','jumio'
## 1101 'email','phone','reviews','jumio','government_id'
## 1102 'email','phone','offline_government_id','selfie','government_id'
## 1103 'email','phone','offline_government_id','government_id'
## 1104 'email','phone','reviews','weibo','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1105 'email','phone','offline_government_id','government_id','work_email'
## 1106 'email','phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 1107 'email','phone','offline_government_id','government_id','work_email'
## 1108 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1109 'email','phone'
## 1110 'email','phone','offline_government_id','government_id','work_email'
## 1111 'email','phone','offline_government_id','government_id','work_email'
## 1112 'email','phone','reviews','jumio'
## 1113 'email','phone','reviews','jumio'
## 1114 'email','phone','reviews','jumio'
## 1115 'email','phone','reviews','jumio'
## 1116 'email','phone','reviews','jumio'
## 1117 'email','phone','reviews','jumio'
## 1118 'email','phone','reviews','manual_offline','work_email'
## 1119 'email','phone','reviews','manual_offline','work_email'
## 1120 'email','phone','offline_government_id','government_id','work_email'
## 1121 'email','phone','reviews','jumio'
## 1122 'email','phone','google','reviews','jumio','offline_government_id','government_id'
## 1123 'email','phone','reviews','jumio','offline_government_id','government_id'
## 1124 'email','phone','reviews','jumio'
## 1125 'email','phone'
## 1126 'email','phone','reviews'
## 1127 'email','phone','manual_online','reviews','manual_offline','offline_government_id','selfie','government_id','identity_manual'
## 1128 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1129 'email','phone','offline_government_id','government_id','work_email'
## 1130 'email','phone','facebook','reviews','jumio','government_id'
## 1131 'email','phone','reviews','jumio'
## 1132 'email','phone','reviews','jumio'
## 1133 'email','phone','reviews','jumio'
## 1134 'email','phone','reviews','jumio'
## 1135 'email','phone','reviews','jumio'
## 1136 'email','phone','reviews','jumio'
## 1137 'email','phone','reviews','manual_offline','jumio'
## 1138 'email','phone','reviews','jumio'
## 1139 'email','phone','reviews'
## 1140 'email','phone','reviews','jumio'
## 1141 'email','phone','google','reviews','jumio','government_id','work_email'
## 1142 'email','phone','reviews','jumio'
## 1143 'email','phone','reviews','jumio','offline_government_id','government_id'
## 1144 'phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1145 'email','phone'
## 1146 'email','phone'
## 1147 'email','phone'
## 1148 'email','phone','reviews','jumio','offline_government_id','government_id'
## 1149 'email','phone'
## 1150 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1151 'email','phone','reviews','jumio','government_id'
## 1152 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1153 'email','phone','reviews','jumio','selfie','government_id','identity_manual','work_email'
## 1154 'email','phone','reviews','jumio','government_id'
## 1155 'email','phone','reviews'
## 1156 'email','phone','reviews'
## 1157 'email','phone'
## 1158 'email','phone','reviews','jumio','government_id'
## 1159 'email','phone','jumio','offline_government_id','government_id'
## 1160 'email','phone','reviews','jumio','offline_government_id'
## 1161 'email','phone','reviews','jumio','government_id'
## 1162 'email','phone','reviews','jumio'
## 1163 'email','phone','facebook','reviews','offline_government_id','selfie','government_id'
## 1164 'email','phone','offline_government_id','government_id','work_email'
## 1165 'phone','reviews','jumio','offline_government_id','government_id'
## 1166 'email','phone'
## 1167 'email','phone','reviews','jumio','offline_government_id','government_id'
## 1168 'email','phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 1169 'email','phone'
## 1170 'email','phone','reviews','jumio'
## 1171 'email','phone','reviews','jumio','government_id'
## 1172 'email','phone','reviews','jumio','government_id'
## 1173 'email','phone','reviews','jumio','government_id','work_email'
## 1174 'email','phone','offline_government_id','government_id','work_email'
## 1175 'email','phone','reviews','jumio'
## 1176 'email','phone','offline_government_id','government_id','work_email'
## 1177 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1178 'email','phone','reviews','jumio','government_id'
## 1179 'email','phone','reviews','jumio'
## 1180 'phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1181 'email','phone','reviews','jumio','government_id'
## 1182 'phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1183 'email','phone','google','offline_government_id','selfie','government_id','identity_manual'
## 1184 'email','phone','offline_government_id','selfie','government_id','identity_manual'
## 1185 'email','phone','google','jumio','offline_government_id','selfie','government_id','identity_manual','work_email'
## 1186 'phone'
## 1187 'email','phone','reviews','jumio'
## 1188 'email','phone','reviews','jumio'
## 1189 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1190 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1191 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1192 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1193 'email','phone','reviews','jumio'
## 1194 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1195 'phone','reviews','jumio','offline_government_id','government_id'
## 1196 'email','phone','reviews','jumio'
## 1197 'email','phone','reviews','jumio'
## 1198 'email','phone','reviews','jumio'
## 1199 'email','phone','reviews','jumio'
## 1200 'email','phone','reviews','jumio'
## 1201 'email','phone','reviews','jumio'
## 1202 'email','phone','facebook','reviews','offline_government_id','selfie','government_id'
## 1203 'email','phone','reviews','jumio'
## 1204 'email','phone','reviews','jumio'
## 1205 'email','phone','facebook','reviews','offline_government_id','selfie','government_id'
## 1206 'email','phone','reviews','jumio'
## 1207 'email','phone','reviews','jumio'
## 1208 'email','phone','reviews','jumio'
## 1209 'phone'
## 1210 'email','phone','reviews','jumio'
## 1211 'email','phone','reviews','offline_government_id','selfie','government_id'
## 1212 'email','phone','reviews','jumio','offline_government_id','government_id'
## 1213 'email','phone','facebook','reviews','jumio','government_id'
## 1214 'email','phone','facebook','reviews','jumio','government_id'
## 1215 'email','phone','reviews','jumio'
## 1216 'email','phone','offline_government_id','government_id','work_email'
## 1217 'email','phone','reviews','jumio'
## 1218 'email','phone','reviews','jumio','offline_government_id','government_id'
## 1219 'email','phone','google','reviews'
## 1220 'email','phone','reviews','jumio','offline_government_id','government_id'
## 1221 'phone'
## 1222 'email','phone','facebook','reviews','jumio','offline_government_id','government_id'
## 1223 'phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1224 'email','phone','reviews'
## 1225 'email','phone','reviews','jumio','offline_government_id','government_id'
## 1226
## 1227 'email','phone','reviews','jumio'
## 1228 'email','phone','facebook','reviews','offline_government_id','selfie','government_id'
## 1229 'email','phone','reviews','jumio','government_id'
## 1230 'email','phone','reviews','jumio','government_id'
## 1231 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1232 'phone','reviews','jumio','offline_government_id','government_id'
## 1233 'email','phone','facebook','reviews','offline_government_id','selfie','government_id'
## 1234 'email','phone','reviews'
## 1235 'email','phone','reviews','offline_government_id'
## 1236 'email','phone','reviews','jumio','government_id'
## 1237 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1238 'email','phone','offline_government_id','selfie','government_id','identity_manual'
## 1239 'email','phone','reviews','jumio','government_id'
## 1240 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1241 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1242 'email','phone','reviews','jumio','government_id'
## 1243 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1244 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1245 'email','phone','reviews','jumio','government_id'
## 1246 'email','phone','reviews','jumio','government_id'
## 1247 'phone'
## 1248 'email','phone','google','reviews','jumio','offline_government_id','government_id'
## 1249 'email','phone','reviews','jumio','government_id'
## 1250 'email','phone','reviews','jumio','government_id'
## 1251 'email','phone','reviews','jumio','government_id'
## 1252 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1253 'email','phone','reviews','jumio','government_id'
## 1254 'email','phone','reviews','jumio'
## 1255 'email','phone','reviews','jumio'
## 1256 'email','phone','reviews','jumio'
## 1257 'email','phone','reviews','weibo','jumio','government_id'
## 1258 'email','phone','reviews','jumio','offline_government_id','government_id'
## 1259 'email','phone','reviews','jumio'
## 1260 'email','phone','reviews','jumio'
## 1261 'email','phone','reviews','jumio'
## 1262 'email','phone','reviews','jumio'
## 1263 'email','phone','reviews','jumio'
## 1264 'email','phone','google','jumio','offline_government_id','selfie','government_id','identity_manual','work_email'
## 1265 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual','work_email'
## 1266 'email','phone','offline_government_id','government_id','work_email'
## 1267 'email','phone'
## 1268 'email','phone','facebook','reviews','offline_government_id','selfie','government_id'
## 1269 'email','phone','google','reviews','jumio','offline_government_id','government_id'
## 1270 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual','work_email'
## 1271 'email','phone','reviews'
## 1272 'email','phone','reviews'
## 1273 'email','phone','jumio','offline_government_id','government_id'
## 1274 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual','work_email'
## 1275 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1276 'email','phone','reviews','jumio'
## 1277 'email','phone','reviews'
## 1278 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1279 'email','phone','reviews','jumio','government_id'
## 1280 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual','work_email'
## 1281 'email','phone','reviews','jumio','government_id','work_email'
## 1282 'email','phone','reviews'
## 1283 'email','phone','reviews'
## 1284 'email','phone','reviews','jumio'
## 1285 'phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1286 'email','phone','facebook','reviews','jumio','offline_government_id','selfie','government_id','identity_manual','work_email'
## 1287 'email','phone','offline_government_id','selfie','government_id','identity_manual'
## 1288 'email','phone'
## 1289 'email','phone','facebook','reviews','jumio','offline_government_id','selfie','government_id','identity_manual','work_email'
## 1290 'email','phone','zhima_selfie'
## 1291 'email','phone','reviews','jumio','government_id'
## 1292 'email','phone','facebook','jumio','offline_government_id','government_id'
## 1293 'phone'
## 1294 'email','phone','jumio','offline_government_id','government_id'
## 1295 'email','phone','reviews'
## 1296 'email','phone'
## 1297 'email','phone'
## 1298 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1299 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1300 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1301 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1302 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1303 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1304 'email','phone','offline_government_id','government_id','work_email'
## 1305 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1306 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1307 'email','phone','google','reviews','jumio','government_id','work_email'
## 1308 'email','phone','google','reviews','jumio','offline_government_id','government_id'
## 1309 'email','phone','google','reviews','jumio','offline_government_id','government_id'
## 1310 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1311 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1312 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1313 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1314 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1315 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1316 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1317 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1318 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1319 'phone','reviews'
## 1320 'phone','reviews'
## 1321 'email','phone','offline_government_id','government_id','work_email'
## 1322 'email','phone','reviews','work_email'
## 1323 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1324 'phone','reviews','jumio','offline_government_id','government_id'
## 1325 'email','phone','jumio','offline_government_id','selfie','government_id','zhima_selfie'
## 1326 'email','phone','facebook','reviews','jumio','offline_government_id','government_id'
## 1327 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1328 'email','phone','facebook','reviews','jumio','offline_government_id','selfie','government_id','identity_manual','work_email'
## 1329 'email','phone','reviews','offline_government_id','selfie','government_id'
## 1330 'phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1331 'email','phone','reviews','manual_offline','jumio','government_id'
## 1332 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1333 'email','phone','reviews','offline_government_id','selfie','government_id'
## 1334 'email','phone','reviews','jumio','government_id'
## 1335 'email','phone','reviews','manual_offline','jumio','government_id'
## 1336 'email','phone'
## 1337 'email','phone'
## 1338 'email','phone'
## 1339 'email','phone','facebook','reviews','jumio','government_id'
## 1340 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1341 'email','phone','google','reviews'
## 1342 'email','phone','google','reviews','jumio','offline_government_id','government_id'
## 1343 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1344 'email','phone','facebook','reviews','offline_government_id','government_id'
## 1345 'email','phone'
## 1346 'email','phone','reviews','offline_government_id','selfie','government_id'
## 1347 'email','phone','reviews'
## 1348 'email','phone','reviews','offline_government_id','selfie','government_id'
## 1349 'email','phone','reviews','jumio','government_id'
## 1350 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1351 'email','phone'
## 1352 'email','phone'
## 1353 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1354 'email','phone','facebook','reviews','jumio','offline_government_id','selfie','government_id','identity_manual','work_email'
## 1355 'phone','offline_government_id','government_id'
## 1356 'email','phone','offline_government_id','selfie','government_id','identity_manual'
## 1357 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1358 'email','phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 1359 'email','phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 1360 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1361 'email','phone','facebook','reviews','jumio','offline_government_id','government_id'
## 1362 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1363 'email','phone','reviews','jumio','government_id'
## 1364 'email','phone','reviews','jumio','government_id'
## 1365 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1366 'email','phone','reviews'
## 1367 'email','phone','reviews','work_email'
## 1368 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1369 'email','phone','reviews','jumio','government_id'
## 1370 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1371 'email','phone','reviews','jumio','government_id'
## 1372 'email','phone','reviews','jumio','government_id'
## 1373 'email','phone','reviews','jumio','government_id'
## 1374 'email','phone','reviews','jumio','government_id'
## 1375 'phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1376 'email','phone','reviews','jumio','offline_government_id','government_id'
## 1377 'email','phone','reviews','jumio','government_id'
## 1378 'email','phone','reviews','jumio','government_id'
## 1379 'email','phone','reviews','jumio','government_id'
## 1380 'email','phone','reviews','jumio','government_id'
## 1381 'email','phone','reviews','jumio','government_id'
## 1382 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1383 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1384 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1385 'email','phone','reviews','jumio','government_id'
## 1386 'email','phone','reviews','jumio','government_id'
## 1387 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1388 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1389 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1390 'email','phone','reviews','jumio','government_id'
## 1391 'email','phone','reviews','jumio','government_id'
## 1392 'email','phone','reviews','jumio','government_id'
## 1393 'email','phone','offline_government_id','selfie','government_id','identity_manual'
## 1394 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1395 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1396 'email','phone','reviews','jumio','government_id'
## 1397 'email','phone','reviews','jumio','government_id'
## 1398 'email','phone','reviews','jumio','government_id'
## 1399 'email','phone','google','jumio','offline_government_id','selfie','government_id','identity_manual','work_email'
## 1400 'email','phone','reviews'
## 1401 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1402 'email','phone'
## 1403 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1404 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1405 'email','phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 1406 'email','phone'
## 1407 'email','phone'
## 1408 'email','phone','reviews','jumio','government_id','work_email'
## 1409 'email','phone','reviews','offline_government_id','selfie','government_id'
## 1410 'email','phone'
## 1411 'email','phone','google','reviews','jumio','offline_government_id','government_id'
## 1412 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual','work_email'
## 1413 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1414 'email','phone','reviews','offline_government_id','selfie','government_id'
## 1415 'email','phone','work_email'
## 1416 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1417 'email','phone','reviews'
## 1418 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1419 'email','phone','reviews'
## 1420 'email','phone','facebook','reviews','jumio','offline_government_id','selfie','government_id','identity_manual','work_email'
## 1421 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual','work_email'
## 1422 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1423 'email','phone','reviews','jumio','offline_government_id','government_id'
## 1424 'email','phone','reviews','jumio','government_id'
## 1425 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1426 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1427 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual','work_email'
## 1428 'email','phone'
## 1429 'email','phone','jumio','offline_government_id','government_id'
## 1430 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1431 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual','work_email'
## 1432 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1433 'email','phone','work_email'
## 1434 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1435 'email','phone','reviews'
## 1436 'email','phone','google'
## 1437 'email','phone','reviews','jumio','work_email'
## 1438 'email','phone','offline_government_id','selfie','government_id','identity_manual'
## 1439 'email','phone','reviews'
## 1440 'email','phone','reviews','jumio','government_id'
## 1441 'email','phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 1442 'phone','google','reviews','jumio','government_id'
## 1443 'email','phone','work_email'
## 1444 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1445 'email','phone','reviews'
## 1446 'email','phone','reviews'
## 1447 'email','phone','facebook','reviews','jumio'
## 1448 'email','phone','reviews','jumio','offline_government_id','government_id'
## 1449 'email','phone','reviews'
## 1450 'email','phone','facebook','reviews','jumio','government_id'
## 1451 'email','phone','facebook'
## 1452 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1453 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1454 'email','phone'
## 1455 'email','phone','reviews','jumio','offline_government_id','government_id'
## 1456 'email','phone','reviews','jumio','offline_government_id','government_id'
## 1457 'email','phone','reviews'
## 1458 'email','phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 1459 'email','phone','reviews','work_email'
## 1460 'phone','jumio','offline_government_id','government_id'
## 1461 'email','phone','jumio','selfie','government_id','identity_manual'
## 1462 'email','phone','work_email'
## 1463 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1464 'phone','facebook'
## 1465 'email','phone'
## 1466 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1467 'email','phone','google','offline_government_id','selfie','government_id','identity_manual'
## 1468 'email','phone','google','offline_government_id','selfie','government_id','identity_manual'
## 1469 'email','phone','reviews'
## 1470 'email','phone'
## 1471 'email','phone','offline_government_id','selfie','government_id','work_email'
## 1472 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1473 'email','phone','reviews','jumio','government_id'
## 1474 'email','phone'
## 1475 'email','phone','reviews','jumio','government_id'
## 1476 'email','phone','reviews'
## 1477 'email','phone','reviews','work_email'
## 1478 'phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 1479 'email','phone','reviews','jumio','government_id'
## 1480 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1481 'email','phone','reviews','jumio','government_id'
## 1482 'email','phone','reviews','jumio','government_id'
## 1483 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1484 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1485 'email','phone','offline_government_id','selfie','government_id','identity_manual'
## 1486 'email','phone','reviews','jumio','government_id'
## 1487 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1488 'email','phone','reviews','jumio','government_id'
## 1489 'email','phone','reviews','jumio','government_id'
## 1490 'email','phone','reviews','jumio','government_id'
## 1491 'email','phone','reviews','jumio','government_id'
## 1492 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1493 'email','phone','reviews','jumio','government_id'
## 1494 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1495 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1496 'email','phone','work_email'
## 1497 'email','phone'
## 1498 'email','phone'
## 1499 'email','phone','offline_government_id','selfie','government_id','identity_manual'
## 1500 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1501 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1502 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1503 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1504 'email','phone','reviews','jumio','government_id'
## 1505 'email','phone','facebook','reviews','weibo','jumio','government_id'
## 1506 'email','phone','reviews','jumio','government_id'
## 1507 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1508 'email','phone','reviews','jumio','government_id'
## 1509 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1510 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1511 'email','phone','reviews','jumio','government_id'
## 1512 'email','phone','reviews','jumio','government_id'
## 1513 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1514 'email','phone','reviews','jumio','government_id'
## 1515 'email','phone','reviews','jumio','government_id'
## 1516 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1517 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1518 'email','phone','reviews','jumio','government_id'
## 1519 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1520 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1521 'email','phone','reviews','jumio','government_id'
## 1522 'email','phone','reviews','jumio','government_id'
## 1523 'email','phone','reviews','jumio','government_id'
## 1524 'email','phone','reviews','manual_offline','work_email'
## 1525 'email','phone','reviews','offline_government_id','selfie','government_id'
## 1526 'email','phone','reviews'
## 1527 'email','phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 1528 'email','phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 1529 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1530 'phone','jumio','offline_government_id','government_id'
## 1531 'email','phone','reviews','jumio','offline_government_id','government_id'
## 1532 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1533 'email','phone','offline_government_id','selfie','government_id','identity_manual'
## 1534 'email','phone','reviews'
## 1535 'email','phone','reviews'
## 1536 'email','phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 1537 'email','phone','reviews','jumio','government_id'
## 1538 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## hv_email hv_phone hv_facebook hv_reviews hv_manual_offline hv_manual_jumio
## 1 1 1 0 1 0 1
## 2 1 1 0 1 0 0
## 3 1 1 0 1 0 0
## 4 1 1 0 1 0 0
## 5 1 1 0 0 0 0
## 6 1 1 0 1 0 0
## 7 1 1 0 1 0 0
## 8 1 1 0 1 0 1
## 9 1 1 0 0 0 0
## 10 1 1 0 1 0 1
## 11 1 1 0 1 0 1
## 12 1 1 0 0 0 0
## 13 1 1 0 1 0 0
## 14 1 1 0 1 0 1
## 15 1 1 0 0 0 1
## 16 1 1 0 1 0 1
## 17 1 1 0 1 0 1
## 18 1 1 0 1 0 1
## 19 1 1 0 0 0 0
## 20 1 1 0 0 0 1
## 21 1 1 0 1 0 1
## 22 1 1 0 1 0 0
## 23 1 1 0 1 0 1
## 24 1 1 1 1 0 0
## 25 1 1 0 1 0 1
## 26 1 1 0 0 0 1
## 27 1 1 0 0 0 0
## 28 1 1 0 0 0 0
## 29 1 1 0 0 0 1
## 30 1 1 0 0 0 0
## 31 1 1 0 0 1 0
## 32 1 1 0 0 0 1
## 33 1 1 1 1 0 1
## 34 1 1 0 1 0 1
## 35 1 1 0 0 0 1
## 36 1 1 0 1 0 1
## 37 1 1 0 0 1 0
## 38 1 1 0 0 0 0
## 39 1 1 0 0 0 1
## 40 1 1 0 1 0 1
## 41 1 1 0 1 0 1
## 42 1 1 0 1 0 1
## 43 1 1 0 0 0 1
## 44 1 1 0 0 0 1
## 45 1 1 0 0 0 1
## 46 1 1 0 1 0 1
## 47 1 1 0 0 0 1
## 48 1 1 0 0 0 1
## 49 1 1 0 0 0 0
## 50 1 1 0 0 0 1
## 51 1 1 0 1 0 1
## 52 1 1 0 1 0 0
## 53 1 1 0 0 0 1
## 54 1 1 0 1 0 0
## 55 1 1 0 0 0 0
## 56 1 1 0 1 0 1
## 57 1 1 0 1 0 1
## 58 1 1 0 0 0 1
## 59 1 1 0 0 0 1
## 60 1 1 0 0 0 1
## 61 1 1 0 1 1 0
## 62 1 1 0 1 0 0
## 63 1 1 0 1 0 1
## 64 1 1 0 1 0 1
## 65 1 1 0 1 0 1
## 66 1 1 0 0 0 1
## 67 1 1 0 0 0 0
## 68 1 1 0 0 0 1
## 69 1 1 0 1 0 0
## 70 1 1 0 1 0 0
## 71 1 1 0 0 0 0
## 72 1 1 0 0 0 1
## 73 1 1 0 0 0 1
## 74 1 1 0 0 0 1
## 75 1 1 0 0 0 1
## 76 1 1 0 1 0 1
## 77 1 1 0 1 0 1
## 78 0 1 1 1 0 0
## 79 1 1 0 1 0 1
## 80 1 1 0 1 0 1
## 81 0 1 0 1 0 0
## 82 1 1 0 0 0 0
## 83 1 1 0 1 0 1
## 84 1 1 0 0 0 1
## 85 1 1 0 1 0 1
## 86 1 1 0 0 0 1
## 87 1 1 0 1 0 0
## 88 0 1 0 1 0 0
## 89 1 1 0 0 0 1
## 90 1 1 0 1 0 1
## 91 1 1 0 0 0 1
## 92 1 1 0 1 0 1
## 93 1 1 0 0 0 1
## 94 1 1 0 0 0 1
## 95 1 1 0 0 0 1
## 96 1 1 0 0 0 1
## 97 1 1 0 0 0 0
## 98 1 1 0 0 0 0
## 99 1 1 0 0 0 0
## 100 1 1 0 0 0 0
## 101 1 1 0 1 0 1
## 102 1 1 0 0 0 1
## 103 1 1 0 1 0 0
## 104 1 1 0 1 0 0
## 105 1 1 0 0 0 0
## 106 1 1 0 0 0 0
## 107 1 1 0 1 0 0
## 108 0 0 0 0 0 0
## 109 1 1 0 1 0 0
## 110 1 1 0 1 1 0
## 111 1 1 0 1 0 0
## 112 1 1 0 1 0 1
## 113 1 1 0 1 0 1
## 114 1 1 0 0 0 1
## 115 1 1 0 0 0 1
## 116 1 1 0 0 1 0
## 117 1 1 0 0 0 1
## 118 1 1 0 0 0 1
## 119 1 1 0 0 0 1
## 120 1 1 0 0 0 1
## 121 1 1 0 0 0 1
## 122 1 1 0 0 0 0
## 123 1 1 0 1 0 1
## 124 1 1 0 0 0 1
## 125 1 1 0 0 0 0
## 126 1 1 0 1 0 1
## 127 1 1 0 0 0 0
## 128 1 1 0 0 0 0
## 129 1 1 0 1 0 1
## 130 1 1 0 1 0 1
## 131 1 1 0 0 1 0
## 132 1 1 0 1 0 0
## 133 1 1 0 1 0 1
## 134 1 1 0 1 0 1
## 135 1 1 0 0 0 0
## 136 1 1 0 0 0 0
## 137 1 1 0 0 0 0
## 138 1 1 0 0 0 1
## 139 1 1 0 0 0 0
## 140 1 1 0 1 0 0
## 141 1 1 1 0 0 0
## 142 1 1 0 0 0 0
## 143 1 1 0 1 0 1
## 144 1 1 0 1 0 0
## 145 1 1 0 1 0 1
## 146 1 1 0 0 0 0
## 147 1 1 0 0 0 0
## 148 1 1 0 0 0 0
## 149 1 1 0 0 0 1
## 150 1 1 0 0 0 1
## 151 1 1 0 0 1 0
## 152 1 1 0 0 0 0
## 153 0 1 0 1 0 1
## 154 0 1 0 1 0 1
## 155 1 1 0 0 0 0
## 156 1 1 0 1 0 0
## 157 1 1 0 0 0 0
## 158 1 1 0 1 0 0
## 159 1 1 0 0 0 0
## 160 1 1 0 0 0 1
## 161 1 1 0 0 0 1
## 162 1 1 0 0 0 1
## 163 1 1 0 0 0 1
## 164 1 1 0 1 0 0
## 165 1 1 0 1 0 0
## 166 1 1 0 0 0 0
## 167 1 1 0 1 0 0
## 168 0 1 0 1 0 1
## 169 0 1 0 1 0 1
## 170 1 1 0 1 0 0
## 171 1 1 0 0 0 0
## 172 1 1 0 1 0 0
## 173 1 1 0 0 0 1
## 174 1 1 0 0 0 1
## 175 0 1 0 1 0 1
## 176 1 1 0 0 0 0
## 177 1 1 0 1 0 1
## 178 0 1 0 1 0 1
## 179 1 1 1 0 0 1
## 180 1 1 1 1 0 1
## 181 1 1 1 1 0 1
## 182 1 1 0 1 0 0
## 183 0 1 0 1 0 1
## 184 1 1 1 1 1 1
## 185 0 1 0 1 0 0
## 186 1 1 0 1 1 0
## 187 1 1 0 1 1 0
## 188 1 1 0 1 1 0
## 189 1 1 0 1 1 0
## 190 1 1 0 1 1 0
## 191 1 1 0 1 1 0
## 192 0 1 0 0 0 1
## 193 1 1 0 0 0 0
## 194 1 1 0 0 0 0
## 195 1 1 1 1 1 1
## 196 1 1 0 0 0 0
## 197 1 1 0 1 0 0
## 198 1 1 0 1 0 0
## 199 1 1 1 0 0 0
## 200 1 1 0 0 0 1
## 201 1 1 0 1 0 0
## 202 1 1 0 1 0 1
## 203 0 1 0 1 0 1
## 204 0 1 0 0 0 0
## 205 1 1 0 0 0 0
## 206 1 1 0 1 0 0
## 207 1 1 0 1 0 0
## 208 1 1 0 1 0 1
## 209 1 1 0 0 0 0
## 210 1 1 0 0 0 0
## 211 1 1 0 0 0 0
## 212 1 1 0 0 0 0
## 213 1 1 0 1 0 1
## 214 1 1 0 1 0 0
## 215 1 1 0 1 0 1
## 216 1 1 0 0 0 0
## 217 1 1 0 0 0 0
## 218 1 1 0 0 0 0
## 219 1 1 0 1 0 1
## 220 1 1 0 0 0 0
## 221 1 1 0 0 0 1
## 222 1 1 0 0 0 1
## 223 1 1 0 0 0 1
## 224 1 1 0 1 0 1
## 225 1 1 0 1 0 1
## 226 1 1 1 1 0 0
## 227 0 1 0 0 0 0
## 228 1 1 0 0 0 0
## 229 1 1 0 0 0 0
## 230 1 1 0 0 0 1
## 231 1 1 0 1 0 0
## 232 1 1 0 0 0 1
## 233 1 1 0 1 0 0
## 234 1 1 0 1 0 0
## 235 1 1 0 1 0 0
## 236 1 1 0 1 0 0
## 237 1 1 0 1 0 0
## 238 1 1 0 1 0 0
## 239 1 1 0 1 0 0
## 240 1 1 0 1 0 1
## 241 1 1 0 0 0 1
## 242 1 1 0 0 0 1
## 243 1 1 0 0 0 0
## 244 1 1 0 0 0 0
## 245 1 1 0 1 0 1
## 246 1 1 0 0 0 0
## 247 0 1 0 1 0 1
## 248 0 1 0 1 0 1
## 249 1 1 0 1 0 0
## 250 1 1 0 0 0 0
## 251 1 1 0 1 0 1
## 252 1 1 0 0 0 0
## 253 1 1 0 0 0 0
## 254 1 1 0 0 0 0
## 255 1 1 0 0 0 0
## 256 1 1 0 1 0 1
## 257 1 1 0 0 0 0
## 258 1 1 1 1 1 1
## 259 1 1 0 1 1 1
## 260 1 1 0 0 0 0
## 261 1 1 0 0 0 0
## 262 1 0 0 1 0 0
## 263 1 1 0 0 0 0
## 264 1 1 0 0 0 0
## 265 1 1 0 0 0 0
## 266 1 1 0 1 0 1
## 267 1 1 0 1 0 1
## 268 1 1 0 0 0 0
## 269 1 1 0 1 0 1
## 270 1 1 0 1 0 1
## 271 1 1 0 0 0 1
## 272 1 1 0 0 0 1
## 273 1 1 0 1 0 1
## 274 1 1 0 0 0 1
## 275 1 1 0 0 0 1
## 276 0 1 0 1 0 1
## 277 1 1 0 0 0 0
## 278 1 1 0 0 0 0
## 279 1 1 0 1 0 0
## 280 1 1 0 1 0 0
## 281 0 1 1 1 0 0
## 282 1 1 0 0 0 0
## 283 1 1 0 1 0 1
## 284 1 1 0 1 0 1
## 285 1 1 0 0 0 0
## 286 1 1 0 0 0 0
## 287 1 1 0 1 0 1
## 288 1 1 0 0 0 0
## 289 1 1 0 1 0 0
## 290 1 1 0 1 0 0
## 291 1 1 0 0 0 1
## 292 1 1 0 0 0 1
## 293 0 1 0 1 0 1
## 294 0 1 0 1 0 1
## 295 1 1 0 1 0 1
## 296 1 1 0 0 0 0
## 297 1 1 0 0 0 0
## 298 1 1 0 1 0 1
## 299 1 1 0 1 0 1
## 300 1 1 0 0 0 1
## 301 1 1 0 0 0 1
## 302 1 1 0 0 0 1
## 303 1 1 0 0 0 1
## 304 1 1 0 0 0 1
## 305 1 1 0 0 0 1
## 306 1 1 0 0 0 0
## 307 0 1 0 0 0 0
## 308 1 1 0 1 0 0
## 309 1 1 0 1 0 0
## 310 1 1 0 0 0 0
## 311 1 1 0 1 0 1
## 312 1 1 0 0 0 0
## 313 1 1 0 1 0 0
## 314 1 1 0 1 0 1
## 315 1 1 0 1 0 0
## 316 1 1 0 0 0 0
## 317 1 1 0 1 0 1
## 318 1 1 0 1 0 1
## 319 1 1 0 0 0 0
## 320 1 1 0 1 0 0
## 321 0 0 0 0 0 0
## 322 0 0 0 0 0 0
## 323 1 1 0 0 0 0
## 324 1 1 0 0 0 1
## 325 1 1 0 0 0 0
## 326 1 1 0 1 0 0
## 327 0 1 0 0 0 0
## 328 0 1 0 0 0 0
## 329 1 1 0 1 0 1
## 330 1 1 0 1 0 1
## 331 1 1 0 1 0 1
## 332 1 1 0 1 0 1
## 333 1 1 0 1 0 0
## 334 1 1 0 1 0 1
## 335 1 1 0 0 0 1
## 336 1 1 0 1 0 1
## 337 1 1 0 0 0 0
## 338 1 1 0 0 0 0
## 339 1 1 0 1 0 1
## 340 1 1 0 0 0 1
## 341 1 1 0 1 0 1
## 342 1 1 0 0 0 0
## 343 1 1 0 1 0 0
## 344 1 1 0 1 0 0
## 345 1 1 0 1 0 1
## 346 1 1 0 0 0 1
## 347 1 1 0 1 0 1
## 348 1 1 0 1 0 0
## 349 1 1 0 1 0 0
## 350 1 1 0 0 0 1
## 351 0 0 0 0 0 0
## 352 0 0 0 0 0 0
## 353 0 1 0 1 0 0
## 354 1 1 0 0 0 0
## 355 1 1 0 0 0 0
## 356 1 1 0 1 0 0
## 357 1 1 0 0 0 0
## 358 1 1 1 1 0 1
## 359 1 1 0 1 0 0
## 360 1 1 0 1 0 1
## 361 1 1 0 1 0 1
## 362 1 1 0 1 0 1
## 363 0 1 1 0 0 0
## 364 1 1 0 1 0 0
## 365 1 1 0 1 0 1
## 366 1 1 0 1 0 1
## 367 1 1 0 0 0 0
## 368 1 1 0 1 0 1
## 369 1 1 0 0 0 1
## 370 1 1 0 1 0 1
## 371 1 1 0 0 0 1
## 372 1 1 1 1 0 1
## 373 1 1 0 0 0 0
## 374 1 1 0 1 0 0
## 375 1 1 0 0 0 0
## 376 1 1 0 0 0 1
## 377 1 1 0 0 0 1
## 378 1 1 1 1 1 1
## 379 1 1 0 1 0 0
## 380 1 1 0 1 0 1
## 381 1 1 0 1 0 1
## 382 1 1 0 1 0 1
## 383 1 1 0 1 0 1
## 384 1 1 0 0 0 0
## 385 1 1 0 1 0 1
## 386 1 1 0 1 0 1
## 387 1 1 0 1 0 1
## 388 1 1 0 1 0 1
## 389 1 1 0 1 0 1
## 390 1 1 0 1 0 1
## 391 1 1 0 1 0 1
## 392 1 1 0 0 0 0
## 393 1 1 0 1 0 1
## 394 1 1 0 1 0 1
## 395 1 1 0 1 0 0
## 396 1 1 0 0 0 1
## 397 1 1 0 0 0 1
## 398 1 1 0 0 0 0
## 399 1 1 0 0 0 1
## 400 1 1 0 0 0 0
## 401 1 1 0 1 0 0
## 402 1 1 0 0 0 0
## 403 1 1 0 0 0 0
## 404 1 1 0 0 0 1
## 405 1 1 0 1 0 1
## 406 0 0 0 0 0 0
## 407 1 1 0 1 0 1
## 408 1 1 0 1 0 1
## 409 1 1 0 1 0 0
## 410 1 1 0 0 0 0
## 411 1 1 0 1 0 1
## 412 1 1 0 0 0 0
## 413 1 1 0 1 0 1
## 414 1 1 0 1 0 0
## 415 1 1 0 1 0 1
## 416 1 1 0 1 0 1
## 417 1 1 0 1 0 0
## 418 1 1 0 0 0 0
## 419 1 1 0 1 0 0
## 420 1 1 0 1 0 0
## 421 1 1 0 1 0 0
## 422 1 1 0 0 0 0
## 423 1 1 0 1 0 1
## 424 1 1 0 1 0 0
## 425 1 1 0 1 0 0
## 426 1 1 0 1 0 1
## 427 1 1 0 1 0 0
## 428 1 1 0 0 0 0
## 429 1 1 0 0 0 0
## 430 1 1 0 0 0 1
## 431 1 1 0 1 0 1
## 432 1 1 0 1 0 0
## 433 1 1 0 1 0 1
## 434 1 1 0 0 0 1
## 435 1 1 0 1 0 1
## 436 1 1 0 0 0 1
## 437 1 1 0 1 0 1
## 438 1 1 1 1 0 1
## 439 1 1 0 1 0 1
## 440 1 1 0 1 0 1
## 441 1 1 0 1 0 0
## 442 1 1 0 1 1 1
## 443 1 1 0 1 0 1
## 444 1 1 0 1 0 0
## 445 1 1 0 1 0 0
## 446 0 1 0 0 0 0
## 447 1 1 0 0 0 0
## 448 1 1 0 1 0 1
## 449 1 1 0 0 0 0
## 450 1 1 0 1 0 0
## 451 1 1 1 1 0 1
## 452 1 1 0 1 0 0
## 453 1 1 0 1 0 0
## 454 1 1 0 1 1 0
## 455 1 1 0 1 0 1
## 456 1 1 0 1 0 1
## 457 1 1 0 1 0 0
## 458 1 1 0 1 0 1
## 459 1 1 0 1 0 1
## 460 1 1 0 1 0 0
## 461 1 1 0 0 0 0
## 462 1 1 0 0 0 0
## 463 1 1 0 1 0 1
## 464 1 1 0 0 0 1
## 465 1 1 0 1 0 1
## 466 1 1 0 1 0 1
## 467 1 1 0 1 0 0
## 468 1 1 0 1 0 1
## 469 1 1 0 0 0 1
## 470 0 1 0 1 0 1
## 471 1 1 0 0 0 0
## 472 1 1 0 1 0 1
## 473 1 1 0 0 0 1
## 474 1 1 0 1 0 1
## 475 1 1 0 0 0 1
## 476 1 1 0 1 0 0
## 477 1 1 0 1 0 1
## 478 1 1 0 1 0 0
## 479 1 1 1 1 0 1
## 480 1 1 0 0 0 0
## 481 1 1 0 0 0 0
## 482 1 1 0 0 0 0
## 483 1 1 0 0 0 0
## 484 1 1 0 1 0 1
## 485 1 1 1 1 0 1
## 486 1 1 0 1 0 1
## 487 1 1 1 1 0 1
## 488 1 1 0 1 0 1
## 489 1 1 0 1 0 1
## 490 1 1 0 0 0 1
## 491 1 1 0 1 0 1
## 492 1 1 0 1 0 0
## 493 1 1 0 1 0 0
## 494 1 1 0 1 0 0
## 495 1 1 0 0 0 0
## 496 0 1 0 1 0 0
## 497 0 1 0 1 0 0
## 498 1 1 0 1 0 1
## 499 1 1 1 1 0 1
## 500 1 1 0 1 0 1
## 501 1 1 0 0 0 1
## 502 1 1 0 0 0 1
## 503 1 1 0 1 0 1
## 504 1 1 0 1 0 0
## 505 1 1 0 0 0 0
## 506 1 1 0 1 0 1
## 507 1 1 0 0 0 1
## 508 0 1 0 0 0 1
## 509 1 1 0 1 0 1
## 510 1 1 0 0 0 0
## 511 1 1 0 1 0 1
## 512 1 1 0 0 0 1
## 513 0 1 0 1 0 1
## 514 1 1 0 0 0 1
## 515 1 1 0 0 0 1
## 516 1 1 0 1 0 0
## 517 1 1 0 1 0 1
## 518 0 1 0 1 0 1
## 519 1 1 0 1 0 0
## 520 1 1 0 1 0 1
## 521 1 1 0 1 0 1
## 522 1 1 0 1 0 0
## 523 1 1 0 1 0 1
## 524 0 1 0 0 0 1
## 525 1 1 0 1 0 0
## 526 1 1 0 1 0 1
## 527 1 1 0 0 0 1
## 528 1 1 0 0 0 1
## 529 0 1 0 1 0 1
## 530 1 1 0 1 0 1
## 531 1 1 0 1 0 0
## 532 1 1 0 1 0 1
## 533 1 1 0 1 0 1
## 534 0 0 0 0 0 0
## 535 1 1 0 0 0 0
## 536 1 1 0 1 0 1
## 537 1 1 0 1 0 1
## 538 1 1 0 1 0 1
## 539 1 1 0 0 0 1
## 540 1 1 0 1 0 1
## 541 1 1 0 0 0 1
## 542 1 1 1 1 0 1
## 543 1 1 0 1 0 0
## 544 1 1 0 1 0 1
## 545 1 1 0 1 0 0
## 546 1 1 0 1 0 1
## 547 1 1 0 1 0 1
## 548 1 1 0 0 0 0
## 549 1 1 0 0 0 0
## 550 1 1 0 0 0 1
## 551 1 1 0 0 0 1
## 552 1 1 0 0 0 1
## 553 1 1 1 1 0 1
## 554 1 1 0 1 0 0
## 555 1 1 0 1 0 0
## 556 1 1 0 1 0 0
## 557 1 1 0 1 0 0
## 558 1 1 0 1 0 0
## 559 1 1 0 1 0 0
## 560 1 1 0 1 0 0
## 561 1 1 0 1 0 0
## 562 0 1 0 1 0 1
## 563 0 1 0 1 0 1
## 564 1 1 0 1 0 0
## 565 1 1 0 0 0 0
## 566 1 1 0 1 0 0
## 567 1 1 0 0 0 1
## 568 1 1 0 0 0 0
## 569 1 1 0 1 0 0
## 570 1 1 0 1 0 0
## 571 1 1 0 1 0 0
## 572 1 1 0 1 0 1
## 573 1 1 0 0 0 1
## 574 0 1 0 1 0 1
## 575 0 1 0 1 0 1
## 576 0 1 0 1 0 1
## 577 0 1 0 1 0 1
## 578 1 1 0 1 0 0
## 579 1 1 0 1 0 1
## 580 1 1 0 1 0 1
## 581 1 1 0 1 0 1
## 582 1 1 0 0 0 0
## 583 1 1 0 0 0 0
## 584 1 1 0 1 0 1
## 585 1 1 0 1 0 1
## 586 1 1 0 1 0 1
## 587 1 1 0 1 0 1
## 588 1 1 0 1 0 1
## 589 1 1 0 1 0 1
## 590 1 1 1 1 1 1
## 591 1 1 1 1 0 0
## 592 1 1 0 1 0 1
## 593 1 1 1 1 0 0
## 594 1 1 0 1 0 1
## 595 1 1 0 1 0 0
## 596 0 1 0 0 0 1
## 597 1 1 0 0 0 0
## 598 1 1 0 1 0 1
## 599 1 1 0 1 0 0
## 600 0 0 0 0 0 0
## 601 1 1 0 1 0 1
## 602 1 1 0 1 0 0
## 603 1 1 0 0 0 0
## 604 1 1 0 1 0 0
## 605 1 1 0 0 0 0
## 606 1 1 0 0 0 0
## 607 0 1 0 0 0 0
## 608 1 1 0 0 0 0
## 609 1 1 0 0 0 0
## 610 0 1 1 0 0 0
## 611 1 1 0 1 0 1
## 612 1 1 0 1 0 1
## 613 1 1 0 1 0 0
## 614 1 1 0 1 0 1
## 615 1 1 0 0 0 0
## 616 1 1 0 1 0 0
## 617 0 1 0 0 0 0
## 618 1 1 0 1 0 1
## 619 1 1 0 1 0 1
## 620 1 1 0 1 0 0
## 621 1 1 0 1 0 1
## 622 1 1 0 1 0 0
## 623 1 1 0 0 0 1
## 624 1 1 0 0 0 1
## 625 1 1 0 1 0 1
## 626 0 1 0 1 0 1
## 627 1 1 0 1 0 1
## 628 1 1 0 0 0 0
## 629 1 1 0 1 0 1
## 630 1 1 1 1 0 1
## 631 0 1 0 1 0 1
## 632 1 1 0 1 0 1
## 633 1 1 0 1 0 1
## 634 1 1 0 1 0 1
## 635 1 1 0 1 0 1
## 636 1 1 0 1 0 1
## 637 1 1 0 1 0 1
## 638 0 1 0 1 0 1
## 639 0 1 0 1 0 1
## 640 1 1 0 0 0 0
## 641 1 1 0 0 0 0
## 642 1 1 0 1 0 0
## 643 1 1 0 1 0 0
## 644 1 1 0 0 0 1
## 645 1 1 0 0 0 1
## 646 1 1 0 0 0 0
## 647 1 1 0 0 0 0
## 648 1 1 0 1 0 0
## 649 1 1 0 0 0 0
## 650 1 1 0 0 0 0
## 651 1 1 0 1 0 1
## 652 1 1 0 1 0 0
## 653 0 1 0 1 0 0
## 654 1 1 0 1 0 1
## 655 1 1 0 1 0 1
## 656 1 1 0 1 0 1
## 657 1 1 0 0 0 0
## 658 1 1 0 0 0 0
## 659 1 1 0 0 0 0
## 660 1 1 0 0 0 0
## 661 1 1 0 0 0 0
## 662 1 1 0 0 0 0
## 663 1 1 0 1 0 1
## 664 1 1 0 1 0 1
## 665 1 1 0 0 0 0
## 666 1 1 0 0 0 0
## 667 1 1 0 0 0 0
## 668 1 1 0 0 0 0
## 669 1 1 0 0 0 0
## 670 1 1 0 1 0 1
## 671 1 1 0 1 0 1
## 672 1 1 0 1 0 1
## 673 1 1 0 1 0 1
## 674 1 1 0 1 0 1
## 675 0 1 0 1 0 1
## 676 1 1 0 0 0 1
## 677 1 1 0 0 0 1
## 678 1 1 0 0 0 1
## 679 1 1 0 0 0 1
## 680 1 1 1 1 0 1
## 681 1 1 0 1 0 0
## 682 1 1 1 1 0 1
## 683 0 1 0 1 0 1
## 684 1 1 0 0 0 0
## 685 1 1 0 1 0 1
## 686 1 1 1 1 0 1
## 687 1 1 0 0 0 0
## 688 1 1 0 0 0 1
## 689 1 1 0 1 0 1
## 690 1 1 0 1 0 0
## 691 1 1 0 1 0 1
## 692 1 1 0 0 0 0
## 693 1 1 0 1 0 1
## 694 1 1 0 1 0 1
## 695 1 1 0 1 0 0
## 696 1 1 0 1 0 1
## 697 1 1 0 1 0 1
## 698 1 1 0 1 0 1
## 699 1 1 0 1 0 1
## 700 1 1 0 1 0 1
## 701 1 1 0 1 0 1
## 702 1 1 0 1 0 1
## 703 1 1 0 1 0 1
## 704 1 1 0 1 0 1
## 705 1 1 0 0 0 1
## 706 1 1 0 1 0 1
## 707 1 1 0 0 0 0
## 708 1 1 0 0 0 0
## 709 1 1 1 0 0 1
## 710 1 1 0 1 0 0
## 711 1 1 0 1 0 0
## 712 1 1 0 1 0 1
## 713 1 1 0 1 0 1
## 714 1 1 0 1 0 1
## 715 1 1 0 1 0 0
## 716 1 1 0 0 0 1
## 717 1 1 0 1 0 1
## 718 1 1 0 1 0 1
## 719 1 1 0 0 0 0
## 720 1 1 0 1 0 1
## 721 1 1 0 1 0 1
## 722 1 1 1 1 0 0
## 723 1 1 0 0 0 0
## 724 1 1 0 1 0 1
## 725 0 1 0 1 0 1
## 726 0 1 0 1 0 1
## 727 1 1 0 1 0 1
## 728 1 1 0 1 0 1
## 729 1 1 0 1 0 1
## 730 1 1 0 1 0 1
## 731 1 1 0 0 0 1
## 732 1 1 0 1 0 1
## 733 1 1 0 1 0 1
## 734 1 1 0 1 0 1
## 735 1 1 0 1 0 1
## 736 1 1 0 1 0 1
## 737 1 1 0 1 0 1
## 738 1 1 0 0 0 0
## 739 1 1 0 1 0 1
## 740 1 1 0 1 0 1
## 741 1 1 0 1 0 1
## 742 1 1 0 0 0 0
## 743 1 1 0 1 0 0
## 744 1 1 0 1 0 0
## 745 1 1 0 1 0 0
## 746 1 1 0 0 0 0
## 747 1 1 0 0 0 1
## 748 0 1 0 0 0 0
## 749 1 1 0 1 0 1
## 750 1 1 0 1 0 0
## 751 1 1 0 1 0 0
## 752 1 1 1 1 0 1
## 753 1 1 1 1 0 1
## 754 0 1 0 1 0 1
## 755 0 1 0 1 0 1
## 756 1 1 0 0 0 0
## 757 1 1 0 0 0 1
## 758 1 1 0 0 0 0
## 759 0 1 0 1 0 1
## 760 1 1 0 0 0 1
## 761 1 1 0 1 0 0
## 762 1 1 0 1 0 0
## 763 1 1 0 0 0 0
## 764 1 1 0 1 0 1
## 765 1 1 0 1 0 0
## 766 1 1 0 1 0 1
## 767 1 1 0 1 0 1
## 768 1 1 0 1 0 1
## 769 1 1 0 1 0 1
## 770 1 1 0 1 0 1
## 771 1 1 0 1 0 1
## 772 1 1 0 1 0 1
## 773 1 1 0 1 0 1
## 774 1 1 0 1 0 1
## 775 1 1 0 1 0 0
## 776 1 1 0 1 0 1
## 777 1 1 0 1 0 0
## 778 1 1 0 1 0 1
## 779 1 1 0 1 0 1
## 780 1 1 0 0 0 0
## 781 1 1 0 0 0 0
## 782 1 1 0 0 0 0
## 783 1 1 0 0 0 0
## 784 1 1 0 1 0 1
## 785 1 1 1 1 0 1
## 786 1 1 1 1 0 1
## 787 1 1 0 1 0 1
## 788 1 1 0 1 0 1
## 789 1 1 0 0 0 0
## 790 1 1 0 0 0 0
## 791 1 1 0 1 0 0
## 792 1 1 0 1 0 0
## 793 1 1 0 1 0 1
## 794 1 1 0 0 0 0
## 795 1 1 0 1 0 0
## 796 1 1 0 1 0 0
## 797 1 1 0 1 0 1
## 798 1 1 0 1 0 1
## 799 1 1 0 1 0 1
## 800 1 1 0 1 0 1
## 801 1 1 0 1 0 1
## 802 1 1 0 0 0 1
## 803 1 1 0 1 0 1
## 804 1 1 0 1 0 1
## 805 0 1 1 1 0 0
## 806 1 1 0 1 0 0
## 807 1 1 0 1 0 0
## 808 1 1 0 1 0 1
## 809 0 1 0 1 0 0
## 810 1 1 0 1 0 1
## 811 1 1 0 1 0 1
## 812 1 1 0 1 0 1
## 813 1 1 0 0 0 1
## 814 1 1 0 0 0 0
## 815 1 1 0 1 0 1
## 816 0 1 0 1 0 0
## 817 1 1 0 1 0 0
## 818 1 1 0 1 0 1
## 819 1 1 0 1 0 1
## 820 0 1 0 1 0 1
## 821 0 1 0 1 0 0
## 822 1 1 0 0 0 0
## 823 1 1 0 0 0 1
## 824 1 1 0 0 0 0
## 825 1 1 0 0 0 1
## 826 1 1 0 1 0 1
## 827 1 1 0 1 0 1
## 828 1 1 0 1 0 1
## 829 1 1 0 1 0 1
## 830 1 1 0 1 0 1
## 831 1 1 0 1 0 1
## 832 1 1 0 1 0 1
## 833 1 1 0 1 0 1
## 834 1 1 0 1 0 1
## 835 1 1 0 1 0 0
## 836 1 1 0 0 0 0
## 837 1 1 0 1 0 0
## 838 1 1 0 1 0 1
## 839 1 1 0 0 0 0
## 840 1 1 0 1 0 1
## 841 1 1 0 0 0 0
## 842 1 1 0 1 0 1
## 843 1 1 0 1 0 1
## 844 0 1 0 1 0 1
## 845 0 1 0 1 0 1
## 846 0 1 0 1 0 1
## 847 1 1 0 1 0 0
## 848 1 1 0 1 0 0
## 849 1 1 0 1 0 0
## 850 1 1 0 1 0 0
## 851 1 1 1 1 0 1
## 852 1 1 0 1 0 1
## 853 1 1 0 1 0 1
## 854 1 1 0 1 0 1
## 855 1 1 0 1 0 1
## 856 1 1 0 1 0 1
## 857 1 1 1 0 0 0
## 858 1 1 0 1 0 1
## 859 1 1 0 0 0 0
## 860 1 1 0 0 0 0
## 861 1 1 0 1 0 1
## 862 1 1 0 1 0 1
## 863 1 1 0 1 0 1
## 864 1 1 0 0 0 0
## 865 0 1 1 0 0 0
## 866 0 1 0 0 0 0
## 867 1 1 0 1 0 0
## 868 1 1 0 0 0 1
## 869 1 1 0 1 0 1
## 870 1 1 0 1 0 1
## 871 1 1 0 1 0 1
## 872 1 1 0 1 0 1
## 873 1 1 0 1 0 0
## 874 1 1 0 1 0 0
## 875 1 1 0 1 0 0
## 876 1 1 0 1 0 1
## 877 1 1 0 1 0 1
## 878 1 1 0 0 0 1
## 879 1 1 0 0 0 1
## 880 1 1 0 1 0 1
## 881 1 1 0 1 0 1
## 882 0 1 0 1 0 1
## 883 1 1 1 1 0 1
## 884 0 1 0 0 0 1
## 885 1 1 0 1 0 1
## 886 1 1 0 1 0 1
## 887 1 1 0 1 0 1
## 888 1 1 0 1 0 0
## 889 1 1 0 1 0 1
## 890 1 1 0 0 0 0
## 891 1 1 0 1 0 1
## 892 1 1 0 1 0 1
## 893 1 1 0 0 0 0
## 894 1 1 0 1 0 1
## 895 1 1 0 1 0 1
## 896 1 1 0 0 0 1
## 897 1 1 0 0 0 0
## 898 1 1 0 0 0 0
## 899 1 1 0 1 0 1
## 900 1 1 0 1 0 1
## 901 1 1 0 1 0 1
## 902 1 1 0 0 0 0
## 903 1 1 0 1 0 1
## 904 1 1 0 1 0 1
## 905 1 1 0 0 0 0
## 906 1 1 0 0 0 0
## 907 1 1 0 1 0 1
## 908 1 1 0 0 0 0
## 909 1 1 0 1 0 1
## 910 1 1 0 1 0 0
## 911 1 1 0 1 0 1
## 912 1 1 1 1 0 0
## 913 1 1 0 0 0 0
## 914 0 1 1 0 0 0
## 915 1 1 0 1 0 1
## 916 1 1 0 0 0 1
## 917 1 1 0 1 0 1
## 918 1 1 0 0 0 1
## 919 1 1 0 1 0 0
## 920 1 1 0 1 0 0
## 921 1 1 0 1 0 1
## 922 1 1 0 1 0 1
## 923 1 1 0 1 0 0
## 924 1 1 0 0 0 1
## 925 1 1 0 1 0 1
## 926 1 1 0 1 0 1
## 927 1 1 0 1 0 1
## 928 1 1 0 1 0 1
## 929 0 1 0 0 0 0
## 930 1 1 0 1 0 0
## 931 1 1 0 1 0 0
## 932 1 1 0 1 0 1
## 933 1 1 0 1 0 1
## 934 1 1 0 1 0 1
## 935 1 1 0 0 0 0
## 936 1 1 0 0 0 0
## 937 0 1 0 1 0 0
## 938 1 1 0 1 0 0
## 939 1 1 0 1 0 1
## 940 1 1 0 1 0 1
## 941 1 1 0 0 0 0
## 942 1 1 0 0 0 1
## 943 1 1 0 1 0 0
## 944 1 1 0 1 0 1
## 945 1 1 0 0 0 0
## 946 1 1 0 1 0 0
## 947 1 1 0 0 0 1
## 948 1 1 0 1 0 0
## 949 1 1 0 0 0 0
## 950 1 1 0 0 0 1
## 951 1 1 0 1 0 1
## 952 1 1 0 1 0 1
## 953 1 1 0 0 0 1
## 954 1 1 0 1 0 0
## 955 1 1 0 0 0 0
## 956 1 1 0 1 0 1
## 957 1 1 1 1 0 0
## 958 1 1 0 1 0 1
## 959 1 1 0 1 0 1
## 960 1 1 0 1 0 1
## 961 1 1 0 1 0 1
## 962 1 1 0 1 0 1
## 963 1 1 0 1 0 0
## 964 1 1 0 1 0 0
## 965 1 1 0 1 0 1
## 966 1 1 0 1 0 1
## 967 0 1 0 0 0 1
## 968 1 1 0 1 0 1
## 969 1 1 0 1 0 0
## 970 1 1 0 1 0 0
## 971 1 1 0 0 0 0
## 972 1 1 0 0 0 0
## 973 1 1 0 0 0 0
## 974 1 1 0 0 0 1
## 975 1 1 0 0 0 1
## 976 1 1 0 1 0 1
## 977 1 1 0 1 0 1
## 978 1 1 0 0 0 1
## 979 1 1 0 1 0 1
## 980 1 1 0 1 0 0
## 981 1 1 0 1 0 1
## 982 1 1 0 1 0 1
## 983 1 1 0 0 0 0
## 984 1 1 0 1 0 1
## 985 1 1 0 1 0 1
## 986 1 1 0 1 0 1
## 987 1 1 0 1 0 1
## 988 1 1 0 1 0 1
## 989 1 1 0 1 0 0
## 990 1 1 0 1 0 0
## 991 0 1 0 0 0 0
## 992 1 1 0 1 0 1
## 993 0 1 0 0 0 0
## 994 1 1 0 1 0 1
## 995 1 1 0 1 0 0
## 996 1 1 0 0 0 0
## 997 1 1 0 0 0 0
## 998 1 1 0 0 0 0
## 999 1 1 0 0 0 0
## 1000 1 1 0 0 0 0
## 1001 1 1 0 0 0 0
## 1002 1 1 0 0 0 0
## 1003 1 1 0 1 0 1
## 1004 1 1 0 1 0 1
## 1005 1 1 0 1 0 1
## 1006 1 1 0 1 0 1
## 1007 1 1 0 1 0 1
## 1008 1 1 0 1 0 1
## 1009 1 1 0 0 0 0
## 1010 1 1 0 0 0 1
## 1011 1 1 0 0 0 0
## 1012 1 1 0 1 0 1
## 1013 1 1 0 0 0 0
## 1014 1 1 0 1 0 1
## 1015 1 1 0 0 0 1
## 1016 1 1 0 0 0 1
## 1017 1 1 0 1 0 1
## 1018 1 1 1 0 0 0
## 1019 1 1 0 0 0 0
## 1020 1 1 0 1 0 1
## 1021 1 1 0 1 0 1
## 1022 1 1 0 1 0 1
## 1023 1 1 0 1 0 1
## 1024 1 1 0 1 0 1
## 1025 1 1 1 1 0 0
## 1026 1 1 1 1 0 0
## 1027 1 1 0 1 0 1
## 1028 1 1 0 1 0 1
## 1029 1 1 0 1 0 1
## 1030 1 1 0 1 1 0
## 1031 1 1 0 0 0 0
## 1032 1 1 0 1 1 0
## 1033 1 1 0 1 0 1
## 1034 0 1 0 0 0 1
## 1035 1 1 0 1 0 1
## 1036 1 1 0 1 0 1
## 1037 1 1 0 1 0 1
## 1038 1 1 0 1 0 1
## 1039 1 1 0 0 0 0
## 1040 1 1 0 1 0 0
## 1041 1 1 0 1 0 1
## 1042 1 1 0 1 0 1
## 1043 1 1 0 1 0 1
## 1044 0 1 0 0 0 1
## 1045 1 1 0 1 0 0
## 1046 1 1 0 0 0 0
## 1047 1 1 0 0 0 1
## 1048 1 1 0 0 0 0
## 1049 1 1 0 0 0 0
## 1050 1 1 0 0 0 0
## 1051 1 1 0 0 0 0
## 1052 1 1 0 0 0 1
## 1053 1 1 0 1 0 1
## 1054 1 1 0 1 0 1
## 1055 1 1 0 1 0 1
## 1056 1 1 0 1 0 0
## 1057 1 1 0 1 0 1
## 1058 1 1 0 1 0 1
## 1059 1 1 0 1 0 1
## 1060 0 1 0 1 0 0
## 1061 1 1 0 1 0 1
## 1062 1 1 0 1 0 0
## 1063 0 1 0 0 0 1
## 1064 1 1 0 0 0 1
## 1065 1 1 0 1 0 1
## 1066 1 1 0 1 0 1
## 1067 1 1 0 1 0 1
## 1068 1 1 0 1 0 0
## 1069 1 1 0 1 0 1
## 1070 1 1 0 1 0 1
## 1071 1 1 0 1 0 1
## 1072 1 1 0 1 0 0
## 1073 1 1 0 1 0 0
## 1074 1 1 0 1 0 0
## 1075 1 1 0 1 0 1
## 1076 1 1 0 0 0 0
## 1077 1 1 0 0 0 0
## 1078 1 1 0 1 0 0
## 1079 1 1 0 0 0 1
## 1080 1 1 0 1 0 1
## 1081 0 1 0 0 0 1
## 1082 1 1 0 1 0 0
## 1083 1 1 0 1 0 1
## 1084 1 1 0 1 0 1
## 1085 1 1 0 1 0 1
## 1086 1 1 0 0 0 1
## 1087 1 1 0 0 0 1
## 1088 1 1 0 1 0 1
## 1089 1 1 0 1 0 0
## 1090 1 1 0 1 0 1
## 1091 1 1 0 1 0 1
## 1092 1 1 0 0 0 0
## 1093 1 1 0 1 0 0
## 1094 1 1 0 0 0 0
## 1095 0 1 0 1 0 0
## 1096 1 1 0 1 0 0
## 1097 1 1 0 1 0 1
## 1098 0 1 0 1 0 0
## 1099 1 1 0 0 0 0
## 1100 1 1 0 1 0 1
## 1101 1 1 0 1 0 1
## 1102 1 1 0 0 0 0
## 1103 1 1 0 0 0 0
## 1104 1 1 0 1 0 1
## 1105 1 1 0 0 0 0
## 1106 1 1 0 1 0 0
## 1107 1 1 0 0 0 0
## 1108 1 1 0 0 0 1
## 1109 1 1 0 0 0 0
## 1110 1 1 0 0 0 0
## 1111 1 1 0 0 0 0
## 1112 1 1 0 1 0 1
## 1113 1 1 0 1 0 1
## 1114 1 1 0 1 0 1
## 1115 1 1 0 1 0 1
## 1116 1 1 0 1 0 1
## 1117 1 1 0 1 0 1
## 1118 1 1 0 1 1 0
## 1119 1 1 0 1 1 0
## 1120 1 1 0 0 0 0
## 1121 1 1 0 1 0 1
## 1122 1 1 0 1 0 1
## 1123 1 1 0 1 0 1
## 1124 1 1 0 1 0 1
## 1125 1 1 0 0 0 0
## 1126 1 1 0 1 0 0
## 1127 1 1 0 1 1 0
## 1128 1 1 0 0 0 1
## 1129 1 1 0 0 0 0
## 1130 1 1 1 1 0 1
## 1131 1 1 0 1 0 1
## 1132 1 1 0 1 0 1
## 1133 1 1 0 1 0 1
## 1134 1 1 0 1 0 1
## 1135 1 1 0 1 0 1
## 1136 1 1 0 1 0 1
## 1137 1 1 0 1 1 1
## 1138 1 1 0 1 0 1
## 1139 1 1 0 1 0 0
## 1140 1 1 0 1 0 1
## 1141 1 1 0 1 0 1
## 1142 1 1 0 1 0 1
## 1143 1 1 0 1 0 1
## 1144 0 1 0 0 0 1
## 1145 1 1 0 0 0 0
## 1146 1 1 0 0 0 0
## 1147 1 1 0 0 0 0
## 1148 1 1 0 1 0 1
## 1149 1 1 0 0 0 0
## 1150 1 1 0 0 0 1
## 1151 1 1 0 1 0 1
## 1152 1 1 0 0 0 1
## 1153 1 1 0 1 0 1
## 1154 1 1 0 1 0 1
## 1155 1 1 0 1 0 0
## 1156 1 1 0 1 0 0
## 1157 1 1 0 0 0 0
## 1158 1 1 0 1 0 1
## 1159 1 1 0 0 0 1
## 1160 1 1 0 1 0 1
## 1161 1 1 0 1 0 1
## 1162 1 1 0 1 0 1
## 1163 1 1 1 1 0 0
## 1164 1 1 0 0 0 0
## 1165 0 1 0 1 0 1
## 1166 1 1 0 0 0 0
## 1167 1 1 0 1 0 1
## 1168 1 1 0 1 0 0
## 1169 1 1 0 0 0 0
## 1170 1 1 0 1 0 1
## 1171 1 1 0 1 0 1
## 1172 1 1 0 1 0 1
## 1173 1 1 0 1 0 1
## 1174 1 1 0 0 0 0
## 1175 1 1 0 1 0 1
## 1176 1 1 0 0 0 0
## 1177 1 1 0 1 0 1
## 1178 1 1 0 1 0 1
## 1179 1 1 0 1 0 1
## 1180 0 1 0 0 0 1
## 1181 1 1 0 1 0 1
## 1182 0 1 0 0 0 1
## 1183 1 1 0 0 0 0
## 1184 1 1 0 0 0 0
## 1185 1 1 0 0 0 1
## 1186 0 1 0 0 0 0
## 1187 1 1 0 1 0 1
## 1188 1 1 0 1 0 1
## 1189 1 1 0 1 0 1
## 1190 1 1 0 1 0 1
## 1191 1 1 0 1 0 1
## 1192 1 1 0 1 0 1
## 1193 1 1 0 1 0 1
## 1194 1 1 0 1 0 1
## 1195 0 1 0 1 0 1
## 1196 1 1 0 1 0 1
## 1197 1 1 0 1 0 1
## 1198 1 1 0 1 0 1
## 1199 1 1 0 1 0 1
## 1200 1 1 0 1 0 1
## 1201 1 1 0 1 0 1
## 1202 1 1 1 1 0 0
## 1203 1 1 0 1 0 1
## 1204 1 1 0 1 0 1
## 1205 1 1 1 1 0 0
## 1206 1 1 0 1 0 1
## 1207 1 1 0 1 0 1
## 1208 1 1 0 1 0 1
## 1209 0 1 0 0 0 0
## 1210 1 1 0 1 0 1
## 1211 1 1 0 1 0 0
## 1212 1 1 0 1 0 1
## 1213 1 1 1 1 0 1
## 1214 1 1 1 1 0 1
## 1215 1 1 0 1 0 1
## 1216 1 1 0 0 0 0
## 1217 1 1 0 1 0 1
## 1218 1 1 0 1 0 1
## 1219 1 1 0 1 0 0
## 1220 1 1 0 1 0 1
## 1221 0 1 0 0 0 0
## 1222 1 1 1 1 0 1
## 1223 0 1 0 0 0 1
## 1224 1 1 0 1 0 0
## 1225 1 1 0 1 0 1
## 1226 0 0 0 0 0 0
## 1227 1 1 0 1 0 1
## 1228 1 1 1 1 0 0
## 1229 1 1 0 1 0 1
## 1230 1 1 0 1 0 1
## 1231 1 1 0 1 0 1
## 1232 0 1 0 1 0 1
## 1233 1 1 1 1 0 0
## 1234 1 1 0 1 0 0
## 1235 1 1 0 1 0 0
## 1236 1 1 0 1 0 1
## 1237 1 1 0 1 0 1
## 1238 1 1 0 0 0 0
## 1239 1 1 0 1 0 1
## 1240 1 1 0 0 0 1
## 1241 1 1 0 0 0 1
## 1242 1 1 0 1 0 1
## 1243 1 1 0 0 0 1
## 1244 1 1 0 0 0 1
## 1245 1 1 0 1 0 1
## 1246 1 1 0 1 0 1
## 1247 0 1 0 0 0 0
## 1248 1 1 0 1 0 1
## 1249 1 1 0 1 0 1
## 1250 1 1 0 1 0 1
## 1251 1 1 0 1 0 1
## 1252 1 1 0 0 0 1
## 1253 1 1 0 1 0 1
## 1254 1 1 0 1 0 1
## 1255 1 1 0 1 0 1
## 1256 1 1 0 1 0 1
## 1257 1 1 0 1 0 1
## 1258 1 1 0 1 0 1
## 1259 1 1 0 1 0 1
## 1260 1 1 0 1 0 1
## 1261 1 1 0 1 0 1
## 1262 1 1 0 1 0 1
## 1263 1 1 0 1 0 1
## 1264 1 1 0 0 0 1
## 1265 1 1 0 0 0 1
## 1266 1 1 0 0 0 0
## 1267 1 1 0 0 0 0
## 1268 1 1 1 1 0 0
## 1269 1 1 0 1 0 1
## 1270 1 1 0 1 0 1
## 1271 1 1 0 1 0 0
## 1272 1 1 0 1 0 0
## 1273 1 1 0 0 0 1
## 1274 1 1 0 0 0 1
## 1275 1 1 0 1 0 1
## 1276 1 1 0 1 0 1
## 1277 1 1 0 1 0 0
## 1278 1 1 0 1 0 1
## 1279 1 1 0 1 0 1
## 1280 1 1 0 1 0 1
## 1281 1 1 0 1 0 1
## 1282 1 1 0 1 0 0
## 1283 1 1 0 1 0 0
## 1284 1 1 0 1 0 1
## 1285 0 1 0 0 0 1
## 1286 1 1 1 1 0 1
## 1287 1 1 0 0 0 0
## 1288 1 1 0 0 0 0
## 1289 1 1 1 1 0 1
## 1290 1 1 0 0 0 0
## 1291 1 1 0 1 0 1
## 1292 1 1 1 0 0 1
## 1293 0 1 0 0 0 0
## 1294 1 1 0 0 0 1
## 1295 1 1 0 1 0 0
## 1296 1 1 0 0 0 0
## 1297 1 1 0 0 0 0
## 1298 1 1 0 1 0 1
## 1299 1 1 0 1 0 1
## 1300 1 1 0 1 0 1
## 1301 1 1 0 1 0 1
## 1302 1 1 0 1 0 1
## 1303 1 1 0 1 0 1
## 1304 1 1 0 0 0 0
## 1305 1 1 0 1 0 1
## 1306 1 1 0 1 0 1
## 1307 1 1 0 1 0 1
## 1308 1 1 0 1 0 1
## 1309 1 1 0 1 0 1
## 1310 1 1 0 1 0 1
## 1311 1 1 0 1 0 1
## 1312 1 1 0 1 0 1
## 1313 1 1 0 1 0 1
## 1314 1 1 0 1 0 1
## 1315 1 1 0 1 0 1
## 1316 1 1 0 1 0 1
## 1317 1 1 0 1 0 1
## 1318 1 1 0 1 0 1
## 1319 0 1 0 1 0 0
## 1320 0 1 0 1 0 0
## 1321 1 1 0 0 0 0
## 1322 1 1 0 1 0 0
## 1323 1 1 0 1 0 1
## 1324 0 1 0 1 0 1
## 1325 1 1 0 0 0 1
## 1326 1 1 1 1 0 1
## 1327 1 1 0 0 0 1
## 1328 1 1 1 1 0 1
## 1329 1 1 0 1 0 0
## 1330 0 1 0 0 0 1
## 1331 1 1 0 1 1 1
## 1332 1 1 0 1 0 1
## 1333 1 1 0 1 0 0
## 1334 1 1 0 1 0 1
## 1335 1 1 0 1 1 1
## 1336 1 1 0 0 0 0
## 1337 1 1 0 0 0 0
## 1338 1 1 0 0 0 0
## 1339 1 1 1 1 0 1
## 1340 1 1 0 1 0 1
## 1341 1 1 0 1 0 0
## 1342 1 1 0 1 0 1
## 1343 1 1 0 1 0 1
## 1344 1 1 1 1 0 0
## 1345 1 1 0 0 0 0
## 1346 1 1 0 1 0 0
## 1347 1 1 0 1 0 0
## 1348 1 1 0 1 0 0
## 1349 1 1 0 1 0 1
## 1350 1 1 0 0 0 1
## 1351 1 1 0 0 0 0
## 1352 1 1 0 0 0 0
## 1353 1 1 0 1 0 1
## 1354 1 1 1 1 0 1
## 1355 0 1 0 0 0 0
## 1356 1 1 0 0 0 0
## 1357 1 1 0 1 0 1
## 1358 1 1 0 1 0 0
## 1359 1 1 0 1 0 0
## 1360 1 1 0 1 0 1
## 1361 1 1 1 1 0 1
## 1362 1 1 0 1 0 1
## 1363 1 1 0 1 0 1
## 1364 1 1 0 1 0 1
## 1365 1 1 0 1 0 1
## 1366 1 1 0 1 0 0
## 1367 1 1 0 1 0 0
## 1368 1 1 0 1 0 1
## 1369 1 1 0 1 0 1
## 1370 1 1 0 1 0 1
## 1371 1 1 0 1 0 1
## 1372 1 1 0 1 0 1
## 1373 1 1 0 1 0 1
## 1374 1 1 0 1 0 1
## 1375 0 1 0 1 0 1
## 1376 1 1 0 1 0 1
## 1377 1 1 0 1 0 1
## 1378 1 1 0 1 0 1
## 1379 1 1 0 1 0 1
## 1380 1 1 0 1 0 1
## 1381 1 1 0 1 0 1
## 1382 1 1 0 0 0 1
## 1383 1 1 0 1 0 1
## 1384 1 1 0 0 0 1
## 1385 1 1 0 1 0 1
## 1386 1 1 0 1 0 1
## 1387 1 1 0 1 0 1
## 1388 1 1 0 1 0 1
## 1389 1 1 0 1 0 1
## 1390 1 1 0 1 0 1
## 1391 1 1 0 1 0 1
## 1392 1 1 0 1 0 1
## 1393 1 1 0 0 0 0
## 1394 1 1 0 1 0 1
## 1395 1 1 0 1 0 1
## 1396 1 1 0 1 0 1
## 1397 1 1 0 1 0 1
## 1398 1 1 0 1 0 1
## 1399 1 1 0 0 0 1
## 1400 1 1 0 1 0 0
## 1401 1 1 0 0 0 1
## 1402 1 1 0 0 0 0
## 1403 1 1 0 0 0 1
## 1404 1 1 0 1 0 1
## 1405 1 1 0 1 0 0
## 1406 1 1 0 0 0 0
## 1407 1 1 0 0 0 0
## 1408 1 1 0 1 0 1
## 1409 1 1 0 1 0 0
## 1410 1 1 0 0 0 0
## 1411 1 1 0 1 0 1
## 1412 1 1 0 1 0 1
## 1413 1 1 0 1 0 1
## 1414 1 1 0 1 0 0
## 1415 1 1 0 0 0 0
## 1416 1 1 0 0 0 1
## 1417 1 1 0 1 0 0
## 1418 1 1 0 0 0 1
## 1419 1 1 0 1 0 0
## 1420 1 1 1 1 0 1
## 1421 1 1 0 0 0 1
## 1422 1 1 0 0 0 1
## 1423 1 1 0 1 0 1
## 1424 1 1 0 1 0 1
## 1425 1 1 0 0 0 1
## 1426 1 1 0 0 0 1
## 1427 1 1 0 0 0 1
## 1428 1 1 0 0 0 0
## 1429 1 1 0 0 0 1
## 1430 1 1 0 0 0 1
## 1431 1 1 0 0 0 1
## 1432 1 1 0 1 0 1
## 1433 1 1 0 0 0 0
## 1434 1 1 0 1 0 1
## 1435 1 1 0 1 0 0
## 1436 1 1 0 0 0 0
## 1437 1 1 0 1 0 1
## 1438 1 1 0 0 0 0
## 1439 1 1 0 1 0 0
## 1440 1 1 0 1 0 1
## 1441 1 1 0 1 0 0
## 1442 0 1 0 1 0 1
## 1443 1 1 0 0 0 0
## 1444 1 1 0 0 0 1
## 1445 1 1 0 1 0 0
## 1446 1 1 0 1 0 0
## 1447 1 1 1 1 0 1
## 1448 1 1 0 1 0 1
## 1449 1 1 0 1 0 0
## 1450 1 1 1 1 0 1
## 1451 1 1 1 0 0 0
## 1452 1 1 0 1 0 1
## 1453 1 1 0 1 0 1
## 1454 1 1 0 0 0 0
## 1455 1 1 0 1 0 1
## 1456 1 1 0 1 0 1
## 1457 1 1 0 1 0 0
## 1458 1 1 0 1 0 0
## 1459 1 1 0 1 0 0
## 1460 0 1 0 0 0 1
## 1461 1 1 0 0 0 1
## 1462 1 1 0 0 0 0
## 1463 1 1 0 0 0 1
## 1464 0 1 1 0 0 0
## 1465 1 1 0 0 0 0
## 1466 1 1 0 0 0 1
## 1467 1 1 0 0 0 0
## 1468 1 1 0 0 0 0
## 1469 1 1 0 1 0 0
## 1470 1 1 0 0 0 0
## 1471 1 1 0 0 0 0
## 1472 1 1 0 1 0 1
## 1473 1 1 0 1 0 1
## 1474 1 1 0 0 0 0
## 1475 1 1 0 1 0 1
## 1476 1 1 0 1 0 0
## 1477 1 1 0 1 0 0
## 1478 0 1 0 1 0 0
## 1479 1 1 0 1 0 1
## 1480 1 1 0 1 0 1
## 1481 1 1 0 1 0 1
## 1482 1 1 0 1 0 1
## 1483 1 1 0 1 0 1
## 1484 1 1 0 1 0 1
## 1485 1 1 0 0 0 0
## 1486 1 1 0 1 0 1
## 1487 1 1 0 1 0 1
## 1488 1 1 0 1 0 1
## 1489 1 1 0 1 0 1
## 1490 1 1 0 1 0 1
## 1491 1 1 0 1 0 1
## 1492 1 1 0 0 0 1
## 1493 1 1 0 1 0 1
## 1494 1 1 0 1 0 1
## 1495 1 1 0 1 0 1
## 1496 1 1 0 0 0 0
## 1497 1 1 0 0 0 0
## 1498 1 1 0 0 0 0
## 1499 1 1 0 0 0 0
## 1500 1 1 0 1 0 1
## 1501 1 1 0 0 0 1
## 1502 1 1 0 1 0 1
## 1503 1 1 0 0 0 1
## 1504 1 1 0 1 0 1
## 1505 1 1 1 1 0 1
## 1506 1 1 0 1 0 1
## 1507 1 1 0 1 0 1
## 1508 1 1 0 1 0 1
## 1509 1 1 0 1 0 1
## 1510 1 1 0 1 0 1
## 1511 1 1 0 1 0 1
## 1512 1 1 0 1 0 1
## 1513 1 1 0 0 0 1
## 1514 1 1 0 1 0 1
## 1515 1 1 0 1 0 1
## 1516 1 1 0 1 0 1
## 1517 1 1 0 0 0 1
## 1518 1 1 0 1 0 1
## 1519 1 1 0 0 0 1
## 1520 1 1 0 0 0 1
## 1521 1 1 0 1 0 1
## 1522 1 1 0 1 0 1
## 1523 1 1 0 1 0 1
## 1524 1 1 0 1 1 0
## 1525 1 1 0 1 0 0
## 1526 1 1 0 1 0 0
## 1527 1 1 0 1 0 0
## 1528 1 1 0 1 0 0
## 1529 1 1 0 0 0 1
## 1530 0 1 0 0 0 1
## 1531 1 1 0 1 0 1
## 1532 1 1 0 1 0 1
## 1533 1 1 0 0 0 0
## 1534 1 1 0 1 0 0
## 1535 1 1 0 1 0 0
## 1536 1 1 0 1 0 0
## 1537 1 1 0 1 0 1
## 1538 1 1 0 1 0 1
## hv_manual_off_gov hv_manual_gov hv_manual_work_email no_of_vf
## 1 0 1 0 7
## 2 0 0 1 4
## 3 0 0 0 3
## 4 0 0 0 3
## 5 1 1 0 7
## 6 0 0 0 3
## 7 0 0 0 3
## 8 0 1 0 5
## 9 1 1 0 7
## 10 1 1 1 6
## 11 1 1 0 8
## 12 0 0 1 3
## 13 0 0 1 4
## 14 0 1 0 5
## 15 1 1 0 7
## 16 1 1 1 9
## 17 1 1 1 6
## 18 1 1 0 5
## 19 0 0 0 2
## 20 1 1 0 7
## 21 1 1 0 6
## 22 0 0 0 3
## 23 1 1 0 8
## 24 0 0 0 4
## 25 1 1 1 6
## 26 1 1 0 7
## 27 0 0 1 3
## 28 0 0 0 3
## 29 1 1 0 7
## 30 0 0 1 3
## 31 0 0 0 4
## 32 1 1 0 7
## 33 1 1 1 8
## 34 1 1 0 8
## 35 1 1 0 7
## 36 1 1 0 5
## 37 0 0 0 4
## 38 1 1 0 4
## 39 1 1 0 7
## 40 1 1 0 8
## 41 1 1 0 8
## 42 0 1 0 5
## 43 1 1 0 7
## 44 1 1 0 7
## 45 1 1 0 7
## 46 0 1 0 5
## 47 1 1 0 7
## 48 1 1 0 7
## 49 0 0 0 2
## 50 1 1 0 7
## 51 1 1 0 8
## 52 0 0 0 4
## 53 1 1 0 7
## 54 0 0 1 4
## 55 1 1 0 3
## 56 1 1 1 6
## 57 1 1 0 8
## 58 1 1 0 7
## 59 1 1 0 7
## 60 1 1 0 7
## 61 0 0 0 4
## 62 0 0 1 4
## 63 1 1 1 6
## 64 1 1 0 5
## 65 1 1 0 8
## 66 1 1 0 7
## 67 1 1 0 4
## 68 1 1 0 7
## 69 0 0 1 4
## 70 0 0 1 4
## 71 0 0 0 2
## 72 1 1 0 7
## 73 1 1 0 7
## 74 1 1 0 7
## 75 1 1 0 7
## 76 1 1 0 5
## 77 0 1 0 5
## 78 1 1 0 5
## 79 1 1 0 6
## 80 1 1 0 8
## 81 0 0 0 2
## 82 1 1 0 3
## 83 0 0 0 4
## 84 1 1 0 7
## 85 0 0 0 4
## 86 1 1 0 5
## 87 0 0 0 3
## 88 0 0 0 2
## 89 1 1 0 7
## 90 1 1 0 8
## 91 1 1 0 7
## 92 1 1 0 8
## 93 1 1 0 7
## 94 1 1 0 7
## 95 1 1 0 7
## 96 1 1 0 7
## 97 1 1 0 3
## 98 1 1 0 3
## 99 1 1 0 3
## 100 1 1 0 4
## 101 1 1 1 6
## 102 1 1 0 5
## 103 1 1 0 4
## 104 0 0 1 4
## 105 0 0 0 2
## 106 0 0 0 2
## 107 1 1 0 4
## 108 0 0 0 0
## 109 1 1 0 4
## 110 0 0 0 4
## 111 1 1 0 4
## 112 0 1 0 5
## 113 0 0 0 4
## 114 1 1 0 5
## 115 1 1 0 7
## 116 0 0 0 4
## 117 1 1 0 7
## 118 1 1 0 7
## 119 1 1 0 7
## 120 1 1 0 7
## 121 1 1 0 7
## 122 1 1 0 4
## 123 1 1 0 8
## 124 1 1 0 7
## 125 0 0 0 2
## 126 1 1 0 5
## 127 1 1 0 4
## 128 0 0 1 3
## 129 1 1 0 8
## 130 1 1 0 9
## 131 0 0 0 4
## 132 0 0 1 4
## 133 0 0 0 4
## 134 0 0 0 4
## 135 1 1 0 3
## 136 1 1 0 4
## 137 1 1 0 4
## 138 1 1 0 7
## 139 0 0 1 3
## 140 0 0 1 4
## 141 1 1 0 5
## 142 0 0 0 2
## 143 0 0 0 4
## 144 1 1 0 4
## 145 1 1 0 9
## 146 1 1 0 4
## 147 1 1 0 3
## 148 1 1 0 4
## 149 1 1 0 7
## 150 1 1 0 7
## 151 0 0 0 4
## 152 1 1 0 6
## 153 1 1 0 7
## 154 1 1 0 7
## 155 1 1 0 6
## 156 0 0 1 4
## 157 1 1 0 3
## 158 0 0 1 4
## 159 0 0 1 3
## 160 0 1 0 4
## 161 0 1 0 4
## 162 0 1 0 4
## 163 1 1 0 5
## 164 0 0 0 3
## 165 0 0 0 3
## 166 1 1 0 6
## 167 1 1 0 4
## 168 1 1 0 7
## 169 1 1 0 7
## 170 1 1 0 4
## 171 0 0 0 2
## 172 1 1 0 4
## 173 1 1 0 7
## 174 0 1 0 4
## 175 1 1 0 7
## 176 1 1 0 4
## 177 1 1 1 6
## 178 1 1 0 7
## 179 1 1 0 8
## 180 1 1 0 9
## 181 1 1 0 9
## 182 0 0 1 4
## 183 1 1 0 7
## 184 1 1 1 9
## 185 1 1 0 6
## 186 0 0 0 4
## 187 0 0 0 4
## 188 0 0 0 4
## 189 0 0 0 4
## 190 0 0 0 4
## 191 0 0 0 4
## 192 1 1 0 6
## 193 1 1 0 4
## 194 1 1 0 4
## 195 1 1 1 9
## 196 0 0 1 3
## 197 1 1 0 4
## 198 1 1 0 4
## 199 1 1 0 5
## 200 1 1 0 7
## 201 1 1 0 4
## 202 1 1 0 6
## 203 1 1 0 7
## 204 0 0 0 1
## 205 0 0 0 2
## 206 0 0 1 4
## 207 1 1 0 4
## 208 1 1 0 5
## 209 0 0 0 2
## 210 1 1 0 3
## 211 1 1 0 3
## 212 1 1 0 3
## 213 0 1 0 5
## 214 0 0 0 3
## 215 0 1 1 6
## 216 0 0 0 2
## 217 0 0 0 2
## 218 0 0 0 2
## 219 1 1 0 8
## 220 1 1 0 6
## 221 1 1 0 5
## 222 1 1 0 5
## 223 1 1 0 5
## 224 1 1 0 8
## 225 1 1 0 8
## 226 0 0 0 4
## 227 0 0 0 1
## 228 0 0 1 3
## 229 1 1 0 6
## 230 1 1 0 7
## 231 0 0 1 4
## 232 1 1 0 4
## 233 1 1 0 4
## 234 1 1 0 4
## 235 1 1 0 4
## 236 1 1 0 4
## 237 0 0 0 3
## 238 0 0 0 3
## 239 1 1 0 4
## 240 1 1 0 6
## 241 1 1 0 7
## 242 1 1 0 7
## 243 0 0 0 2
## 244 0 0 0 2
## 245 0 0 0 4
## 246 0 0 0 2
## 247 1 1 0 7
## 248 1 1 0 7
## 249 0 0 0 3
## 250 0 0 1 3
## 251 1 1 0 8
## 252 1 1 1 7
## 253 1 1 1 7
## 254 1 1 1 7
## 255 0 0 0 3
## 256 1 1 0 8
## 257 1 1 0 6
## 258 1 1 1 9
## 259 0 1 1 7
## 260 1 1 0 3
## 261 1 1 0 4
## 262 0 0 0 2
## 263 1 1 0 6
## 264 1 1 0 4
## 265 0 0 0 2
## 266 1 1 0 8
## 267 1 1 0 8
## 268 0 0 0 2
## 269 0 1 0 8
## 270 0 1 0 8
## 271 1 1 0 7
## 272 1 1 0 7
## 273 0 0 0 4
## 274 1 1 0 6
## 275 1 1 0 7
## 276 1 1 0 7
## 277 0 0 0 2
## 278 0 0 0 3
## 279 0 0 1 4
## 280 1 1 0 7
## 281 1 1 0 5
## 282 0 0 0 2
## 283 1 1 0 8
## 284 1 1 0 8
## 285 0 0 1 3
## 286 0 0 0 2
## 287 1 1 1 9
## 288 1 1 0 3
## 289 0 0 0 3
## 290 0 0 1 4
## 291 1 1 0 4
## 292 1 1 0 5
## 293 1 1 0 7
## 294 1 1 0 7
## 295 1 1 0 6
## 296 0 0 1 3
## 297 1 1 0 6
## 298 0 1 1 6
## 299 1 1 0 8
## 300 1 1 0 7
## 301 1 1 0 7
## 302 1 1 0 7
## 303 1 1 0 7
## 304 1 1 0 7
## 305 1 1 0 7
## 306 1 1 0 6
## 307 0 0 0 1
## 308 0 0 0 3
## 309 0 0 1 4
## 310 0 0 0 2
## 311 1 1 0 8
## 312 0 0 0 2
## 313 0 0 0 3
## 314 1 1 0 8
## 315 0 0 0 3
## 316 0 0 0 2
## 317 1 1 1 7
## 318 1 1 1 7
## 319 0 0 1 3
## 320 1 1 0 5
## 321 0 0 0 1
## 322 0 0 0 1
## 323 0 0 0 2
## 324 1 1 0 4
## 325 0 0 0 2
## 326 1 1 0 4
## 327 1 1 0 5
## 328 1 1 0 5
## 329 0 1 0 8
## 330 1 1 0 8
## 331 1 1 1 9
## 332 1 1 0 8
## 333 0 0 0 3
## 334 0 0 0 4
## 335 1 1 1 8
## 336 0 1 0 5
## 337 0 0 0 2
## 338 0 0 0 2
## 339 1 1 0 8
## 340 1 1 0 7
## 341 1 1 0 8
## 342 0 0 1 3
## 343 0 0 1 4
## 344 0 0 0 3
## 345 1 1 1 7
## 346 1 1 0 7
## 347 1 1 0 8
## 348 0 0 0 3
## 349 0 0 0 3
## 350 1 1 1 8
## 351 0 0 0 1
## 352 0 0 0 1
## 353 1 1 0 4
## 354 0 0 1 3
## 355 0 0 1 3
## 356 0 0 1 4
## 357 1 1 0 4
## 358 0 1 0 6
## 359 1 1 0 4
## 360 0 1 1 6
## 361 1 1 0 8
## 362 0 1 0 6
## 363 0 0 0 2
## 364 0 0 0 3
## 365 1 1 0 5
## 366 0 0 0 4
## 367 1 1 0 4
## 368 0 1 1 6
## 369 1 1 0 7
## 370 1 1 0 8
## 371 0 1 0 4
## 372 1 1 0 9
## 373 1 1 0 4
## 374 0 0 1 4
## 375 0 0 1 3
## 376 1 1 0 7
## 377 1 1 0 7
## 378 1 1 0 8
## 379 0 0 0 3
## 380 0 0 0 4
## 381 1 1 0 8
## 382 1 1 0 8
## 383 1 1 0 8
## 384 1 1 0 6
## 385 1 1 0 8
## 386 1 1 0 8
## 387 1 1 0 8
## 388 1 1 0 8
## 389 1 1 0 8
## 390 1 1 0 8
## 391 1 1 0 8
## 392 0 0 0 2
## 393 0 0 0 4
## 394 0 0 0 4
## 395 0 0 1 4
## 396 1 1 0 7
## 397 1 1 0 7
## 398 0 0 0 2
## 399 0 1 0 4
## 400 0 0 0 2
## 401 0 0 0 3
## 402 0 0 0 2
## 403 0 0 0 2
## 404 1 1 0 5
## 405 0 0 0 4
## 406 0 0 0 1
## 407 0 1 0 6
## 408 1 1 1 8
## 409 0 0 0 3
## 410 0 0 0 2
## 411 0 0 0 4
## 412 0 0 0 2
## 413 0 0 0 4
## 414 0 0 0 3
## 415 0 0 0 4
## 416 0 0 0 4
## 417 0 0 0 3
## 418 0 0 1 3
## 419 0 0 0 3
## 420 0 0 0 3
## 421 0 0 0 3
## 422 0 0 0 2
## 423 0 1 0 6
## 424 0 0 0 3
## 425 0 0 0 3
## 426 1 1 0 6
## 427 0 0 1 4
## 428 1 1 0 6
## 429 0 0 1 3
## 430 1 1 0 7
## 431 0 0 0 4
## 432 0 0 0 3
## 433 0 0 0 4
## 434 1 1 0 7
## 435 1 1 1 8
## 436 1 1 0 7
## 437 0 0 0 4
## 438 0 0 0 5
## 439 0 1 0 5
## 440 0 1 0 6
## 441 0 0 0 3
## 442 1 1 0 7
## 443 1 1 1 8
## 444 0 0 0 3
## 445 0 0 0 3
## 446 0 0 0 1
## 447 0 0 0 2
## 448 1 1 0 9
## 449 1 1 0 6
## 450 0 0 0 3
## 451 0 1 0 6
## 452 1 1 1 6
## 453 0 0 0 4
## 454 0 0 1 5
## 455 0 1 0 6
## 456 0 0 0 4
## 457 0 0 0 3
## 458 0 0 0 4
## 459 0 0 0 4
## 460 0 0 0 3
## 461 0 0 1 3
## 462 0 0 0 2
## 463 0 0 0 4
## 464 0 1 0 4
## 465 0 0 0 4
## 466 0 1 0 6
## 467 0 0 1 4
## 468 1 1 0 5
## 469 1 1 0 7
## 470 1 1 0 7
## 471 1 1 1 7
## 472 0 0 0 4
## 473 0 1 0 4
## 474 0 1 0 7
## 475 1 1 1 8
## 476 0 0 1 4
## 477 0 1 0 7
## 478 0 0 0 3
## 479 0 1 0 7
## 480 0 0 1 3
## 481 1 1 1 7
## 482 1 1 1 7
## 483 1 1 0 5
## 484 0 0 0 4
## 485 1 1 1 10
## 486 1 1 1 9
## 487 0 1 0 7
## 488 1 1 0 6
## 489 0 0 0 4
## 490 1 1 0 7
## 491 1 1 0 8
## 492 0 0 0 3
## 493 0 0 0 3
## 494 0 0 0 3
## 495 0 0 1 3
## 496 1 1 0 6
## 497 1 1 0 6
## 498 0 0 0 4
## 499 0 1 0 7
## 500 0 0 0 4
## 501 1 1 0 4
## 502 1 1 0 5
## 503 1 1 1 8
## 504 0 0 1 4
## 505 1 1 0 4
## 506 0 0 0 4
## 507 1 1 0 4
## 508 1 1 0 6
## 509 1 1 0 6
## 510 1 1 0 6
## 511 0 1 0 6
## 512 1 1 0 7
## 513 1 1 0 7
## 514 1 1 0 5
## 515 1 1 0 7
## 516 0 0 0 4
## 517 0 0 0 4
## 518 1 1 0 7
## 519 0 0 1 5
## 520 0 0 0 4
## 521 1 1 1 8
## 522 0 0 0 3
## 523 1 1 0 8
## 524 1 1 0 3
## 525 0 0 0 3
## 526 0 1 0 6
## 527 1 1 0 7
## 528 0 1 0 4
## 529 1 1 0 7
## 530 0 1 0 6
## 531 1 1 0 6
## 532 1 1 0 9
## 533 1 1 0 8
## 534 0 0 0 1
## 535 1 1 0 6
## 536 0 1 0 6
## 537 0 0 0 4
## 538 0 0 0 4
## 539 1 1 0 5
## 540 0 0 0 4
## 541 1 1 0 5
## 542 0 1 0 6
## 543 0 0 1 4
## 544 0 0 0 4
## 545 0 0 0 4
## 546 0 0 0 4
## 547 0 1 0 6
## 548 0 0 1 3
## 549 0 0 1 3
## 550 1 1 0 7
## 551 1 1 0 7
## 552 1 1 0 7
## 553 0 1 0 7
## 554 0 0 1 4
## 555 0 0 1 4
## 556 0 0 1 4
## 557 0 0 1 4
## 558 0 0 1 4
## 559 0 0 1 4
## 560 0 0 1 4
## 561 0 0 1 4
## 562 1 1 0 7
## 563 1 1 0 7
## 564 0 0 1 4
## 565 0 0 0 2
## 566 0 0 1 4
## 567 1 1 0 7
## 568 0 0 0 2
## 569 0 0 1 4
## 570 0 0 1 4
## 571 0 0 1 4
## 572 0 1 0 5
## 573 0 1 0 4
## 574 1 1 0 7
## 575 1 1 0 7
## 576 1 1 0 7
## 577 1 1 0 7
## 578 0 0 0 4
## 579 0 0 0 4
## 580 0 0 0 4
## 581 0 1 0 7
## 582 1 1 0 6
## 583 0 0 0 2
## 584 0 1 0 5
## 585 0 0 0 4
## 586 0 0 0 4
## 587 0 0 0 4
## 588 0 0 0 4
## 589 0 0 0 4
## 590 1 1 1 9
## 591 1 1 0 8
## 592 0 1 0 5
## 593 1 1 0 8
## 594 0 1 0 6
## 595 1 1 0 7
## 596 1 1 0 4
## 597 0 0 0 3
## 598 0 0 0 4
## 599 0 0 0 3
## 600 0 0 0 1
## 601 0 0 0 4
## 602 0 0 0 3
## 603 0 0 0 2
## 604 0 0 0 3
## 605 0 0 1 3
## 606 0 0 1 3
## 607 0 0 0 1
## 608 0 0 1 3
## 609 0 0 1 3
## 610 0 0 0 2
## 611 1 1 0 8
## 612 1 1 0 8
## 613 0 0 0 3
## 614 0 1 0 6
## 615 0 0 1 3
## 616 0 0 1 4
## 617 0 0 0 1
## 618 0 1 1 6
## 619 0 1 1 6
## 620 1 1 0 7
## 621 0 1 1 8
## 622 0 0 0 3
## 623 1 1 0 4
## 624 1 1 0 4
## 625 0 0 0 4
## 626 1 1 0 7
## 627 0 1 1 6
## 628 1 1 0 6
## 629 0 1 0 7
## 630 1 1 1 11
## 631 1 1 0 5
## 632 1 1 0 8
## 633 1 1 0 8
## 634 1 1 0 8
## 635 0 1 1 6
## 636 1 1 1 8
## 637 0 0 0 4
## 638 1 1 0 7
## 639 1 1 0 7
## 640 0 0 0 3
## 641 1 1 0 6
## 642 0 0 0 3
## 643 0 0 0 3
## 644 1 1 1 8
## 645 1 1 0 4
## 646 0 0 1 3
## 647 1 1 0 6
## 648 0 0 0 3
## 649 1 1 1 7
## 650 1 1 1 7
## 651 0 0 0 4
## 652 0 0 0 3
## 653 1 1 0 6
## 654 1 1 0 6
## 655 0 1 0 5
## 656 1 1 0 6
## 657 1 1 1 7
## 658 1 1 1 7
## 659 1 1 1 7
## 660 1 1 1 7
## 661 1 1 1 7
## 662 1 1 1 7
## 663 0 1 0 5
## 664 1 1 0 6
## 665 0 0 0 2
## 666 0 0 0 2
## 667 0 0 0 2
## 668 0 0 0 2
## 669 0 0 0 2
## 670 0 0 0 4
## 671 0 0 0 4
## 672 0 0 0 4
## 673 0 0 0 4
## 674 1 1 0 6
## 675 1 1 0 7
## 676 1 1 0 7
## 677 1 1 0 5
## 678 1 1 0 7
## 679 0 1 0 4
## 680 1 1 0 7
## 681 0 0 0 3
## 682 0 1 0 7
## 683 1 1 0 7
## 684 0 0 0 2
## 685 0 0 0 4
## 686 0 1 0 7
## 687 0 0 0 2
## 688 1 1 0 7
## 689 1 1 0 6
## 690 0 0 0 4
## 691 0 0 0 4
## 692 0 0 0 2
## 693 0 0 0 4
## 694 0 0 0 4
## 695 0 0 0 3
## 696 0 0 0 4
## 697 0 1 0 6
## 698 0 0 0 4
## 699 0 1 0 5
## 700 0 0 0 4
## 701 0 0 0 4
## 702 0 0 0 4
## 703 1 1 0 6
## 704 0 0 0 4
## 705 1 1 0 7
## 706 0 0 0 4
## 707 1 1 1 7
## 708 1 1 1 7
## 709 1 1 0 6
## 710 0 0 0 3
## 711 0 0 0 3
## 712 0 1 0 6
## 713 0 1 0 6
## 714 0 1 0 6
## 715 0 0 1 4
## 716 1 1 0 5
## 717 0 1 0 5
## 718 1 1 0 8
## 719 0 0 0 2
## 720 1 1 0 8
## 721 1 1 0 8
## 722 1 1 0 8
## 723 1 1 0 6
## 724 0 0 0 4
## 725 1 1 0 7
## 726 1 1 0 7
## 727 0 0 0 4
## 728 1 1 0 5
## 729 0 0 0 4
## 730 0 0 0 4
## 731 1 1 1 9
## 732 0 0 0 4
## 733 1 1 0 6
## 734 1 1 0 6
## 735 1 1 0 6
## 736 0 1 0 6
## 737 0 0 0 4
## 738 0 0 0 2
## 739 1 1 0 8
## 740 1 1 0 6
## 741 0 0 0 4
## 742 1 1 0 3
## 743 0 0 1 4
## 744 0 0 1 4
## 745 0 0 1 4
## 746 0 0 0 2
## 747 1 1 0 7
## 748 0 0 0 1
## 749 0 0 0 4
## 750 0 0 1 4
## 751 0 0 1 4
## 752 0 1 0 6
## 753 0 1 0 7
## 754 1 1 0 7
## 755 1 1 0 7
## 756 0 0 0 2
## 757 1 1 0 5
## 758 0 0 0 2
## 759 1 1 0 7
## 760 1 1 1 8
## 761 0 0 0 3
## 762 0 0 0 3
## 763 0 0 0 3
## 764 0 0 0 4
## 765 1 1 0 7
## 766 0 0 0 4
## 767 0 0 0 4
## 768 0 0 0 4
## 769 0 0 0 4
## 770 0 0 0 4
## 771 0 1 0 6
## 772 0 1 0 6
## 773 1 1 0 6
## 774 1 1 0 6
## 775 0 0 0 3
## 776 0 1 0 6
## 777 0 0 0 3
## 778 0 0 0 4
## 779 0 1 0 6
## 780 1 1 1 7
## 781 1 1 1 7
## 782 1 1 1 7
## 783 1 1 1 7
## 784 0 0 0 4
## 785 1 1 0 9
## 786 0 1 0 7
## 787 0 0 0 4
## 788 1 1 0 6
## 789 0 0 0 2
## 790 0 0 0 2
## 791 1 1 0 7
## 792 0 0 1 4
## 793 0 1 0 5
## 794 0 0 0 2
## 795 0 0 0 3
## 796 0 0 0 3
## 797 0 0 0 4
## 798 1 1 0 8
## 799 1 1 0 8
## 800 1 1 0 8
## 801 1 1 0 8
## 802 0 1 0 4
## 803 1 1 0 6
## 804 1 1 0 6
## 805 1 1 0 5
## 806 0 0 0 3
## 807 0 0 0 3
## 808 1 1 0 6
## 809 0 0 0 2
## 810 1 1 0 6
## 811 1 1 0 6
## 812 1 1 0 6
## 813 1 1 0 7
## 814 0 0 1 3
## 815 0 0 0 4
## 816 1 1 0 6
## 817 0 0 0 3
## 818 0 0 0 4
## 819 0 0 0 4
## 820 1 1 0 7
## 821 1 1 0 6
## 822 0 0 0 2
## 823 1 1 0 7
## 824 1 1 1 7
## 825 1 1 0 7
## 826 0 0 0 4
## 827 0 1 0 6
## 828 0 0 0 4
## 829 0 0 0 4
## 830 0 0 0 4
## 831 0 0 0 4
## 832 0 0 0 4
## 833 0 0 0 4
## 834 0 0 0 4
## 835 1 1 0 6
## 836 0 0 0 3
## 837 0 0 0 3
## 838 0 0 0 4
## 839 0 0 0 2
## 840 0 0 0 4
## 841 0 0 1 3
## 842 0 1 0 7
## 843 0 1 0 6
## 844 1 1 0 7
## 845 1 1 0 7
## 846 1 1 0 7
## 847 0 0 0 3
## 848 0 0 0 3
## 849 0 0 0 3
## 850 0 0 0 3
## 851 1 1 0 7
## 852 0 0 0 4
## 853 0 0 0 4
## 854 0 0 0 4
## 855 0 0 0 4
## 856 0 1 0 5
## 857 1 1 0 5
## 858 0 0 0 4
## 859 0 0 0 2
## 860 0 0 0 2
## 861 1 1 0 6
## 862 0 0 0 4
## 863 0 0 0 4
## 864 1 1 1 7
## 865 0 0 0 2
## 866 0 0 0 1
## 867 0 0 0 3
## 868 1 1 1 9
## 869 0 0 0 4
## 870 0 1 1 6
## 871 0 1 1 6
## 872 1 1 0 5
## 873 0 0 0 3
## 874 0 0 0 3
## 875 0 0 0 3
## 876 0 1 1 6
## 877 0 1 0 5
## 878 1 1 1 8
## 879 1 1 0 7
## 880 1 1 0 8
## 881 0 0 0 4
## 882 1 1 0 5
## 883 0 0 1 6
## 884 1 1 0 6
## 885 1 1 0 5
## 886 0 0 0 4
## 887 1 1 0 5
## 888 0 0 0 3
## 889 0 0 0 4
## 890 1 1 1 5
## 891 0 0 0 4
## 892 0 0 0 4
## 893 1 1 0 7
## 894 0 1 0 6
## 895 0 0 0 4
## 896 1 1 0 5
## 897 0 0 1 3
## 898 1 1 1 7
## 899 1 1 0 5
## 900 1 1 0 5
## 901 1 1 0 5
## 902 0 0 1 3
## 903 0 1 0 7
## 904 0 0 0 4
## 905 0 0 0 2
## 906 0 0 0 2
## 907 0 1 0 7
## 908 0 0 0 2
## 909 0 1 1 6
## 910 0 0 0 3
## 911 0 0 0 4
## 912 1 1 0 6
## 913 1 1 1 7
## 914 1 1 0 4
## 915 0 0 0 4
## 916 1 1 0 5
## 917 0 0 0 4
## 918 1 1 0 7
## 919 0 0 0 3
## 920 0 0 0 3
## 921 1 1 0 8
## 922 0 0 0 4
## 923 1 1 0 7
## 924 0 1 0 4
## 925 1 1 1 8
## 926 0 1 0 6
## 927 0 0 0 4
## 928 0 1 0 5
## 929 0 0 0 1
## 930 0 0 0 3
## 931 0 0 1 4
## 932 0 1 0 5
## 933 0 1 0 5
## 934 0 0 0 4
## 935 0 0 0 2
## 936 0 0 0 2
## 937 1 1 0 6
## 938 0 0 0 3
## 939 0 1 1 6
## 940 0 0 0 4
## 941 0 0 1 3
## 942 1 1 0 7
## 943 0 0 0 3
## 944 1 1 0 6
## 945 1 1 0 6
## 946 0 0 0 3
## 947 0 1 0 4
## 948 1 1 0 7
## 949 0 0 0 2
## 950 1 1 0 5
## 951 0 1 0 5
## 952 0 1 0 5
## 953 1 1 0 7
## 954 0 0 0 3
## 955 0 0 1 3
## 956 1 1 0 8
## 957 1 1 0 8
## 958 0 1 0 6
## 959 0 1 0 6
## 960 0 1 0 6
## 961 0 1 0 6
## 962 0 1 0 6
## 963 0 0 0 3
## 964 0 0 0 3
## 965 0 0 0 4
## 966 1 1 1 7
## 967 1 1 0 6
## 968 0 0 0 4
## 969 0 0 0 3
## 970 0 0 0 3
## 971 1 1 0 4
## 972 0 0 0 2
## 973 0 0 0 2
## 974 1 1 0 7
## 975 1 1 1 8
## 976 1 1 0 6
## 977 0 0 0 4
## 978 0 1 0 4
## 979 1 1 0 7
## 980 1 1 0 7
## 981 1 1 0 7
## 982 0 1 0 5
## 983 1 1 0 6
## 984 0 1 0 5
## 985 0 0 0 4
## 986 1 1 0 7
## 987 0 0 0 4
## 988 1 1 0 7
## 989 1 1 0 7
## 990 1 1 0 7
## 991 0 0 0 1
## 992 1 1 0 7
## 993 1 1 0 5
## 994 1 1 0 8
## 995 1 1 0 7
## 996 1 1 1 7
## 997 1 1 1 7
## 998 1 1 1 7
## 999 1 1 1 7
## 1000 1 1 1 7
## 1001 1 1 1 7
## 1002 1 1 1 7
## 1003 0 0 0 4
## 1004 0 0 0 4
## 1005 0 0 0 4
## 1006 0 1 0 6
## 1007 0 0 0 4
## 1008 1 1 0 7
## 1009 0 0 0 2
## 1010 1 1 0 7
## 1011 1 1 0 5
## 1012 1 1 0 5
## 1013 0 0 0 2
## 1014 0 0 0 4
## 1015 0 1 0 4
## 1016 1 1 0 7
## 1017 0 0 0 4
## 1018 0 0 0 3
## 1019 0 0 0 2
## 1020 0 1 0 7
## 1021 0 0 0 4
## 1022 0 1 0 7
## 1023 0 0 0 4
## 1024 0 1 0 7
## 1025 1 1 0 8
## 1026 1 1 0 8
## 1027 0 0 0 4
## 1028 0 1 0 6
## 1029 0 0 0 4
## 1030 0 0 0 5
## 1031 1 1 1 5
## 1032 0 0 0 5
## 1033 1 1 0 9
## 1034 1 1 0 6
## 1035 1 1 1 9
## 1036 0 0 0 4
## 1037 1 1 0 9
## 1038 1 1 0 6
## 1039 1 1 0 6
## 1040 0 0 0 3
## 1041 0 0 0 4
## 1042 0 1 0 7
## 1043 0 1 0 7
## 1044 1 1 0 6
## 1045 1 1 1 6
## 1046 0 0 0 2
## 1047 1 1 0 7
## 1048 1 1 0 7
## 1049 1 1 0 5
## 1050 1 1 1 7
## 1051 1 1 1 7
## 1052 1 1 0 5
## 1053 0 1 0 7
## 1054 0 0 0 4
## 1055 0 1 0 5
## 1056 0 0 0 3
## 1057 1 1 0 6
## 1058 1 1 0 7
## 1059 0 1 0 5
## 1060 0 0 0 2
## 1061 1 1 1 9
## 1062 1 1 0 4
## 1063 1 1 0 6
## 1064 1 1 0 7
## 1065 1 1 0 6
## 1066 0 0 0 4
## 1067 1 1 1 8
## 1068 0 0 0 3
## 1069 0 0 0 4
## 1070 0 1 1 5
## 1071 0 0 0 4
## 1072 1 1 0 4
## 1073 1 1 0 7
## 1074 1 1 0 7
## 1075 1 1 1 9
## 1076 1 1 1 5
## 1077 1 1 1 5
## 1078 1 1 0 7
## 1079 1 1 0 7
## 1080 1 1 0 6
## 1081 1 1 0 4
## 1082 1 1 0 7
## 1083 0 0 0 4
## 1084 0 0 0 4
## 1085 0 0 0 4
## 1086 0 1 0 4
## 1087 1 1 0 7
## 1088 1 1 0 7
## 1089 1 1 0 7
## 1090 1 1 0 6
## 1091 0 0 0 4
## 1092 0 0 0 2
## 1093 1 1 0 7
## 1094 1 1 1 5
## 1095 1 1 0 6
## 1096 0 0 1 4
## 1097 1 1 0 8
## 1098 1 1 0 6
## 1099 1 1 1 5
## 1100 0 0 0 4
## 1101 0 1 0 5
## 1102 1 1 0 5
## 1103 1 1 0 4
## 1104 1 1 0 9
## 1105 1 1 1 5
## 1106 1 1 0 7
## 1107 1 1 1 5
## 1108 1 1 0 7
## 1109 0 0 0 2
## 1110 1 1 1 5
## 1111 1 1 1 5
## 1112 0 0 0 4
## 1113 0 0 0 4
## 1114 0 0 0 4
## 1115 0 0 0 4
## 1116 0 0 0 4
## 1117 0 0 0 4
## 1118 0 0 1 5
## 1119 0 0 1 5
## 1120 1 1 1 5
## 1121 0 0 0 4
## 1122 1 1 0 7
## 1123 1 1 0 6
## 1124 0 0 0 4
## 1125 0 0 0 2
## 1126 0 0 0 3
## 1127 1 1 0 9
## 1128 1 1 0 7
## 1129 1 1 1 5
## 1130 0 1 0 6
## 1131 0 0 0 4
## 1132 0 0 0 4
## 1133 0 0 0 4
## 1134 0 0 0 4
## 1135 0 0 0 4
## 1136 0 0 0 4
## 1137 0 0 0 5
## 1138 0 0 0 4
## 1139 0 0 0 3
## 1140 0 0 0 4
## 1141 0 1 1 7
## 1142 0 0 0 4
## 1143 1 1 0 6
## 1144 1 1 0 6
## 1145 0 0 0 2
## 1146 0 0 0 2
## 1147 0 0 0 2
## 1148 1 1 0 6
## 1149 0 0 0 2
## 1150 1 1 0 7
## 1151 0 1 0 5
## 1152 1 1 0 7
## 1153 0 1 1 8
## 1154 0 1 0 5
## 1155 0 0 0 3
## 1156 0 0 0 3
## 1157 0 0 0 2
## 1158 0 1 0 5
## 1159 1 1 0 5
## 1160 1 1 0 5
## 1161 0 1 0 5
## 1162 0 0 0 4
## 1163 1 1 0 7
## 1164 1 1 1 5
## 1165 1 1 0 5
## 1166 0 0 0 2
## 1167 1 1 0 6
## 1168 1 1 0 7
## 1169 0 0 0 2
## 1170 0 0 0 4
## 1171 0 1 0 5
## 1172 0 1 0 5
## 1173 0 1 1 6
## 1174 1 1 1 5
## 1175 0 0 0 4
## 1176 1 1 1 5
## 1177 1 1 0 8
## 1178 0 1 0 5
## 1179 0 0 0 4
## 1180 1 1 0 6
## 1181 0 1 0 5
## 1182 1 1 0 6
## 1183 1 1 0 7
## 1184 1 1 0 6
## 1185 1 1 1 9
## 1186 0 0 0 1
## 1187 0 0 0 4
## 1188 0 0 0 4
## 1189 0 1 0 7
## 1190 0 1 0 7
## 1191 0 1 0 7
## 1192 0 1 0 7
## 1193 0 0 0 4
## 1194 0 1 0 7
## 1195 1 1 0 5
## 1196 0 0 0 4
## 1197 0 0 0 4
## 1198 0 0 0 4
## 1199 0 0 0 4
## 1200 0 0 0 4
## 1201 0 0 0 4
## 1202 1 1 0 7
## 1203 0 0 0 4
## 1204 0 0 0 4
## 1205 1 1 0 7
## 1206 0 0 0 4
## 1207 0 0 0 4
## 1208 0 0 0 4
## 1209 0 0 0 1
## 1210 0 0 0 4
## 1211 1 1 0 6
## 1212 1 1 0 6
## 1213 0 1 0 6
## 1214 0 1 0 6
## 1215 0 0 0 4
## 1216 1 1 1 5
## 1217 0 0 0 4
## 1218 1 1 0 6
## 1219 0 0 0 4
## 1220 1 1 0 6
## 1221 0 0 0 1
## 1222 1 1 0 7
## 1223 1 1 0 6
## 1224 0 0 0 3
## 1225 1 1 0 6
## 1226 0 0 0 0
## 1227 0 0 0 4
## 1228 1 1 0 7
## 1229 0 1 0 5
## 1230 0 1 0 5
## 1231 0 1 0 7
## 1232 1 1 0 5
## 1233 1 1 0 7
## 1234 0 0 0 3
## 1235 1 1 0 4
## 1236 0 1 0 5
## 1237 0 1 0 7
## 1238 1 1 0 6
## 1239 0 1 0 5
## 1240 1 1 0 7
## 1241 1 1 0 7
## 1242 0 1 0 5
## 1243 1 1 0 7
## 1244 1 1 0 7
## 1245 0 1 0 5
## 1246 0 1 0 5
## 1247 0 0 0 1
## 1248 1 1 0 7
## 1249 0 1 0 5
## 1250 0 1 0 5
## 1251 0 1 0 5
## 1252 1 1 0 7
## 1253 0 1 0 5
## 1254 0 0 0 4
## 1255 0 0 0 4
## 1256 0 0 0 4
## 1257 0 1 0 6
## 1258 1 1 0 6
## 1259 0 0 0 4
## 1260 0 0 0 4
## 1261 0 0 0 4
## 1262 0 0 0 4
## 1263 0 0 0 4
## 1264 1 1 1 9
## 1265 1 1 1 8
## 1266 1 1 1 5
## 1267 0 0 0 2
## 1268 1 1 0 7
## 1269 1 1 0 7
## 1270 1 1 1 9
## 1271 0 0 0 3
## 1272 0 0 0 3
## 1273 1 1 0 5
## 1274 1 1 1 8
## 1275 1 1 0 8
## 1276 0 0 0 4
## 1277 0 0 0 3
## 1278 1 1 0 8
## 1279 0 1 0 5
## 1280 1 1 1 9
## 1281 0 1 1 6
## 1282 0 0 0 3
## 1283 0 0 0 3
## 1284 0 0 0 4
## 1285 1 1 0 6
## 1286 1 1 1 10
## 1287 1 1 0 6
## 1288 0 0 0 2
## 1289 1 1 1 10
## 1290 0 0 0 3
## 1291 0 1 0 5
## 1292 1 1 0 6
## 1293 0 0 0 1
## 1294 1 1 0 5
## 1295 0 0 0 3
## 1296 0 0 0 2
## 1297 0 0 0 2
## 1298 0 1 0 7
## 1299 0 1 0 7
## 1300 0 1 0 7
## 1301 0 1 0 7
## 1302 0 1 0 7
## 1303 0 1 0 7
## 1304 1 1 1 5
## 1305 0 1 0 7
## 1306 0 1 0 7
## 1307 0 1 1 7
## 1308 1 1 0 7
## 1309 1 1 0 7
## 1310 0 1 0 7
## 1311 0 1 0 7
## 1312 0 1 0 7
## 1313 0 1 0 7
## 1314 0 1 0 7
## 1315 0 1 0 7
## 1316 0 1 0 7
## 1317 0 1 0 7
## 1318 0 1 0 7
## 1319 0 0 0 2
## 1320 0 0 0 2
## 1321 1 1 1 5
## 1322 0 0 1 4
## 1323 1 1 0 8
## 1324 1 1 0 5
## 1325 1 1 0 7
## 1326 1 1 0 7
## 1327 1 1 0 7
## 1328 1 1 1 10
## 1329 1 1 0 6
## 1330 1 1 0 6
## 1331 0 1 0 6
## 1332 1 1 0 8
## 1333 1 1 0 6
## 1334 0 1 0 5
## 1335 0 1 0 6
## 1336 0 0 0 2
## 1337 0 0 0 2
## 1338 0 0 0 2
## 1339 0 1 0 6
## 1340 1 1 0 8
## 1341 0 0 0 4
## 1342 1 1 0 7
## 1343 1 1 0 8
## 1344 1 1 0 6
## 1345 0 0 0 2
## 1346 1 1 0 6
## 1347 0 0 0 3
## 1348 1 1 0 6
## 1349 0 1 0 5
## 1350 1 1 0 7
## 1351 0 0 0 2
## 1352 0 0 0 2
## 1353 1 1 0 8
## 1354 1 1 1 10
## 1355 1 1 0 3
## 1356 1 1 0 6
## 1357 1 1 0 8
## 1358 1 1 0 7
## 1359 1 1 0 7
## 1360 1 1 0 8
## 1361 1 1 0 7
## 1362 1 1 0 8
## 1363 0 1 0 5
## 1364 0 1 0 5
## 1365 1 1 0 8
## 1366 0 0 0 3
## 1367 0 0 1 4
## 1368 1 1 0 8
## 1369 0 1 0 5
## 1370 0 1 0 7
## 1371 0 1 0 5
## 1372 0 1 0 5
## 1373 0 1 0 5
## 1374 0 1 0 5
## 1375 1 1 0 7
## 1376 1 1 0 6
## 1377 0 1 0 5
## 1378 0 1 0 5
## 1379 0 1 0 5
## 1380 0 1 0 5
## 1381 0 1 0 5
## 1382 1 1 0 7
## 1383 0 1 0 7
## 1384 1 1 0 7
## 1385 0 1 0 5
## 1386 0 1 0 5
## 1387 0 1 0 7
## 1388 0 1 0 7
## 1389 0 1 0 7
## 1390 0 1 0 5
## 1391 0 1 0 5
## 1392 0 1 0 5
## 1393 1 1 0 6
## 1394 0 1 0 7
## 1395 0 1 0 7
## 1396 0 1 0 5
## 1397 0 1 0 5
## 1398 0 1 0 5
## 1399 1 1 1 9
## 1400 0 0 0 3
## 1401 1 1 0 7
## 1402 0 0 0 2
## 1403 1 1 0 7
## 1404 1 1 0 8
## 1405 1 1 0 7
## 1406 0 0 0 2
## 1407 0 0 0 2
## 1408 0 1 1 6
## 1409 1 1 0 6
## 1410 0 0 0 2
## 1411 1 1 0 7
## 1412 1 1 1 9
## 1413 1 1 0 8
## 1414 1 1 0 6
## 1415 0 0 1 3
## 1416 1 1 0 7
## 1417 0 0 0 3
## 1418 1 1 0 7
## 1419 0 0 0 3
## 1420 1 1 1 10
## 1421 1 1 1 8
## 1422 1 1 0 7
## 1423 1 1 0 6
## 1424 0 1 0 5
## 1425 1 1 0 7
## 1426 1 1 0 7
## 1427 1 1 1 8
## 1428 0 0 0 2
## 1429 1 1 0 5
## 1430 1 1 0 7
## 1431 1 1 1 8
## 1432 0 1 0 7
## 1433 0 0 1 3
## 1434 1 1 0 8
## 1435 0 0 0 3
## 1436 0 0 0 3
## 1437 0 0 1 5
## 1438 1 1 0 6
## 1439 0 0 0 3
## 1440 0 1 0 5
## 1441 1 1 0 7
## 1442 0 1 0 5
## 1443 0 0 1 3
## 1444 1 1 0 7
## 1445 0 0 0 3
## 1446 0 0 0 3
## 1447 0 0 0 5
## 1448 1 1 0 6
## 1449 0 0 0 3
## 1450 0 1 0 6
## 1451 0 0 0 3
## 1452 1 1 0 8
## 1453 1 1 0 8
## 1454 0 0 0 2
## 1455 1 1 0 6
## 1456 1 1 0 6
## 1457 0 0 0 3
## 1458 1 1 0 7
## 1459 0 0 1 4
## 1460 1 1 0 4
## 1461 0 1 0 6
## 1462 0 0 1 3
## 1463 1 1 0 7
## 1464 0 0 0 2
## 1465 0 0 0 2
## 1466 1 1 0 7
## 1467 1 1 0 7
## 1468 1 1 0 7
## 1469 0 0 0 3
## 1470 0 0 0 2
## 1471 1 1 1 6
## 1472 1 1 0 8
## 1473 0 1 0 5
## 1474 0 0 0 2
## 1475 0 1 0 5
## 1476 0 0 0 3
## 1477 0 0 1 4
## 1478 1 1 0 6
## 1479 0 1 0 5
## 1480 0 1 0 7
## 1481 0 1 0 5
## 1482 0 1 0 5
## 1483 0 1 0 7
## 1484 0 1 0 7
## 1485 1 1 0 6
## 1486 0 1 0 5
## 1487 0 1 0 7
## 1488 0 1 0 5
## 1489 0 1 0 5
## 1490 0 1 0 5
## 1491 0 1 0 5
## 1492 1 1 0 7
## 1493 0 1 0 5
## 1494 0 1 0 7
## 1495 0 1 0 7
## 1496 0 0 1 3
## 1497 0 0 0 2
## 1498 0 0 0 2
## 1499 1 1 0 6
## 1500 0 1 0 7
## 1501 1 1 0 7
## 1502 0 1 0 7
## 1503 1 1 0 7
## 1504 0 1 0 5
## 1505 0 1 0 7
## 1506 0 1 0 5
## 1507 0 1 0 7
## 1508 0 1 0 5
## 1509 0 1 0 7
## 1510 0 1 0 7
## 1511 0 1 0 5
## 1512 0 1 0 5
## 1513 1 1 0 7
## 1514 0 1 0 5
## 1515 0 1 0 5
## 1516 0 1 0 7
## 1517 1 1 0 7
## 1518 0 1 0 5
## 1519 1 1 0 7
## 1520 1 1 0 7
## 1521 0 1 0 5
## 1522 0 1 0 5
## 1523 0 1 0 5
## 1524 0 0 1 5
## 1525 1 1 0 6
## 1526 0 0 0 3
## 1527 1 1 0 7
## 1528 1 1 0 7
## 1529 1 1 0 7
## 1530 1 1 0 4
## 1531 1 1 0 6
## 1532 1 1 0 8
## 1533 1 1 0 6
## 1534 0 0 0 3
## 1535 0 0 0 3
## 1536 1 1 0 7
## 1537 0 1 0 5
## 1538 1 1 0 8
## host_response_hours 1 0 host_response_day host_response_few_days
## 1 NA 1 0 NA NA
## 2 NA 1 0 NA NA
## 3 NA 1 0 NA NA
## 4 NA 1 0 NA NA
## 5 NA 1 0 NA NA
## 6 NA 1 0 NA NA
## 7 NA 1 0 NA NA
## 8 NA 1 0 NA NA
## 9 NA 1 0 NA NA
## 10 NA 1 0 NA NA
## 11 NA 1 0 NA NA
## 12 NA 1 0 NA NA
## 13 NA 1 0 NA NA
## 14 NA 1 0 NA NA
## 15 NA 1 0 NA NA
## 16 NA 1 0 NA NA
## 17 NA 1 0 NA NA
## 18 NA 1 0 NA NA
## 19 NA 1 0 NA NA
## 20 NA 1 0 NA NA
## 21 NA 1 0 NA NA
## 22 NA 1 0 NA NA
## 23 NA 1 0 NA NA
## 24 NA 1 0 NA NA
## 25 NA 1 0 NA NA
## 26 NA 1 0 NA NA
## 27 NA 1 0 NA NA
## 28 NA 1 0 NA NA
## 29 NA 1 0 NA NA
## 30 NA 1 0 NA NA
## 31 NA 1 0 NA NA
## 32 NA 1 0 NA NA
## 33 NA 1 0 NA NA
## 34 NA 1 0 NA NA
## 35 NA 1 0 NA NA
## 36 NA 1 0 NA NA
## 37 NA 1 0 NA NA
## 38 NA 1 0 NA NA
## 39 NA 1 0 NA NA
## 40 NA 1 0 NA NA
## 41 NA 1 0 NA NA
## 42 NA 1 0 NA NA
## 43 NA 1 0 NA NA
## 44 NA 1 0 NA NA
## 45 NA 1 0 NA NA
## 46 NA 1 0 NA NA
## 47 NA 1 0 NA NA
## 48 NA 1 0 NA NA
## 49 NA 1 0 NA NA
## 50 NA 1 0 NA NA
## 51 NA 1 0 NA NA
## 52 NA 1 0 NA NA
## 53 NA 1 0 NA NA
## 54 NA 1 0 NA NA
## 55 NA 1 0 NA NA
## 56 NA 1 0 NA NA
## 57 NA 1 0 NA NA
## 58 NA 1 0 NA NA
## 59 NA 1 0 NA NA
## 60 NA 1 0 NA NA
## 61 NA 1 0 NA NA
## 62 NA 1 0 NA NA
## 63 NA 1 0 NA NA
## 64 NA 1 0 NA NA
## 65 NA 1 0 NA NA
## 66 NA 1 0 NA NA
## 67 NA 1 0 NA NA
## 68 NA 1 0 NA NA
## 69 NA 1 0 NA NA
## 70 NA 1 0 NA NA
## 71 NA 1 0 NA NA
## 72 NA 1 0 NA NA
## 73 NA 1 0 NA NA
## 74 NA 1 0 NA NA
## 75 NA 1 0 NA NA
## 76 NA 1 0 NA NA
## 77 NA 1 0 NA NA
## 78 NA 1 0 NA NA
## 79 NA 1 0 NA NA
## 80 NA 1 0 NA NA
## 81 NA 1 0 NA NA
## 82 NA 1 0 NA NA
## 83 NA 1 0 NA NA
## 84 NA 1 0 NA NA
## 85 NA 1 0 NA NA
## 86 NA 1 0 NA NA
## 87 NA 1 0 NA NA
## 88 NA 1 0 NA NA
## 89 NA 1 0 NA NA
## 90 NA 1 0 NA NA
## 91 NA 1 0 NA NA
## 92 NA 1 0 NA NA
## 93 NA 1 0 NA NA
## 94 NA 1 0 NA NA
## 95 NA 1 0 NA NA
## 96 NA 1 0 NA NA
## 97 NA 1 0 NA NA
## 98 NA 1 0 NA NA
## 99 NA 1 0 NA NA
## 100 NA 1 0 NA NA
## 101 NA 1 0 NA NA
## 102 NA 1 0 NA NA
## 103 NA 1 0 NA NA
## 104 NA 1 0 NA NA
## 105 NA 1 0 NA NA
## 106 NA 1 0 NA NA
## 107 NA 1 0 NA NA
## 108 NA 1 0 NA NA
## 109 NA 1 0 NA NA
## 110 NA 1 0 NA NA
## 111 NA 1 0 NA NA
## 112 NA 1 0 NA NA
## 113 NA 1 0 NA NA
## 114 NA 1 0 NA NA
## 115 NA 1 0 NA NA
## 116 NA 1 0 NA NA
## 117 NA 1 0 NA NA
## 118 NA 1 0 NA NA
## 119 NA 1 0 NA NA
## 120 NA 1 0 NA NA
## 121 NA 1 0 NA NA
## 122 NA 1 0 NA NA
## 123 NA 1 0 NA NA
## 124 NA 1 0 NA NA
## 125 NA 1 0 NA NA
## 126 NA 1 0 NA NA
## 127 NA 1 0 NA NA
## 128 NA 1 0 NA NA
## 129 NA 1 0 NA NA
## 130 NA 1 0 NA NA
## 131 NA 1 0 NA NA
## 132 NA 1 0 NA NA
## 133 NA 1 0 NA NA
## 134 NA 1 0 NA NA
## 135 NA 1 0 NA NA
## 136 NA 1 0 NA NA
## 137 NA 1 0 NA NA
## 138 NA 1 0 NA NA
## 139 NA 1 0 NA NA
## 140 NA 1 0 NA NA
## 141 NA 1 0 NA NA
## 142 NA 1 0 NA NA
## 143 NA 1 0 NA NA
## 144 NA 1 0 NA NA
## 145 NA 1 0 NA NA
## 146 NA 1 0 NA NA
## 147 NA 1 0 NA NA
## 148 NA 1 0 NA NA
## 149 NA 1 0 NA NA
## 150 NA 1 0 NA NA
## 151 NA 1 0 NA NA
## 152 NA 1 0 NA NA
## 153 NA 1 0 NA NA
## 154 NA 1 0 NA NA
## 155 NA 1 0 NA NA
## 156 NA 1 0 NA NA
## 157 NA 1 0 NA NA
## 158 NA 1 0 NA NA
## 159 NA 1 0 NA NA
## 160 NA 1 0 NA NA
## 161 NA 1 0 NA NA
## 162 NA 1 0 NA NA
## 163 NA 1 0 NA NA
## 164 NA 1 0 NA NA
## 165 NA 1 0 NA NA
## 166 NA 1 0 NA NA
## 167 NA 1 0 NA NA
## 168 NA 1 0 NA NA
## 169 NA 1 0 NA NA
## 170 NA 1 0 NA NA
## 171 NA 1 0 NA NA
## 172 NA 1 0 NA NA
## 173 NA 1 0 NA NA
## 174 NA 1 0 NA NA
## 175 NA 1 0 NA NA
## 176 NA 1 0 NA NA
## 177 NA 1 0 NA NA
## 178 NA 1 0 NA NA
## 179 NA 1 0 NA NA
## 180 NA 1 0 NA NA
## 181 NA 1 0 NA NA
## 182 NA 1 0 NA NA
## 183 NA 1 0 NA NA
## 184 NA 1 0 NA NA
## 185 NA 1 0 NA NA
## 186 NA 1 0 NA NA
## 187 NA 1 0 NA NA
## 188 NA 1 0 NA NA
## 189 NA 1 0 NA NA
## 190 NA 1 0 NA NA
## 191 NA 1 0 NA NA
## 192 NA 1 0 NA NA
## 193 NA 1 0 NA NA
## 194 NA 1 0 NA NA
## 195 NA 1 0 NA NA
## 196 NA 1 0 NA NA
## 197 NA 1 0 NA NA
## 198 NA 1 0 NA NA
## 199 NA 1 0 NA NA
## 200 NA 1 0 NA NA
## 201 NA 1 0 NA NA
## 202 NA 1 0 NA NA
## 203 NA 1 0 NA NA
## 204 NA 1 0 NA NA
## 205 NA 1 0 NA NA
## 206 NA 1 0 NA NA
## 207 NA 1 0 NA NA
## 208 NA 1 0 NA NA
## 209 NA 1 0 NA NA
## 210 NA 1 0 NA NA
## 211 NA 1 0 NA NA
## 212 NA 1 0 NA NA
## 213 NA 1 0 NA NA
## 214 NA 1 0 NA NA
## 215 NA 1 0 NA NA
## 216 NA 1 0 NA NA
## 217 NA 1 0 NA NA
## 218 NA 1 0 NA NA
## 219 NA 1 0 NA NA
## 220 NA 1 0 NA NA
## 221 NA 1 0 NA NA
## 222 NA 1 0 NA NA
## 223 NA 1 0 NA NA
## 224 NA 1 0 NA NA
## 225 NA 1 0 NA NA
## 226 NA 1 0 NA NA
## 227 NA 1 0 NA NA
## 228 NA 1 0 NA NA
## 229 NA 1 0 NA NA
## 230 NA 1 0 NA NA
## 231 NA 1 0 NA NA
## 232 NA 1 0 NA NA
## 233 NA 1 0 NA NA
## 234 NA 1 0 NA NA
## 235 NA 1 0 NA NA
## 236 NA 1 0 NA NA
## 237 NA 1 0 NA NA
## 238 NA 1 0 NA NA
## 239 NA 1 0 NA NA
## 240 NA 1 0 NA NA
## 241 NA 1 0 NA NA
## 242 NA 1 0 NA NA
## 243 NA 1 0 NA NA
## 244 NA 1 0 NA NA
## 245 NA 1 0 NA NA
## 246 NA 1 0 NA NA
## 247 NA 1 0 NA NA
## 248 NA 1 0 NA NA
## 249 NA 1 0 NA NA
## 250 NA 1 0 NA NA
## 251 NA 1 0 NA NA
## 252 NA 1 0 NA NA
## 253 NA 1 0 NA NA
## 254 NA 1 0 NA NA
## 255 NA 1 0 NA NA
## 256 NA 1 0 NA NA
## 257 NA 1 0 NA NA
## 258 NA 1 0 NA NA
## 259 NA 1 0 NA NA
## 260 NA 1 0 NA NA
## 261 NA 1 0 NA NA
## 262 NA 1 0 NA NA
## 263 NA 1 0 NA NA
## 264 NA 1 0 NA NA
## 265 NA 1 0 NA NA
## 266 NA 1 0 NA NA
## 267 NA 1 0 NA NA
## 268 NA 1 0 NA NA
## 269 NA 1 0 NA NA
## 270 NA 1 0 NA NA
## 271 NA 1 0 NA NA
## 272 NA 1 0 NA NA
## 273 NA 1 0 NA NA
## 274 NA 1 0 NA NA
## 275 NA 1 0 NA NA
## 276 NA 1 0 NA NA
## 277 NA 1 0 NA NA
## 278 NA 1 0 NA NA
## 279 NA 1 0 NA NA
## 280 NA 1 0 NA NA
## 281 NA 1 0 NA NA
## 282 NA 1 0 NA NA
## 283 NA 1 0 NA NA
## 284 NA 1 0 NA NA
## 285 NA 1 0 NA NA
## 286 NA 1 0 NA NA
## 287 NA 1 0 NA NA
## 288 NA 1 0 NA NA
## 289 NA 1 0 NA NA
## 290 NA 1 0 NA NA
## 291 NA 1 0 NA NA
## 292 NA 1 0 NA NA
## 293 NA 1 0 NA NA
## 294 NA 1 0 NA NA
## 295 NA 1 0 NA NA
## 296 NA 1 0 NA NA
## 297 NA 1 0 NA NA
## 298 NA 1 0 NA NA
## 299 NA 1 0 NA NA
## 300 NA 1 0 NA NA
## 301 NA 1 0 NA NA
## 302 NA 1 0 NA NA
## 303 NA 1 0 NA NA
## 304 NA 1 0 NA NA
## 305 NA 1 0 NA NA
## 306 NA 1 0 NA NA
## 307 NA 1 0 NA NA
## 308 NA 1 0 NA NA
## 309 NA 1 0 NA NA
## 310 NA 1 0 NA NA
## 311 NA 1 0 NA NA
## 312 NA 1 0 NA NA
## 313 NA 1 0 NA NA
## 314 NA 1 0 NA NA
## 315 NA 1 0 NA NA
## 316 NA 1 0 NA NA
## 317 NA 1 0 NA NA
## 318 NA 1 0 NA NA
## 319 NA 1 0 NA NA
## 320 NA 1 0 NA NA
## 321 NA 1 0 NA NA
## 322 NA 1 0 NA NA
## 323 NA 1 0 NA NA
## 324 NA 1 0 NA NA
## 325 NA 1 0 NA NA
## 326 NA 1 0 NA NA
## 327 NA 1 0 NA NA
## 328 NA 1 0 NA NA
## 329 NA 1 0 NA NA
## 330 NA 1 0 NA NA
## 331 NA 1 0 NA NA
## 332 NA 1 0 NA NA
## 333 NA 1 0 NA NA
## 334 NA 1 0 NA NA
## 335 NA 1 0 NA NA
## 336 NA 1 0 NA NA
## 337 NA 1 0 NA NA
## 338 NA 1 0 NA NA
## 339 NA 1 0 NA NA
## 340 NA 1 0 NA NA
## 341 NA 1 0 NA NA
## 342 NA 1 0 NA NA
## 343 NA 1 0 NA NA
## 344 NA 1 0 NA NA
## 345 NA 1 0 NA NA
## 346 NA 1 0 NA NA
## 347 NA 1 0 NA NA
## 348 NA 1 0 NA NA
## 349 NA 1 0 NA NA
## 350 NA 1 0 NA NA
## 351 NA 1 0 NA NA
## 352 NA 1 0 NA NA
## 353 NA 1 0 NA NA
## 354 NA 1 0 NA NA
## 355 NA 1 0 NA NA
## 356 NA 1 0 NA NA
## 357 NA 1 0 NA NA
## 358 NA 1 0 NA NA
## 359 NA 1 0 NA NA
## 360 NA 1 0 NA NA
## 361 NA 1 0 NA NA
## 362 NA 1 0 NA NA
## 363 NA 1 0 NA NA
## 364 NA 1 0 NA NA
## 365 NA 1 0 NA NA
## 366 NA 1 0 NA NA
## 367 NA 1 0 NA NA
## 368 NA 1 0 NA NA
## 369 NA 1 0 NA NA
## 370 NA 1 0 NA NA
## 371 NA 1 0 NA NA
## 372 NA 1 0 NA NA
## 373 NA 1 0 NA NA
## 374 NA 1 0 NA NA
## 375 NA 1 0 NA NA
## 376 NA 1 0 NA NA
## 377 NA 1 0 NA NA
## 378 NA 1 0 NA NA
## 379 NA 1 0 NA NA
## 380 NA 1 0 NA NA
## 381 NA 1 0 NA NA
## 382 NA 1 0 NA NA
## 383 NA 1 0 NA NA
## 384 NA 1 0 NA NA
## 385 NA 1 0 NA NA
## 386 NA 1 0 NA NA
## 387 NA 1 0 NA NA
## 388 NA 1 0 NA NA
## 389 NA 1 0 NA NA
## 390 NA 1 0 NA NA
## 391 NA 1 0 NA NA
## 392 NA 1 0 NA NA
## 393 NA 1 0 NA NA
## 394 NA 1 0 NA NA
## 395 NA 1 0 NA NA
## 396 NA 1 0 NA NA
## 397 NA 1 0 NA NA
## 398 NA 1 0 NA NA
## 399 NA 1 0 NA NA
## 400 NA 1 0 NA NA
## 401 NA 1 0 NA NA
## 402 NA 1 0 NA NA
## 403 NA 1 0 NA NA
## 404 NA 1 0 NA NA
## 405 NA 1 0 NA NA
## 406 NA 1 0 NA NA
## 407 NA 1 0 NA NA
## 408 NA 1 0 NA NA
## 409 NA 1 0 NA NA
## 410 NA 1 0 NA NA
## 411 NA 1 0 NA NA
## 412 NA 1 0 NA NA
## 413 NA 1 0 NA NA
## 414 NA 1 0 NA NA
## 415 NA 1 0 NA NA
## 416 NA 1 0 NA NA
## 417 NA 1 0 NA NA
## 418 NA 1 0 NA NA
## 419 NA 1 0 NA NA
## 420 NA 1 0 NA NA
## 421 NA 1 0 NA NA
## 422 NA 1 0 NA NA
## 423 NA 1 0 NA NA
## 424 NA 1 0 NA NA
## 425 NA 1 0 NA NA
## 426 NA 1 0 NA NA
## 427 NA 1 0 NA NA
## 428 NA 1 0 NA NA
## 429 NA 1 0 NA NA
## 430 NA 1 0 NA NA
## 431 NA 1 0 NA NA
## 432 NA 1 0 NA NA
## 433 NA 1 0 NA NA
## 434 NA 1 0 NA NA
## 435 NA 1 0 NA NA
## 436 NA 1 0 NA NA
## 437 NA 1 0 NA NA
## 438 NA 1 0 NA NA
## 439 NA 1 0 NA NA
## 440 NA 1 0 NA NA
## 441 NA 1 0 NA NA
## 442 NA 1 0 NA NA
## 443 NA 1 0 NA NA
## 444 NA 1 0 NA NA
## 445 NA 1 0 NA NA
## 446 NA 1 0 NA NA
## 447 NA 1 0 NA NA
## 448 NA 1 0 NA NA
## 449 NA 1 0 NA NA
## 450 NA 1 0 NA NA
## 451 NA 1 0 NA NA
## 452 NA 1 0 NA NA
## 453 NA 1 0 NA NA
## 454 NA 1 0 NA NA
## 455 NA 1 0 NA NA
## 456 NA 1 0 NA NA
## 457 NA 1 0 NA NA
## 458 NA 1 0 NA NA
## 459 NA 1 0 NA NA
## 460 NA 1 0 NA NA
## 461 NA 1 0 NA NA
## 462 NA 1 0 NA NA
## 463 NA 1 0 NA NA
## 464 NA 1 0 NA NA
## 465 NA 1 0 NA NA
## 466 NA 1 0 NA NA
## 467 NA 1 0 NA NA
## 468 NA 1 0 NA NA
## 469 NA 1 0 NA NA
## 470 NA 1 0 NA NA
## 471 NA 1 0 NA NA
## 472 NA 1 0 NA NA
## 473 NA 1 0 NA NA
## 474 NA 1 0 NA NA
## 475 NA 1 0 NA NA
## 476 NA 1 0 NA NA
## 477 NA 1 0 NA NA
## 478 NA 1 0 NA NA
## 479 NA 1 0 NA NA
## 480 NA 1 0 NA NA
## 481 NA 1 0 NA NA
## 482 NA 1 0 NA NA
## 483 NA 1 0 NA NA
## 484 NA 1 0 NA NA
## 485 NA 1 0 NA NA
## 486 NA 1 0 NA NA
## 487 NA 1 0 NA NA
## 488 NA 1 0 NA NA
## 489 NA 1 0 NA NA
## 490 NA 1 0 NA NA
## 491 NA 1 0 NA NA
## 492 NA 1 0 NA NA
## 493 NA 1 0 NA NA
## 494 NA 1 0 NA NA
## 495 NA 1 0 NA NA
## 496 NA 1 0 NA NA
## 497 NA 1 0 NA NA
## 498 NA 1 0 NA NA
## 499 NA 1 0 NA NA
## 500 NA 1 0 NA NA
## 501 NA 1 0 NA NA
## 502 NA 1 0 NA NA
## 503 NA 1 0 NA NA
## 504 NA 1 0 NA NA
## 505 NA 1 0 NA NA
## 506 NA 1 0 NA NA
## 507 NA 1 0 NA NA
## 508 NA 1 0 NA NA
## 509 NA 1 0 NA NA
## 510 NA 1 0 NA NA
## 511 NA 1 0 NA NA
## 512 NA 1 0 NA NA
## 513 NA 1 0 NA NA
## 514 NA 1 0 NA NA
## 515 NA 1 0 NA NA
## 516 NA 1 0 NA NA
## 517 NA 1 0 NA NA
## 518 NA 1 0 NA NA
## 519 NA 1 0 NA NA
## 520 NA 1 0 NA NA
## 521 NA 1 0 NA NA
## 522 NA 1 0 NA NA
## 523 NA 1 0 NA NA
## 524 NA 1 0 NA NA
## 525 NA 1 0 NA NA
## 526 NA 1 0 NA NA
## 527 NA 1 0 NA NA
## 528 NA 1 0 NA NA
## 529 NA 1 0 NA NA
## 530 NA 1 0 NA NA
## 531 NA 1 0 NA NA
## 532 NA 1 0 NA NA
## 533 NA 1 0 NA NA
## 534 NA 1 0 NA NA
## 535 NA 1 0 NA NA
## 536 NA 1 0 NA NA
## 537 NA 1 0 NA NA
## 538 NA 1 0 NA NA
## 539 NA 1 0 NA NA
## 540 NA 1 0 NA NA
## 541 NA 1 0 NA NA
## 542 NA 1 0 NA NA
## 543 NA 1 0 NA NA
## 544 NA 1 0 NA NA
## 545 NA 1 0 NA NA
## 546 NA 1 0 NA NA
## 547 NA 1 0 NA NA
## 548 NA 1 0 NA NA
## 549 NA 1 0 NA NA
## 550 NA 1 0 NA NA
## 551 NA 1 0 NA NA
## 552 NA 1 0 NA NA
## 553 NA 1 0 NA NA
## 554 NA 1 0 NA NA
## 555 NA 1 0 NA NA
## 556 NA 1 0 NA NA
## 557 NA 1 0 NA NA
## 558 NA 1 0 NA NA
## 559 NA 1 0 NA NA
## 560 NA 1 0 NA NA
## 561 NA 1 0 NA NA
## 562 NA 1 0 NA NA
## 563 NA 1 0 NA NA
## 564 NA 1 0 NA NA
## 565 NA 1 0 NA NA
## 566 NA 1 0 NA NA
## 567 NA 1 0 NA NA
## 568 NA 1 0 NA NA
## 569 NA 1 0 NA NA
## 570 NA 1 0 NA NA
## 571 NA 1 0 NA NA
## 572 NA 1 0 NA NA
## 573 NA 1 0 NA NA
## 574 NA 1 0 NA NA
## 575 NA 1 0 NA NA
## 576 NA 1 0 NA NA
## 577 NA 1 0 NA NA
## 578 NA 1 0 NA NA
## 579 NA 1 0 NA NA
## 580 NA 1 0 NA NA
## 581 NA 1 0 NA NA
## 582 NA 1 0 NA NA
## 583 NA 1 0 NA NA
## 584 NA 1 0 NA NA
## 585 NA 1 0 NA NA
## 586 NA 1 0 NA NA
## 587 NA 1 0 NA NA
## 588 NA 1 0 NA NA
## 589 NA 1 0 NA NA
## 590 NA 1 0 NA NA
## 591 NA 1 0 NA NA
## 592 NA 1 0 NA NA
## 593 NA 1 0 NA NA
## 594 NA 1 0 NA NA
## 595 NA 1 0 NA NA
## 596 NA 1 0 NA NA
## 597 NA 1 0 NA NA
## 598 NA 1 0 NA NA
## 599 NA 1 0 NA NA
## 600 NA 1 0 NA NA
## 601 NA 1 0 NA NA
## 602 NA 1 0 NA NA
## 603 NA 1 0 NA NA
## 604 NA 1 0 NA NA
## 605 NA 1 0 NA NA
## 606 NA 1 0 NA NA
## 607 NA 1 0 NA NA
## 608 NA 1 0 NA NA
## 609 NA 1 0 NA NA
## 610 NA 1 0 NA NA
## 611 NA 1 0 NA NA
## 612 NA 1 0 NA NA
## 613 NA 1 0 NA NA
## 614 NA 1 0 NA NA
## 615 NA 1 0 NA NA
## 616 NA 1 0 NA NA
## 617 NA 1 0 NA NA
## 618 NA 1 0 NA NA
## 619 NA 1 0 NA NA
## 620 NA 1 0 NA NA
## 621 NA 1 0 NA NA
## 622 NA 1 0 NA NA
## 623 NA 1 0 NA NA
## 624 NA 1 0 NA NA
## 625 NA 1 0 NA NA
## 626 NA 1 0 NA NA
## 627 NA 1 0 NA NA
## 628 NA 1 0 NA NA
## 629 NA 1 0 NA NA
## 630 NA 1 0 NA NA
## 631 NA 1 0 NA NA
## 632 NA 1 0 NA NA
## 633 NA 1 0 NA NA
## 634 NA 1 0 NA NA
## 635 NA 1 0 NA NA
## 636 NA 1 0 NA NA
## 637 NA 1 0 NA NA
## 638 NA 1 0 NA NA
## 639 NA 1 0 NA NA
## 640 NA 1 0 NA NA
## 641 NA 1 0 NA NA
## 642 NA 1 0 NA NA
## 643 NA 1 0 NA NA
## 644 NA 1 0 NA NA
## 645 NA 1 0 NA NA
## 646 NA 1 0 NA NA
## 647 NA 1 0 NA NA
## 648 NA 1 0 NA NA
## 649 NA 1 0 NA NA
## 650 NA 1 0 NA NA
## 651 NA 1 0 NA NA
## 652 NA 1 0 NA NA
## 653 NA 1 0 NA NA
## 654 NA 1 0 NA NA
## 655 NA 1 0 NA NA
## 656 NA 1 0 NA NA
## 657 NA 1 0 NA NA
## 658 NA 1 0 NA NA
## 659 NA 1 0 NA NA
## 660 NA 1 0 NA NA
## 661 NA 1 0 NA NA
## 662 NA 1 0 NA NA
## 663 NA 1 0 NA NA
## 664 NA 1 0 NA NA
## 665 NA 1 0 NA NA
## 666 NA 1 0 NA NA
## 667 NA 1 0 NA NA
## 668 NA 1 0 NA NA
## 669 NA 1 0 NA NA
## 670 NA 1 0 NA NA
## 671 NA 1 0 NA NA
## 672 NA 1 0 NA NA
## 673 NA 1 0 NA NA
## 674 NA 1 0 NA NA
## 675 NA 1 0 NA NA
## 676 NA 1 0 NA NA
## 677 NA 1 0 NA NA
## 678 NA 1 0 NA NA
## 679 NA 1 0 NA NA
## 680 NA 1 0 NA NA
## 681 NA 1 0 NA NA
## 682 NA 1 0 NA NA
## 683 NA 1 0 NA NA
## 684 NA 1 0 NA NA
## 685 NA 1 0 NA NA
## 686 NA 1 0 NA NA
## 687 NA 1 0 NA NA
## 688 NA 1 0 NA NA
## 689 NA 1 0 NA NA
## 690 NA 1 0 NA NA
## 691 NA 1 0 NA NA
## 692 NA 1 0 NA NA
## 693 NA 1 0 NA NA
## 694 NA 1 0 NA NA
## 695 NA 1 0 NA NA
## 696 NA 1 0 NA NA
## 697 NA 1 0 NA NA
## 698 NA 1 0 NA NA
## 699 NA 1 0 NA NA
## 700 NA 1 0 NA NA
## 701 NA 1 0 NA NA
## 702 NA 1 0 NA NA
## 703 NA 1 0 NA NA
## 704 NA 1 0 NA NA
## 705 NA 1 0 NA NA
## 706 NA 1 0 NA NA
## 707 NA 1 0 NA NA
## 708 NA 1 0 NA NA
## 709 NA 1 0 NA NA
## 710 NA 1 0 NA NA
## 711 NA 1 0 NA NA
## 712 NA 1 0 NA NA
## 713 NA 1 0 NA NA
## 714 NA 1 0 NA NA
## 715 NA 1 0 NA NA
## 716 NA 1 0 NA NA
## 717 NA 1 0 NA NA
## 718 NA 1 0 NA NA
## 719 NA 1 0 NA NA
## 720 NA 1 0 NA NA
## 721 NA 1 0 NA NA
## 722 NA 1 0 NA NA
## 723 NA 1 0 NA NA
## 724 NA 1 0 NA NA
## 725 NA 1 0 NA NA
## 726 NA 1 0 NA NA
## 727 NA 1 0 NA NA
## 728 NA 1 0 NA NA
## 729 NA 1 0 NA NA
## 730 NA 1 0 NA NA
## 731 NA 1 0 NA NA
## 732 NA 1 0 NA NA
## 733 NA 1 0 NA NA
## 734 NA 1 0 NA NA
## 735 NA 1 0 NA NA
## 736 NA 1 0 NA NA
## 737 NA 1 0 NA NA
## 738 NA 1 0 NA NA
## 739 NA 1 0 NA NA
## 740 NA 1 0 NA NA
## 741 NA 1 0 NA NA
## 742 NA 1 0 NA NA
## 743 NA 1 0 NA NA
## 744 NA 1 0 NA NA
## 745 NA 1 0 NA NA
## 746 NA 1 0 NA NA
## 747 NA 1 0 NA NA
## 748 NA 1 0 NA NA
## 749 NA 1 0 NA NA
## 750 NA 1 0 NA NA
## 751 NA 1 0 NA NA
## 752 NA 1 0 NA NA
## 753 NA 1 0 NA NA
## 754 NA 1 0 NA NA
## 755 NA 1 0 NA NA
## 756 NA 1 0 NA NA
## 757 NA 1 0 NA NA
## 758 NA 1 0 NA NA
## 759 NA 1 0 NA NA
## 760 NA 1 0 NA NA
## 761 NA 1 0 NA NA
## 762 NA 1 0 NA NA
## 763 NA 1 0 NA NA
## 764 NA 1 0 NA NA
## 765 NA 1 0 NA NA
## 766 NA 1 0 NA NA
## 767 NA 1 0 NA NA
## 768 NA 1 0 NA NA
## 769 NA 1 0 NA NA
## 770 NA 1 0 NA NA
## 771 NA 1 0 NA NA
## 772 NA 1 0 NA NA
## 773 NA 1 0 NA NA
## 774 NA 1 0 NA NA
## 775 NA 1 0 NA NA
## 776 NA 1 0 NA NA
## 777 NA 1 0 NA NA
## 778 NA 1 0 NA NA
## 779 NA 1 0 NA NA
## 780 NA 1 0 NA NA
## 781 NA 1 0 NA NA
## 782 NA 1 0 NA NA
## 783 NA 1 0 NA NA
## 784 NA 1 0 NA NA
## 785 NA 1 0 NA NA
## 786 NA 1 0 NA NA
## 787 NA 1 0 NA NA
## 788 NA 1 0 NA NA
## 789 NA 1 0 NA NA
## 790 NA 1 0 NA NA
## 791 NA 1 0 NA NA
## 792 NA 1 0 NA NA
## 793 NA 1 0 NA NA
## 794 NA 1 0 NA NA
## 795 NA 1 0 NA NA
## 796 NA 1 0 NA NA
## 797 NA 1 0 NA NA
## 798 NA 1 0 NA NA
## 799 NA 1 0 NA NA
## 800 NA 1 0 NA NA
## 801 NA 1 0 NA NA
## 802 NA 1 0 NA NA
## 803 NA 1 0 NA NA
## 804 NA 1 0 NA NA
## 805 NA 1 0 NA NA
## 806 NA 1 0 NA NA
## 807 NA 1 0 NA NA
## 808 NA 1 0 NA NA
## 809 NA 1 0 NA NA
## 810 NA 1 0 NA NA
## 811 NA 1 0 NA NA
## 812 NA 1 0 NA NA
## 813 NA 1 0 NA NA
## 814 NA 1 0 NA NA
## 815 NA 1 0 NA NA
## 816 NA 1 0 NA NA
## 817 NA 1 0 NA NA
## 818 NA 1 0 NA NA
## 819 NA 1 0 NA NA
## 820 NA 1 0 NA NA
## 821 NA 1 0 NA NA
## 822 NA 1 0 NA NA
## 823 NA 1 0 NA NA
## 824 NA 1 0 NA NA
## 825 NA 1 0 NA NA
## 826 NA 1 0 NA NA
## 827 NA 1 0 NA NA
## 828 NA 1 0 NA NA
## 829 NA 1 0 NA NA
## 830 NA 1 0 NA NA
## 831 NA 1 0 NA NA
## 832 NA 1 0 NA NA
## 833 NA 1 0 NA NA
## 834 NA 1 0 NA NA
## 835 NA 1 0 NA NA
## 836 NA 1 0 NA NA
## 837 NA 1 0 NA NA
## 838 NA 1 0 NA NA
## 839 NA 1 0 NA NA
## 840 NA 1 0 NA NA
## 841 NA 1 0 NA NA
## 842 NA 1 0 NA NA
## 843 NA 1 0 NA NA
## 844 NA 1 0 NA NA
## 845 NA 1 0 NA NA
## 846 NA 1 0 NA NA
## 847 NA 1 0 NA NA
## 848 NA 1 0 NA NA
## 849 NA 1 0 NA NA
## 850 NA 1 0 NA NA
## 851 NA 1 0 NA NA
## 852 NA 1 0 NA NA
## 853 NA 1 0 NA NA
## 854 NA 1 0 NA NA
## 855 NA 1 0 NA NA
## 856 NA 1 0 NA NA
## 857 NA 1 0 NA NA
## 858 NA 1 0 NA NA
## 859 NA 1 0 NA NA
## 860 NA 1 0 NA NA
## 861 NA 1 0 NA NA
## 862 NA 1 0 NA NA
## 863 NA 1 0 NA NA
## 864 NA 1 0 NA NA
## 865 NA 1 0 NA NA
## 866 NA 1 0 NA NA
## 867 NA 1 0 NA NA
## 868 NA 1 0 NA NA
## 869 NA 1 0 NA NA
## 870 NA 1 0 NA NA
## 871 NA 1 0 NA NA
## 872 NA 1 0 NA NA
## 873 NA 1 0 NA NA
## 874 NA 1 0 NA NA
## 875 NA 1 0 NA NA
## 876 NA 1 0 NA NA
## 877 NA 1 0 NA NA
## 878 NA 1 0 NA NA
## 879 NA 1 0 NA NA
## 880 NA 1 0 NA NA
## 881 NA 1 0 NA NA
## 882 NA 1 0 NA NA
## 883 NA 1 0 NA NA
## 884 NA 1 0 NA NA
## 885 NA 1 0 NA NA
## 886 NA 1 0 NA NA
## 887 NA 1 0 NA NA
## 888 NA 1 0 NA NA
## 889 NA 1 0 NA NA
## 890 NA 1 0 NA NA
## 891 NA 1 0 NA NA
## 892 NA 1 0 NA NA
## 893 NA 1 0 NA NA
## 894 NA 1 0 NA NA
## 895 NA 1 0 NA NA
## 896 NA 1 0 NA NA
## 897 NA 1 0 NA NA
## 898 NA 1 0 NA NA
## 899 NA 1 0 NA NA
## 900 NA 1 0 NA NA
## 901 NA 1 0 NA NA
## 902 NA 1 0 NA NA
## 903 NA 1 0 NA NA
## 904 NA 1 0 NA NA
## 905 NA 1 0 NA NA
## 906 NA 1 0 NA NA
## 907 NA 1 0 NA NA
## 908 NA 1 0 NA NA
## 909 NA 1 0 NA NA
## 910 NA 1 0 NA NA
## 911 NA 1 0 NA NA
## 912 NA 1 0 NA NA
## 913 NA 1 0 NA NA
## 914 NA 1 0 NA NA
## 915 NA 1 0 NA NA
## 916 NA 1 0 NA NA
## 917 NA 1 0 NA NA
## 918 NA 1 0 NA NA
## 919 NA 1 0 NA NA
## 920 NA 1 0 NA NA
## 921 NA 1 0 NA NA
## 922 NA 1 0 NA NA
## 923 NA 1 0 NA NA
## 924 NA 1 0 NA NA
## 925 NA 1 0 NA NA
## 926 NA 1 0 NA NA
## 927 NA 1 0 NA NA
## 928 NA 1 0 NA NA
## 929 NA 1 0 NA NA
## 930 NA 1 0 NA NA
## 931 NA 1 0 NA NA
## 932 NA 1 0 NA NA
## 933 NA 1 0 NA NA
## 934 NA 1 0 NA NA
## 935 NA 1 0 NA NA
## 936 NA 1 0 NA NA
## 937 NA 1 0 NA NA
## 938 NA 1 0 NA NA
## 939 NA 1 0 NA NA
## 940 NA 1 0 NA NA
## 941 NA 1 0 NA NA
## 942 NA 1 0 NA NA
## 943 NA 1 0 NA NA
## 944 NA 1 0 NA NA
## 945 NA 1 0 NA NA
## 946 NA 1 0 NA NA
## 947 NA 1 0 NA NA
## 948 NA 1 0 NA NA
## 949 NA 1 0 NA NA
## 950 NA 1 0 NA NA
## 951 NA 1 0 NA NA
## 952 NA 1 0 NA NA
## 953 NA 1 0 NA NA
## 954 NA 1 0 NA NA
## 955 NA 1 0 NA NA
## 956 NA 1 0 NA NA
## 957 NA 1 0 NA NA
## 958 NA 1 0 NA NA
## 959 NA 1 0 NA NA
## 960 NA 1 0 NA NA
## 961 NA 1 0 NA NA
## 962 NA 1 0 NA NA
## 963 NA 1 0 NA NA
## 964 NA 1 0 NA NA
## 965 NA 1 0 NA NA
## 966 NA 1 0 NA NA
## 967 NA 1 0 NA NA
## 968 NA 1 0 NA NA
## 969 NA 1 0 NA NA
## 970 NA 1 0 NA NA
## 971 NA 1 0 NA NA
## 972 NA 1 0 NA NA
## 973 NA 1 0 NA NA
## 974 NA 1 0 NA NA
## 975 NA 1 0 NA NA
## 976 NA 1 0 NA NA
## 977 NA 1 0 NA NA
## 978 NA 1 0 NA NA
## 979 NA 1 0 NA NA
## 980 NA 1 0 NA NA
## 981 NA 1 0 NA NA
## 982 NA 1 0 NA NA
## 983 NA 1 0 NA NA
## 984 NA 1 0 NA NA
## 985 NA 1 0 NA NA
## 986 NA 1 0 NA NA
## 987 NA 1 0 NA NA
## 988 NA 1 0 NA NA
## 989 NA 1 0 NA NA
## 990 NA 1 0 NA NA
## 991 NA 1 0 NA NA
## 992 NA 1 0 NA NA
## 993 NA 1 0 NA NA
## 994 NA 1 0 NA NA
## 995 NA 1 0 NA NA
## 996 NA 1 0 NA NA
## 997 NA 1 0 NA NA
## 998 NA 1 0 NA NA
## 999 NA 1 0 NA NA
## 1000 NA 1 0 NA NA
## 1001 NA 1 0 NA NA
## 1002 NA 1 0 NA NA
## 1003 NA 1 0 NA NA
## 1004 NA 1 0 NA NA
## 1005 NA 1 0 NA NA
## 1006 NA 1 0 NA NA
## 1007 NA 1 0 NA NA
## 1008 NA 1 0 NA NA
## 1009 NA 1 0 NA NA
## 1010 NA 1 0 NA NA
## 1011 NA 1 0 NA NA
## 1012 NA 1 0 NA NA
## 1013 NA 1 0 NA NA
## 1014 NA 1 0 NA NA
## 1015 NA 1 0 NA NA
## 1016 NA 1 0 NA NA
## 1017 NA 1 0 NA NA
## 1018 NA 1 0 NA NA
## 1019 NA 1 0 NA NA
## 1020 NA 1 0 NA NA
## 1021 NA 1 0 NA NA
## 1022 NA 1 0 NA NA
## 1023 NA 1 0 NA NA
## 1024 NA 1 0 NA NA
## 1025 NA 1 0 NA NA
## 1026 NA 1 0 NA NA
## 1027 NA 1 0 NA NA
## 1028 NA 1 0 NA NA
## 1029 NA 1 0 NA NA
## 1030 NA 1 0 NA NA
## 1031 NA 1 0 NA NA
## 1032 NA 1 0 NA NA
## 1033 NA 1 0 NA NA
## 1034 NA 1 0 NA NA
## 1035 NA 1 0 NA NA
## 1036 NA 1 0 NA NA
## 1037 NA 1 0 NA NA
## 1038 NA 1 0 NA NA
## 1039 NA 1 0 NA NA
## 1040 NA 1 0 NA NA
## 1041 NA 1 0 NA NA
## 1042 NA 1 0 NA NA
## 1043 NA 1 0 NA NA
## 1044 NA 1 0 NA NA
## 1045 NA 1 0 NA NA
## 1046 NA 1 0 NA NA
## 1047 NA 1 0 NA NA
## 1048 NA 1 0 NA NA
## 1049 NA 1 0 NA NA
## 1050 NA 1 0 NA NA
## 1051 NA 1 0 NA NA
## 1052 NA 1 0 NA NA
## 1053 NA 1 0 NA NA
## 1054 NA 1 0 NA NA
## 1055 NA 1 0 NA NA
## 1056 NA 1 0 NA NA
## 1057 NA 1 0 NA NA
## 1058 NA 1 0 NA NA
## 1059 NA 1 0 NA NA
## 1060 NA 1 0 NA NA
## 1061 NA 1 0 NA NA
## 1062 NA 1 0 NA NA
## 1063 NA 1 0 NA NA
## 1064 NA 1 0 NA NA
## 1065 NA 1 0 NA NA
## 1066 NA 1 0 NA NA
## 1067 NA 1 0 NA NA
## 1068 NA 1 0 NA NA
## 1069 NA 1 0 NA NA
## 1070 NA 1 0 NA NA
## 1071 NA 1 0 NA NA
## 1072 NA 1 0 NA NA
## 1073 NA 1 0 NA NA
## 1074 NA 1 0 NA NA
## 1075 NA 1 0 NA NA
## 1076 NA 1 0 NA NA
## 1077 NA 1 0 NA NA
## 1078 NA 1 0 NA NA
## 1079 NA 1 0 NA NA
## 1080 NA 1 0 NA NA
## 1081 NA 1 0 NA NA
## 1082 NA 1 0 NA NA
## 1083 NA 1 0 NA NA
## 1084 NA 1 0 NA NA
## 1085 NA 1 0 NA NA
## 1086 NA 1 0 NA NA
## 1087 NA 1 0 NA NA
## 1088 NA 1 0 NA NA
## 1089 NA 1 0 NA NA
## 1090 NA 1 0 NA NA
## 1091 NA 1 0 NA NA
## 1092 NA 1 0 NA NA
## 1093 NA 1 0 NA NA
## 1094 NA 1 0 NA NA
## 1095 NA 1 0 NA NA
## 1096 NA 1 0 NA NA
## 1097 NA 1 0 NA NA
## 1098 NA 1 0 NA NA
## 1099 NA 1 0 NA NA
## 1100 NA 1 0 NA NA
## 1101 NA 1 0 NA NA
## 1102 NA 1 0 NA NA
## 1103 NA 1 0 NA NA
## 1104 NA 1 0 NA NA
## 1105 NA 1 0 NA NA
## 1106 NA 1 0 NA NA
## 1107 NA 1 0 NA NA
## 1108 NA 1 0 NA NA
## 1109 NA 1 0 NA NA
## 1110 NA 1 0 NA NA
## 1111 NA 1 0 NA NA
## 1112 NA 1 0 NA NA
## 1113 NA 1 0 NA NA
## 1114 NA 1 0 NA NA
## 1115 NA 1 0 NA NA
## 1116 NA 1 0 NA NA
## 1117 NA 1 0 NA NA
## 1118 NA 1 0 NA NA
## 1119 NA 1 0 NA NA
## 1120 NA 1 0 NA NA
## 1121 NA 1 0 NA NA
## 1122 NA 1 0 NA NA
## 1123 NA 1 0 NA NA
## 1124 NA 1 0 NA NA
## 1125 NA 1 0 NA NA
## 1126 NA 1 0 NA NA
## 1127 NA 1 0 NA NA
## 1128 NA 1 0 NA NA
## 1129 NA 1 0 NA NA
## 1130 NA 1 0 NA NA
## 1131 NA 1 0 NA NA
## 1132 NA 1 0 NA NA
## 1133 NA 1 0 NA NA
## 1134 NA 1 0 NA NA
## 1135 NA 1 0 NA NA
## 1136 NA 1 0 NA NA
## 1137 NA 1 0 NA NA
## 1138 NA 1 0 NA NA
## 1139 NA 1 0 NA NA
## 1140 NA 1 0 NA NA
## 1141 NA 1 0 NA NA
## 1142 NA 1 0 NA NA
## 1143 NA 1 0 NA NA
## 1144 NA 1 0 NA NA
## 1145 NA 1 0 NA NA
## 1146 NA 1 0 NA NA
## 1147 NA 1 0 NA NA
## 1148 NA 1 0 NA NA
## 1149 NA 1 0 NA NA
## 1150 NA 1 0 NA NA
## 1151 NA 1 0 NA NA
## 1152 NA 1 0 NA NA
## 1153 NA 1 0 NA NA
## 1154 NA 1 0 NA NA
## 1155 NA 1 0 NA NA
## 1156 NA 1 0 NA NA
## 1157 NA 1 0 NA NA
## 1158 NA 1 0 NA NA
## 1159 NA 1 0 NA NA
## 1160 NA 1 0 NA NA
## 1161 NA 1 0 NA NA
## 1162 NA 1 0 NA NA
## 1163 NA 1 0 NA NA
## 1164 NA 1 0 NA NA
## 1165 NA 1 0 NA NA
## 1166 NA 1 0 NA NA
## 1167 NA 1 0 NA NA
## 1168 NA 1 0 NA NA
## 1169 NA 1 0 NA NA
## 1170 NA 1 0 NA NA
## 1171 NA 1 0 NA NA
## 1172 NA 1 0 NA NA
## 1173 NA 1 0 NA NA
## 1174 NA 1 0 NA NA
## 1175 NA 1 0 NA NA
## 1176 NA 1 0 NA NA
## 1177 NA 1 0 NA NA
## 1178 NA 1 0 NA NA
## 1179 NA 1 0 NA NA
## 1180 NA 1 0 NA NA
## 1181 NA 1 0 NA NA
## 1182 NA 1 0 NA NA
## 1183 NA 1 0 NA NA
## 1184 NA 1 0 NA NA
## 1185 NA 1 0 NA NA
## 1186 NA 1 0 NA NA
## 1187 NA 1 0 NA NA
## 1188 NA 1 0 NA NA
## 1189 NA 1 0 NA NA
## 1190 NA 1 0 NA NA
## 1191 NA 1 0 NA NA
## 1192 NA 1 0 NA NA
## 1193 NA 1 0 NA NA
## 1194 NA 1 0 NA NA
## 1195 NA 1 0 NA NA
## 1196 NA 1 0 NA NA
## 1197 NA 1 0 NA NA
## 1198 NA 1 0 NA NA
## 1199 NA 1 0 NA NA
## 1200 NA 1 0 NA NA
## 1201 NA 1 0 NA NA
## 1202 NA 1 0 NA NA
## 1203 NA 1 0 NA NA
## 1204 NA 1 0 NA NA
## 1205 NA 1 0 NA NA
## 1206 NA 1 0 NA NA
## 1207 NA 1 0 NA NA
## 1208 NA 1 0 NA NA
## 1209 NA 1 0 NA NA
## 1210 NA 1 0 NA NA
## 1211 NA 1 0 NA NA
## 1212 NA 1 0 NA NA
## 1213 NA 1 0 NA NA
## 1214 NA 1 0 NA NA
## 1215 NA 1 0 NA NA
## 1216 NA 1 0 NA NA
## 1217 NA 1 0 NA NA
## 1218 NA 1 0 NA NA
## 1219 NA 1 0 NA NA
## 1220 NA 1 0 NA NA
## 1221 NA 1 0 NA NA
## 1222 NA 1 0 NA NA
## 1223 NA 1 0 NA NA
## 1224 NA 1 0 NA NA
## 1225 NA 1 0 NA NA
## 1226 NA 1 0 NA NA
## 1227 NA 1 0 NA NA
## 1228 NA 1 0 NA NA
## 1229 NA 1 0 NA NA
## 1230 NA 1 0 NA NA
## 1231 NA 1 0 NA NA
## 1232 NA 1 0 NA NA
## 1233 NA 1 0 NA NA
## 1234 NA 1 0 NA NA
## 1235 NA 1 0 NA NA
## 1236 NA 1 0 NA NA
## 1237 NA 1 0 NA NA
## 1238 NA 1 0 NA NA
## 1239 NA 1 0 NA NA
## 1240 NA 1 0 NA NA
## 1241 NA 1 0 NA NA
## 1242 NA 1 0 NA NA
## 1243 NA 1 0 NA NA
## 1244 NA 1 0 NA NA
## 1245 NA 1 0 NA NA
## 1246 NA 1 0 NA NA
## 1247 NA 1 0 NA NA
## 1248 NA 1 0 NA NA
## 1249 NA 1 0 NA NA
## 1250 NA 1 0 NA NA
## 1251 NA 1 0 NA NA
## 1252 NA 1 0 NA NA
## 1253 NA 1 0 NA NA
## 1254 NA 1 0 NA NA
## 1255 NA 1 0 NA NA
## 1256 NA 1 0 NA NA
## 1257 NA 1 0 NA NA
## 1258 NA 1 0 NA NA
## 1259 NA 1 0 NA NA
## 1260 NA 1 0 NA NA
## 1261 NA 1 0 NA NA
## 1262 NA 1 0 NA NA
## 1263 NA 1 0 NA NA
## 1264 NA 1 0 NA NA
## 1265 NA 1 0 NA NA
## 1266 NA 1 0 NA NA
## 1267 NA 1 0 NA NA
## 1268 NA 1 0 NA NA
## 1269 NA 1 0 NA NA
## 1270 NA 1 0 NA NA
## 1271 NA 1 0 NA NA
## 1272 NA 1 0 NA NA
## 1273 NA 1 0 NA NA
## 1274 NA 1 0 NA NA
## 1275 NA 1 0 NA NA
## 1276 NA 1 0 NA NA
## 1277 NA 1 0 NA NA
## 1278 NA 1 0 NA NA
## 1279 NA 1 0 NA NA
## 1280 NA 1 0 NA NA
## 1281 NA 1 0 NA NA
## 1282 NA 1 0 NA NA
## 1283 NA 1 0 NA NA
## 1284 NA 1 0 NA NA
## 1285 NA 1 0 NA NA
## 1286 NA 1 0 NA NA
## 1287 NA 1 0 NA NA
## 1288 NA 1 0 NA NA
## 1289 NA 1 0 NA NA
## 1290 NA 1 0 NA NA
## 1291 NA 1 0 NA NA
## 1292 NA 1 0 NA NA
## 1293 NA 1 0 NA NA
## 1294 NA 1 0 NA NA
## 1295 NA 1 0 NA NA
## 1296 NA 1 0 NA NA
## 1297 NA 1 0 NA NA
## 1298 NA 1 0 NA NA
## 1299 NA 1 0 NA NA
## 1300 NA 1 0 NA NA
## 1301 NA 1 0 NA NA
## 1302 NA 1 0 NA NA
## 1303 NA 1 0 NA NA
## 1304 NA 1 0 NA NA
## 1305 NA 1 0 NA NA
## 1306 NA 1 0 NA NA
## 1307 NA 1 0 NA NA
## 1308 NA 1 0 NA NA
## 1309 NA 1 0 NA NA
## 1310 NA 1 0 NA NA
## 1311 NA 1 0 NA NA
## 1312 NA 1 0 NA NA
## 1313 NA 1 0 NA NA
## 1314 NA 1 0 NA NA
## 1315 NA 1 0 NA NA
## 1316 NA 1 0 NA NA
## 1317 NA 1 0 NA NA
## 1318 NA 1 0 NA NA
## 1319 NA 1 0 NA NA
## 1320 NA 1 0 NA NA
## 1321 NA 1 0 NA NA
## 1322 NA 1 0 NA NA
## 1323 NA 1 0 NA NA
## 1324 NA 1 0 NA NA
## 1325 NA 1 0 NA NA
## 1326 NA 1 0 NA NA
## 1327 NA 1 0 NA NA
## 1328 NA 1 0 NA NA
## 1329 NA 1 0 NA NA
## 1330 NA 1 0 NA NA
## 1331 NA 1 0 NA NA
## 1332 NA 1 0 NA NA
## 1333 NA 1 0 NA NA
## 1334 NA 1 0 NA NA
## 1335 NA 1 0 NA NA
## 1336 NA 1 0 NA NA
## 1337 NA 1 0 NA NA
## 1338 NA 1 0 NA NA
## 1339 NA 1 0 NA NA
## 1340 NA 1 0 NA NA
## 1341 NA 1 0 NA NA
## 1342 NA 1 0 NA NA
## 1343 NA 1 0 NA NA
## 1344 NA 1 0 NA NA
## 1345 NA 1 0 NA NA
## 1346 NA 1 0 NA NA
## 1347 NA 1 0 NA NA
## 1348 NA 1 0 NA NA
## 1349 NA 1 0 NA NA
## 1350 NA 1 0 NA NA
## 1351 NA 1 0 NA NA
## 1352 NA 1 0 NA NA
## 1353 NA 1 0 NA NA
## 1354 NA 1 0 NA NA
## 1355 NA 1 0 NA NA
## 1356 NA 1 0 NA NA
## 1357 NA 1 0 NA NA
## 1358 NA 1 0 NA NA
## 1359 NA 1 0 NA NA
## 1360 NA 1 0 NA NA
## 1361 NA 1 0 NA NA
## 1362 NA 1 0 NA NA
## 1363 NA 1 0 NA NA
## 1364 NA 1 0 NA NA
## 1365 NA 1 0 NA NA
## 1366 NA 1 0 NA NA
## 1367 NA 1 0 NA NA
## 1368 NA 1 0 NA NA
## 1369 NA 1 0 NA NA
## 1370 NA 1 0 NA NA
## 1371 NA 1 0 NA NA
## 1372 NA 1 0 NA NA
## 1373 NA 1 0 NA NA
## 1374 NA 1 0 NA NA
## 1375 NA 1 0 NA NA
## 1376 NA 1 0 NA NA
## 1377 NA 1 0 NA NA
## 1378 NA 1 0 NA NA
## 1379 NA 1 0 NA NA
## 1380 NA 1 0 NA NA
## 1381 NA 1 0 NA NA
## 1382 NA 1 0 NA NA
## 1383 NA 1 0 NA NA
## 1384 NA 1 0 NA NA
## 1385 NA 1 0 NA NA
## 1386 NA 1 0 NA NA
## 1387 NA 1 0 NA NA
## 1388 NA 1 0 NA NA
## 1389 NA 1 0 NA NA
## 1390 NA 1 0 NA NA
## 1391 NA 1 0 NA NA
## 1392 NA 1 0 NA NA
## 1393 NA 1 0 NA NA
## 1394 NA 1 0 NA NA
## 1395 NA 1 0 NA NA
## 1396 NA 1 0 NA NA
## 1397 NA 1 0 NA NA
## 1398 NA 1 0 NA NA
## 1399 NA 1 0 NA NA
## 1400 NA 1 0 NA NA
## 1401 NA 1 0 NA NA
## 1402 NA 1 0 NA NA
## 1403 NA 1 0 NA NA
## 1404 NA 1 0 NA NA
## 1405 NA 1 0 NA NA
## 1406 NA 1 0 NA NA
## 1407 NA 1 0 NA NA
## 1408 NA 1 0 NA NA
## 1409 NA 1 0 NA NA
## 1410 NA 1 0 NA NA
## 1411 NA 1 0 NA NA
## 1412 NA 1 0 NA NA
## 1413 NA 1 0 NA NA
## 1414 NA 1 0 NA NA
## 1415 NA 1 0 NA NA
## 1416 NA 1 0 NA NA
## 1417 NA 1 0 NA NA
## 1418 NA 1 0 NA NA
## 1419 NA 1 0 NA NA
## 1420 NA 1 0 NA NA
## 1421 NA 1 0 NA NA
## 1422 NA 1 0 NA NA
## 1423 NA 1 0 NA NA
## 1424 NA 1 0 NA NA
## 1425 NA 1 0 NA NA
## 1426 NA 1 0 NA NA
## 1427 NA 1 0 NA NA
## 1428 NA 1 0 NA NA
## 1429 NA 1 0 NA NA
## 1430 NA 1 0 NA NA
## 1431 NA 1 0 NA NA
## 1432 NA 1 0 NA NA
## 1433 NA 1 0 NA NA
## 1434 NA 1 0 NA NA
## 1435 NA 1 0 NA NA
## 1436 NA 1 0 NA NA
## 1437 NA 1 0 NA NA
## 1438 NA 1 0 NA NA
## 1439 NA 1 0 NA NA
## 1440 NA 1 0 NA NA
## 1441 NA 1 0 NA NA
## 1442 NA 1 0 NA NA
## 1443 NA 1 0 NA NA
## 1444 NA 1 0 NA NA
## 1445 NA 1 0 NA NA
## 1446 NA 1 0 NA NA
## 1447 NA 1 0 NA NA
## 1448 NA 1 0 NA NA
## 1449 NA 1 0 NA NA
## 1450 NA 1 0 NA NA
## 1451 NA 1 0 NA NA
## 1452 NA 1 0 NA NA
## 1453 NA 1 0 NA NA
## 1454 NA 1 0 NA NA
## 1455 NA 1 0 NA NA
## 1456 NA 1 0 NA NA
## 1457 NA 1 0 NA NA
## 1458 NA 1 0 NA NA
## 1459 NA 1 0 NA NA
## 1460 NA 1 0 NA NA
## 1461 NA 1 0 NA NA
## 1462 NA 1 0 NA NA
## 1463 NA 1 0 NA NA
## 1464 NA 1 0 NA NA
## 1465 NA 1 0 NA NA
## 1466 NA 1 0 NA NA
## 1467 NA 1 0 NA NA
## 1468 NA 1 0 NA NA
## 1469 NA 1 0 NA NA
## 1470 NA 1 0 NA NA
## 1471 NA 1 0 NA NA
## 1472 NA 1 0 NA NA
## 1473 NA 1 0 NA NA
## 1474 NA 1 0 NA NA
## 1475 NA 1 0 NA NA
## 1476 NA 1 0 NA NA
## 1477 NA 1 0 NA NA
## 1478 NA 1 0 NA NA
## 1479 NA 1 0 NA NA
## 1480 NA 1 0 NA NA
## 1481 NA 1 0 NA NA
## 1482 NA 1 0 NA NA
## 1483 NA 1 0 NA NA
## 1484 NA 1 0 NA NA
## 1485 NA 1 0 NA NA
## 1486 NA 1 0 NA NA
## 1487 NA 1 0 NA NA
## 1488 NA 1 0 NA NA
## 1489 NA 1 0 NA NA
## 1490 NA 1 0 NA NA
## 1491 NA 1 0 NA NA
## 1492 NA 1 0 NA NA
## 1493 NA 1 0 NA NA
## 1494 NA 1 0 NA NA
## 1495 NA 1 0 NA NA
## 1496 NA 1 0 NA NA
## 1497 NA 1 0 NA NA
## 1498 NA 1 0 NA NA
## 1499 NA 1 0 NA NA
## 1500 NA 1 0 NA NA
## 1501 NA 1 0 NA NA
## 1502 NA 1 0 NA NA
## 1503 NA 1 0 NA NA
## 1504 NA 1 0 NA NA
## 1505 NA 1 0 NA NA
## 1506 NA 1 0 NA NA
## 1507 NA 1 0 NA NA
## 1508 NA 1 0 NA NA
## 1509 NA 1 0 NA NA
## 1510 NA 1 0 NA NA
## 1511 NA 1 0 NA NA
## 1512 NA 1 0 NA NA
## 1513 NA 1 0 NA NA
## 1514 NA 1 0 NA NA
## 1515 NA 1 0 NA NA
## 1516 NA 1 0 NA NA
## 1517 NA 1 0 NA NA
## 1518 NA 1 0 NA NA
## 1519 NA 1 0 NA NA
## 1520 NA 1 0 NA NA
## 1521 NA 1 0 NA NA
## 1522 NA 1 0 NA NA
## 1523 NA 1 0 NA NA
## 1524 NA 1 0 NA NA
## 1525 NA 1 0 NA NA
## 1526 NA 1 0 NA NA
## 1527 NA 1 0 NA NA
## 1528 NA 1 0 NA NA
## 1529 NA 1 0 NA NA
## 1530 NA 1 0 NA NA
## 1531 NA 1 0 NA NA
## 1532 NA 1 0 NA NA
## 1533 NA 1 0 NA NA
## 1534 NA 1 0 NA NA
## 1535 NA 1 0 NA NA
## 1536 NA 1 0 NA NA
## 1537 NA 1 0 NA NA
## 1538 NA 1 0 NA NA
## Days_since_last_review Capacity_Sqr Beds_Sqr Baths_Sqr ln_Price ln_Beds
## 1 521 25 16 NA 7.824446 1.6094379
## 2 365 25 9 NA 7.213032 1.3862944
## 3 758 64 16 NA 7.158514 1.6094379
## 4 846 16 16 NA 7.027315 1.6094379
## 5 80 36 9 NA 6.923629 1.3862944
## 6 860 64 16 NA 6.908755 1.6094379
## 7 879 64 16 NA 6.908755 1.6094379
## 8 124 4 1 NA 6.907755 0.6931472
## 9 90 36 4 NA 6.875232 1.0986123
## 10 650 49 16 NA 6.869014 1.6094379
## 11 12 36 16 NA 6.857514 1.6094379
## 12 696 16 4 NA 6.849066 1.0986123
## 13 319 9 4 NA 6.784457 1.0986123
## 14 681 36 9 NA 6.701960 1.3862944
## 15 713 25 9 NA 6.672033 1.3862944
## 16 1092 4 1 NA 6.647688 0.6931472
## 17 711 49 16 NA 6.646391 1.6094379
## 18 720 49 16 NA 6.642487 1.6094379
## 19 776 25 9 NA 6.593045 1.3862944
## 20 1020 36 16 NA 6.545350 1.6094379
## 21 658 16 9 NA 6.535241 1.3862944
## 22 425 36 4 NA 6.525030 1.0986123
## 23 882 36 9 NA 6.522093 1.3862944
## 24 32 4 1 NA 6.508769 0.6931472
## 25 712 25 9 NA 6.496775 1.3862944
## 26 24 4 1 NA 6.490724 0.6931472
## 27 120 4 1 NA 6.480045 0.6931472
## 28 307 4 4 NA 6.478510 1.0986123
## 29 893 36 9 NA 6.469250 1.3862944
## 30 646 9 1 NA 6.467699 0.6931472
## 31 436 16 9 NA 6.456770 1.3862944
## 32 868 36 16 NA 6.447306 1.6094379
## 33 698 1 1 NA 6.445720 0.6931472
## 34 820 36 9 NA 6.431331 1.3862944
## 35 881 36 16 NA 6.431331 1.6094379
## 36 678 25 9 NA 6.424869 1.3862944
## 37 379 16 9 NA 6.419995 1.3862944
## 38 704 36 9 NA 6.418365 1.3862944
## 39 739 36 9 NA 6.415097 1.3862944
## 40 784 49 16 NA 6.415097 1.6094379
## 41 702 49 16 NA 6.415097 1.6094379
## 42 804 1 4 NA 6.371612 1.0986123
## 43 17 4 1 NA 6.369901 0.6931472
## 44 249 4 NA NA 6.350886 NA
## 45 19 25 4 NA 6.345636 1.0986123
## 46 922 256 256 NA 6.329721 2.8332133
## 47 12 4 1 NA 6.327937 0.6931472
## 48 34 25 4 NA 6.322565 1.0986123
## 49 687 16 4 NA 6.320768 1.0986123
## 50 12 4 1 NA 6.318968 0.6931472
## 51 730 25 9 NA 6.311735 1.3862944
## 52 710 64 4 NA 6.302619 1.0986123
## 53 28 25 4 NA 6.302619 1.0986123
## 54 24 4 1 NA 6.289716 0.6931472
## 55 21 64 16 NA 6.287859 1.6094379
## 56 692 25 9 NA 6.274762 1.3862944
## 57 713 16 9 NA 6.255750 1.3862944
## 58 678 144 25 NA 6.253829 1.7917595
## 59 118 144 25 NA 6.226537 1.7917595
## 60 188 4 1 NA 6.224558 0.6931472
## 61 728 36 9 NA 6.216606 1.3862944
## 62 747 1 1 NA 6.216606 0.6931472
## 63 689 25 9 NA 6.208590 1.3862944
## 64 717 25 9 NA 6.202536 1.3862944
## 65 384 64 16 NA 6.186209 1.6094379
## 66 90 36 9 NA 6.184149 1.3862944
## 67 20 64 9 NA 6.175867 1.3862944
## 68 152 25 4 NA 6.165418 1.0986123
## 69 885 4 NA NA 6.161207 NA
## 70 36 4 NA NA 6.161207 NA
## 71 95 25 9 NA 6.159095 1.3862944
## 72 736 25 4 NA 6.156979 1.0986123
## 73 865 25 4 NA 6.154858 1.0986123
## 74 114 25 9 NA 6.154858 1.3862944
## 75 110 25 9 NA 6.144186 1.3862944
## 76 723 25 9 NA 6.137727 1.3862944
## 77 610 36 4 NA 6.135565 1.0986123
## 78 829 49 9 NA 6.135565 1.3862944
## 79 702 16 4 NA 6.135565 1.0986123
## 80 734 25 4 NA 6.133398 1.0986123
## 81 24 36 9 NA 6.126869 1.3862944
## 82 19 16 9 NA 6.126869 1.3862944
## 83 57 4 1 NA 6.124683 0.6931472
## 84 641 256 81 NA 6.111467 2.3025851
## 85 75 4 1 NA 6.111467 0.6931472
## 86 636 4 1 NA 6.100319 0.6931472
## 87 996 4 1 NA 6.095825 0.6931472
## 88 1019 49 49 NA 6.091310 2.0794415
## 89 729 36 9 NA 6.070738 1.3862944
## 90 244 36 9 NA 6.068426 1.3862944
## 91 730 36 9 NA 6.068426 1.3862944
## 92 18 9 1 NA 6.066108 0.6931472
## 93 110 36 16 NA 6.061457 1.6094379
## 94 17 64 9 NA 6.061457 1.3862944
## 95 32 81 16 NA 6.047372 1.6094379
## 96 889 16 4 NA 6.042633 1.0986123
## 97 40 16 4 NA 6.042633 1.0986123
## 98 313 64 25 NA 6.042633 1.7917595
## 99 148 64 25 NA 6.042633 1.7917595
## 100 31 4 1 NA 6.035481 0.6931472
## 101 112 4 1 NA 6.033086 0.6931472
## 102 707 4 1 NA 6.033086 0.6931472
## 103 57 25 16 NA 6.018593 1.6094379
## 104 342 16 4 NA 6.011267 1.0986123
## 105 413 4 1 NA 6.011267 0.6931472
## 106 568 36 9 NA 5.998937 1.3862944
## 107 250 25 16 NA 5.993961 1.6094379
## 108 305 36 9 NA 5.993961 1.3862944
## 109 140 25 16 NA 5.993961 1.6094379
## 110 849 16 1 NA 5.993961 0.6931472
## 111 137 25 16 NA 5.993961 1.6094379
## 112 23 36 4 NA 5.991465 1.0986123
## 113 286 4 1 NA 5.978886 0.6931472
## 114 690 4 1 NA 5.973810 0.6931472
## 115 17 81 25 NA 5.971262 1.7917595
## 116 366 4 1 NA 5.966147 0.6931472
## 117 290 81 16 NA 5.955837 1.6094379
## 118 33 81 25 NA 5.955837 1.7917595
## 119 30 64 9 NA 5.955837 1.3862944
## 120 26 64 9 NA 5.955837 1.3862944
## 121 18 64 9 NA 5.955837 1.3862944
## 122 306 36 9 NA 5.942799 1.3862944
## 123 1093 16 4 NA 5.937536 1.0986123
## 124 895 16 4 NA 5.937536 1.0986123
## 125 337 4 1 NA 5.932245 0.6931472
## 126 109 9 1 NA 5.929589 0.6931472
## 127 891 4 1 NA 5.929589 0.6931472
## 128 330 4 1 NA 5.916202 0.6931472
## 129 12 4 1 NA 5.910797 0.6931472
## 130 21 64 9 NA 5.905362 1.3862944
## 131 707 4 1 NA 5.902633 0.6931472
## 132 151 9 NA NA 5.899897 NA
## 133 133 4 1 NA 5.899897 0.6931472
## 134 266 9 4 NA 5.899897 1.0986123
## 135 349 64 16 NA 5.888878 1.6094379
## 136 729 36 9 NA 5.888878 1.3862944
## 137 863 36 9 NA 5.888878 1.3862944
## 138 36 4 1 NA 5.888878 0.6931472
## 139 737 196 196 NA 5.886104 2.7080502
## 140 770 4 1 NA 5.880533 0.6931472
## 141 696 36 25 NA 5.880533 1.7917595
## 142 687 4 1 NA 5.877736 0.6931472
## 143 351 4 1 NA 5.874931 0.6931472
## 144 221 16 9 NA 5.860786 1.3862944
## 145 25 256 49 NA 5.860786 2.0794415
## 146 367 16 4 NA 5.860786 1.0986123
## 147 20 16 4 NA 5.857933 1.0986123
## 148 6 25 4 NA 5.852202 1.0986123
## 149 830 16 4 NA 5.846439 1.0986123
## 150 107 4 1 NA 5.843544 0.6931472
## 151 467 4 1 NA 5.837730 0.6931472
## 152 27 4 1 NA 5.826000 0.6931472
## 153 364 36 9 NA 5.823046 1.3862944
## 154 368 36 9 NA 5.823046 1.3862944
## 155 89 25 9 NA 5.823046 1.3862944
## 156 78 9 1 NA 5.820083 0.6931472
## 157 28 16 4 NA 5.805135 1.0986123
## 158 32 9 1 NA 5.805135 0.6931472
## 159 104 4 1 NA 5.805135 0.6931472
## 160 114 16 4 NA 5.796058 1.0986123
## 161 662 16 9 NA 5.796058 1.3862944
## 162 722 16 1 NA 5.796058 0.6931472
## 163 656 36 9 NA 5.796058 1.3862944
## 164 44 9 4 NA 5.789960 1.0986123
## 165 746 4 1 NA 5.783825 0.6931472
## 166 363 9 1 NA 5.780744 0.6931472
## 167 730 9 4 NA 5.771441 1.0986123
## 168 66 36 9 NA 5.771441 1.3862944
## 169 230 36 9 NA 5.771441 1.3862944
## 170 729 9 4 NA 5.771441 1.0986123
## 171 754 4 1 NA 5.771441 0.6931472
## 172 142 16 9 NA 5.768321 1.3862944
## 173 888 4 1 NA 5.752573 0.6931472
## 174 135 16 4 NA 5.752573 1.0986123
## 175 82 16 4 NA 5.752573 1.0986123
## 176 728 9 1 NA 5.749393 0.6931472
## 177 698 4 1 NA 5.746203 0.6931472
## 178 897 16 4 NA 5.743003 1.0986123
## 179 924 36 25 NA 5.730100 1.7917595
## 180 38 16 4 NA 5.730100 1.0986123
## 181 10 16 4 NA 5.730100 1.0986123
## 182 27 9 1 NA 5.723585 0.6931472
## 183 729 9 4 NA 5.717028 1.0986123
## 184 737 16 4 NA 5.707110 1.0986123
## 185 780 256 256 NA 5.707110 2.8332133
## 186 814 9 1 NA 5.707110 0.6931472
## 187 834 9 1 NA 5.707110 0.6931472
## 188 713 9 4 NA 5.707110 1.0986123
## 189 1022 9 4 NA 5.707110 1.0986123
## 190 775 9 1 NA 5.707110 0.6931472
## 191 775 9 1 NA 5.707110 0.6931472
## 192 605 4 1 NA 5.707110 0.6931472
## 193 394 4 1 NA 5.707110 0.6931472
## 194 25 4 1 NA 5.707110 0.6931472
## 195 702 4 4 NA 5.703782 1.0986123
## 196 732 4 1 NA 5.690359 0.6931472
## 197 19 16 9 NA 5.690359 1.3862944
## 198 22 4 1 NA 5.673323 0.6931472
## 199 690 36 25 NA 5.673323 1.7917595
## 200 39 9 1 NA 5.673323 0.6931472
## 201 78 4 1 NA 5.673323 0.6931472
## 202 1020 36 16 NA 5.666427 1.6094379
## 203 372 36 9 NA 5.666427 1.3862944
## 204 24 25 4 NA 5.666427 1.0986123
## 205 725 4 1 NA 5.662960 0.6931472
## 206 16 16 4 NA 5.659482 1.0986123
## 207 69 9 4 NA 5.652489 1.0986123
## 208 649 9 1 NA 5.641907 0.6931472
## 209 656 36 9 NA 5.638355 1.3862944
## 210 186 36 9 NA 5.638355 1.3862944
## 211 401 36 9 NA 5.638355 1.3862944
## 212 48 36 9 NA 5.638355 1.3862944
## 213 789 100 100 NA 5.634790 2.3978953
## 214 558 4 1 NA 5.631212 0.6931472
## 215 106 9 4 NA 5.624018 1.0986123
## 216 68 4 1 NA 5.616771 0.6931472
## 217 698 4 1 NA 5.613128 0.6931472
## 218 656 4 1 NA 5.602119 0.6931472
## 219 193 9 4 NA 5.602119 1.0986123
## 220 22 4 1 NA 5.602119 0.6931472
## 221 693 64 64 NA 5.598422 2.1972246
## 222 736 64 64 NA 5.598422 2.1972246
## 223 691 64 64 NA 5.598422 2.1972246
## 224 735 36 9 NA 5.594711 1.3862944
## 225 685 64 9 NA 5.594711 1.3862944
## 226 396 16 4 NA 5.594711 1.0986123
## 227 17 4 1 NA 5.590987 0.6931472
## 228 351 16 4 NA 5.587249 1.0986123
## 229 31 4 1 NA 5.587249 0.6931472
## 230 67 25 4 NA 5.587249 1.0986123
## 231 481 4 1 NA 5.572154 0.6931472
## 232 60 9 4 NA 5.568345 1.0986123
## 233 693 4 1 NA 5.564520 0.6931472
## 234 19 4 1 NA 5.564520 0.6931472
## 235 89 4 1 NA 5.564520 0.6931472
## 236 21 4 1 NA 5.564520 0.6931472
## 237 778 1 1 NA 5.564520 0.6931472
## 238 683 1 1 NA 5.564520 0.6931472
## 239 136 4 1 NA 5.564520 0.6931472
## 240 32 16 4 NA 5.560682 1.0986123
## 241 50 25 4 NA 5.560682 1.0986123
## 242 32 25 4 NA 5.560682 1.0986123
## 243 7 4 1 NA 5.556828 0.6931472
## 244 34 25 4 NA 5.556828 1.0986123
## 245 19 4 NA NA 5.556828 NA
## 246 706 4 1 NA 5.552960 0.6931472
## 247 291 9 4 NA 5.549076 1.0986123
## 248 700 9 4 NA 5.549076 1.0986123
## 249 461 16 1 NA 5.545177 0.6931472
## 250 275 16 4 NA 5.545177 1.0986123
## 251 310 36 16 NA 5.545177 1.6094379
## 252 727 36 9 NA 5.537334 1.3862944
## 253 873 36 9 NA 5.537334 1.3862944
## 254 942 36 9 NA 5.537334 1.3862944
## 255 707 16 4 NA 5.533389 1.0986123
## 256 320 16 4 NA 5.529429 1.0986123
## 257 36 4 1 NA 5.529429 0.6931472
## 258 445 4 1 NA 5.525453 0.6931472
## 259 1068 9 4 NA 5.525453 1.0986123
## 260 83 64 16 NA 5.525453 1.6094379
## 261 717 9 4 NA 5.525453 1.0986123
## 262 27 9 16 NA 5.525453 1.6094379
## 263 44 1 1 NA 5.525453 0.6931472
## 264 27 4 1 NA 5.525453 0.6931472
## 265 58 4 1 NA 5.521461 0.6931472
## 266 726 36 36 NA 5.517453 1.9459101
## 267 738 81 16 NA 5.517453 1.6094379
## 268 461 100 100 NA 5.509388 2.3978953
## 269 931 36 4 NA 5.505332 1.0986123
## 270 817 36 4 NA 5.505332 1.0986123
## 271 44 25 4 NA 5.505332 1.0986123
## 272 24 25 4 NA 5.505332 1.0986123
## 273 916 4 1 NA 5.501258 0.6931472
## 274 830 1 1 NA 5.501258 0.6931472
## 275 371 36 9 NA 5.501258 1.3862944
## 276 109 16 4 NA 5.497168 1.0986123
## 277 103 16 4 NA 5.488938 1.0986123
## 278 193 9 4 NA 5.484797 1.0986123
## 279 30 4 1 NA 5.484797 0.6931472
## 280 658 4 1 NA 5.484797 0.6931472
## 281 1018 9 1 NA 5.480639 0.6931472
## 282 724 4 1 NA 5.480639 0.6931472
## 283 729 4 1 NA 5.476464 0.6931472
## 284 832 4 NA NA 5.463832 NA
## 285 990 4 1 NA 5.463832 0.6931472
## 286 215 16 4 NA 5.463832 1.0986123
## 287 542 16 9 NA 5.463832 1.3862944
## 288 22 16 4 NA 5.459586 1.0986123
## 289 677 36 16 NA 5.455321 1.6094379
## 290 26 1 1 NA 5.451038 0.6931472
## 291 111 9 9 NA 5.451038 1.3862944
## 292 16 4 1 NA 5.446737 0.6931472
## 293 898 4 1 NA 5.442418 0.6931472
## 294 126 9 4 NA 5.442418 1.0986123
## 295 880 36 16 NA 5.438079 1.6094379
## 296 740 64 64 NA 5.438079 2.1972246
## 297 742 16 4 NA 5.438079 1.0986123
## 298 824 9 1 NA 5.433722 0.6931472
## 299 715 81 16 NA 5.433722 1.6094379
## 300 713 9 1 NA 5.433722 0.6931472
## 301 705 9 1 NA 5.433722 0.6931472
## 302 27 4 1 NA 5.433722 0.6931472
## 303 705 4 1 NA 5.433722 0.6931472
## 304 370 16 4 NA 5.433722 1.0986123
## 305 43 16 4 NA 5.433722 1.0986123
## 306 180 4 4 NA 5.429346 1.0986123
## 307 62 36 4 NA 5.424950 1.0986123
## 308 697 100 100 NA 5.420535 2.3978953
## 309 27 4 1 NA 5.411646 0.6931472
## 310 13 4 1 NA 5.411646 0.6931472
## 311 56 16 4 NA 5.411646 1.0986123
## 312 706 4 1 NA 5.402677 0.6931472
## 313 681 1 1 NA 5.402677 0.6931472
## 314 398 49 9 NA 5.398163 1.3862944
## 315 161 36 4 NA 5.398163 1.0986123
## 316 685 16 4 NA 5.398163 1.0986123
## 317 221 36 9 NA 5.398163 1.3862944
## 318 725 36 25 NA 5.398163 1.7917595
## 319 31 36 4 NA 5.398163 1.0986123
## 320 96 4 1 NA 5.398163 0.6931472
## 321 29 16 9 NA 5.393628 1.3862944
## 322 239 16 4 NA 5.393628 1.0986123
## 323 91 4 4 NA 5.389072 1.0986123
## 324 660 4 1 NA 5.384495 0.6931472
## 325 712 4 1 NA 5.379897 0.6931472
## 326 18 4 1 NA 5.375278 0.6931472
## 327 125 49 16 NA 5.375278 1.6094379
## 328 48 49 16 NA 5.375278 1.6094379
## 329 754 36 4 NA 5.370638 1.0986123
## 330 665 4 1 NA 5.370638 0.6931472
## 331 319 36 16 NA 5.370638 1.6094379
## 332 16 4 1 NA 5.370638 0.6931472
## 333 622 16 4 NA 5.365976 1.0986123
## 334 762 25 9 NA 5.365976 1.3862944
## 335 615 16 1 NA 5.365976 0.6931472
## 336 833 9 1 NA 5.356586 0.6931472
## 337 701 4 1 NA 5.356586 0.6931472
## 338 25 4 1 NA 5.356586 0.6931472
## 339 701 36 25 NA 5.351858 1.7917595
## 340 16 4 1 NA 5.351858 0.6931472
## 341 127 25 9 NA 5.347108 1.3862944
## 342 241 4 1 NA 5.347108 0.6931472
## 343 139 4 1 NA 5.342334 0.6931472
## 344 717 1 1 NA 5.337538 0.6931472
## 345 562 4 1 NA 5.332719 0.6931472
## 346 318 9 1 NA 5.332719 0.6931472
## 347 1092 25 4 NA 5.327876 1.0986123
## 348 615 16 4 NA 5.327876 1.0986123
## 349 506 16 1 NA 5.327876 0.6931472
## 350 609 16 1 NA 5.327876 0.6931472
## 351 846 36 9 NA 5.323010 1.3862944
## 352 798 36 9 NA 5.323010 1.3862944
## 353 12 9 1 NA 5.318120 0.6931472
## 354 825 4 1 NA 5.318120 0.6931472
## 355 259 16 4 NA 5.313206 1.0986123
## 356 12 4 1 NA 5.308268 0.6931472
## 357 545 16 4 NA 5.308268 1.0986123
## 358 21 4 1 NA 5.303305 0.6931472
## 359 215 4 1 NA 5.303305 0.6931472
## 360 701 9 1 NA 5.303305 0.6931472
## 361 712 49 25 NA 5.303305 1.7917595
## 362 544 16 4 NA 5.303305 1.0986123
## 363 621 4 1 NA 5.303305 0.6931472
## 364 730 16 4 NA 5.303305 1.0986123
## 365 668 36 25 NA 5.303305 1.7917595
## 366 81 16 4 NA 5.303305 1.0986123
## 367 859 16 4 NA 5.303305 1.0986123
## 368 6 4 1 NA 5.303305 0.6931472
## 369 739 16 16 NA 5.303305 1.6094379
## 370 704 81 16 NA 5.303305 1.6094379
## 371 19 16 9 NA 5.303305 1.3862944
## 372 282 16 4 NA 5.303305 1.0986123
## 373 12 4 NA NA 5.303305 NA
## 374 87 4 1 NA 5.298317 0.6931472
## 375 672 64 64 NA 5.298317 2.1972246
## 376 19 16 9 NA 5.298317 1.3862944
## 377 115 16 4 NA 5.298317 1.0986123
## 378 694 16 9 NA 5.293305 1.3862944
## 379 655 1 1 NA 5.293305 0.6931472
## 380 833 16 4 NA 5.293305 1.0986123
## 381 671 64 36 NA 5.293305 1.9459101
## 382 669 36 4 NA 5.293305 1.0986123
## 383 707 36 4 NA 5.293305 1.0986123
## 384 737 9 1 NA 5.293305 0.6931472
## 385 255 4 4 NA 5.293305 1.0986123
## 386 641 81 25 NA 5.293305 1.7917595
## 387 735 36 1 NA 5.293305 0.6931472
## 388 704 4 16 NA 5.293305 1.6094379
## 389 650 81 16 NA 5.293305 1.6094379
## 390 609 81 1 NA 5.293305 0.6931472
## 391 571 36 4 NA 5.293305 1.0986123
## 392 8 4 1 NA 5.293305 0.6931472
## 393 77 4 1 NA 5.283204 0.6931472
## 394 381 16 NA NA 5.283204 NA
## 395 226 4 1 NA 5.278115 0.6931472
## 396 283 4 4 NA 5.278115 1.0986123
## 397 36 4 1 NA 5.278115 0.6931472
## 398 40 4 1 NA 5.273000 0.6931472
## 399 118 16 4 NA 5.273000 1.0986123
## 400 68 4 1 NA 5.267858 0.6931472
## 401 518 16 1 NA 5.267858 0.6931472
## 402 14 4 1 NA 5.267858 0.6931472
## 403 8 4 1 NA 5.262690 0.6931472
## 404 112 1 1 NA 5.262690 0.6931472
## 405 26 4 1 NA 5.262690 0.6931472
## 406 963 16 4 NA 5.257495 1.0986123
## 407 248 25 9 NA 5.252273 1.3862944
## 408 173 4 1 NA 5.252273 0.6931472
## 409 360 16 4 NA 5.252273 1.0986123
## 410 685 4 1 NA 5.252273 0.6931472
## 411 231 16 4 NA 5.252273 1.0986123
## 412 538 16 4 NA 5.252273 1.0986123
## 413 914 25 16 NA 5.247024 1.6094379
## 414 1010 36 36 NA 5.247024 1.9459101
## 415 24 16 4 NA 5.247024 1.0986123
## 416 447 16 4 NA 5.247024 1.0986123
## 417 506 16 1 NA 5.247024 0.6931472
## 418 512 16 1 NA 5.247024 0.6931472
## 419 13 9 1 NA 5.247024 0.6931472
## 420 320 4 4 NA 5.241747 1.0986123
## 421 1055 4 4 NA 5.241747 1.0986123
## 422 5 4 1 NA 5.241747 0.6931472
## 423 26 16 1 NA 5.231109 0.6931472
## 424 368 16 4 NA 5.225747 1.0986123
## 425 296 16 1 NA 5.225747 0.6931472
## 426 722 16 4 NA 5.225747 1.0986123
## 427 398 4 1 NA 5.225747 0.6931472
## 428 157 25 4 NA 5.225747 1.0986123
## 429 561 16 1 NA 5.225747 0.6931472
## 430 66 25 4 NA 5.225747 1.0986123
## 431 61 4 1 NA 5.225747 0.6931472
## 432 641 16 4 NA 5.214936 1.0986123
## 433 24 4 1 NA 5.209486 0.6931472
## 434 114 4 1 NA 5.209486 0.6931472
## 435 36 4 1 NA 5.204007 0.6931472
## 436 36 25 4 NA 5.204007 1.0986123
## 437 11 4 1 NA 5.198497 0.6931472
## 438 914 16 4 NA 5.198497 1.0986123
## 439 659 25 16 NA 5.198497 1.6094379
## 440 499 9 1 NA 5.198497 0.6931472
## 441 239 9 1 NA 5.198497 0.6931472
## 442 307 4 1 NA 5.198497 0.6931472
## 443 691 4 1 NA 5.198497 0.6931472
## 444 344 16 4 NA 5.198497 1.0986123
## 445 379 16 4 NA 5.198497 1.0986123
## 446 984 4 1 NA 5.198497 0.6931472
## 447 319 9 4 NA 5.198497 1.0986123
## 448 817 4 4 NA 5.198497 1.0986123
## 449 918 1 1 NA 5.198497 0.6931472
## 450 459 16 1 NA 5.198497 0.6931472
## 451 730 16 4 NA 5.198497 1.0986123
## 452 718 16 36 NA 5.198497 1.9459101
## 453 47 16 1 NA 5.198497 0.6931472
## 454 714 36 9 NA 5.192957 1.3862944
## 455 26 64 1 NA 5.192957 0.6931472
## 456 253 4 1 NA 5.192957 0.6931472
## 457 828 4 1 NA 5.192957 0.6931472
## 458 1069 25 9 NA 5.192957 1.3862944
## 459 502 25 9 NA 5.192957 1.3862944
## 460 538 4 1 NA 5.192957 0.6931472
## 461 543 4 1 NA 5.192957 0.6931472
## 462 103 4 1 NA 5.192957 0.6931472
## 463 238 9 4 NA 5.192957 1.0986123
## 464 64 9 1 NA 5.187386 0.6931472
## 465 11 4 1 NA 5.181784 0.6931472
## 466 17 4 1 NA 5.181784 0.6931472
## 467 91 1 1 NA 5.176150 0.6931472
## 468 22 16 9 NA 5.176150 1.3862944
## 469 35 4 1 NA 5.170484 0.6931472
## 470 742 4 4 NA 5.164786 1.0986123
## 471 743 16 4 NA 5.159055 1.0986123
## 472 386 4 1 NA 5.159055 0.6931472
## 473 41 16 4 NA 5.159055 1.0986123
## 474 61 4 1 NA 5.159055 0.6931472
## 475 734 16 4 NA 5.153292 1.0986123
## 476 640 4 1 NA 5.153292 0.6931472
## 477 250 16 4 NA 5.153292 1.0986123
## 478 708 4 1 NA 5.147494 0.6931472
## 479 110 4 1 NA 5.147494 0.6931472
## 480 139 4 1 NA 5.147494 0.6931472
## 481 734 16 4 NA 5.141664 1.0986123
## 482 704 16 4 NA 5.141664 1.0986123
## 483 194 16 4 NA 5.141664 1.0986123
## 484 312 4 1 NA 5.141664 0.6931472
## 485 20 16 1 NA 5.141664 0.6931472
## 486 856 4 1 NA 5.135798 0.6931472
## 487 20 4 9 NA 5.135798 1.3862944
## 488 28 9 9 NA 5.129899 1.3862944
## 489 51 4 1 NA 5.129899 0.6931472
## 490 891 1 1 NA 5.129899 0.6931472
## 491 733 4 1 NA 5.129899 0.6931472
## 492 155 36 4 NA 5.129899 1.0986123
## 493 382 16 1 NA 5.129899 0.6931472
## 494 540 16 1 NA 5.129899 0.6931472
## 495 23 36 4 NA 5.129899 1.0986123
## 496 689 64 64 NA 5.111988 2.1972246
## 497 682 49 49 NA 5.111988 2.0794415
## 498 642 16 4 NA 5.111988 1.0986123
## 499 9 4 4 NA 5.111988 1.0986123
## 500 487 16 4 NA 5.111988 1.0986123
## 501 256 4 4 NA 5.111988 1.0986123
## 502 25 4 1 NA 5.111988 0.6931472
## 503 23 4 1 NA 5.105945 0.6931472
## 504 368 256 1 NA 5.105945 0.6931472
## 505 901 4 1 NA 5.105945 0.6931472
## 506 13 4 1 NA 5.099866 0.6931472
## 507 404 4 1 NA 5.099866 0.6931472
## 508 335 16 4 NA 5.099866 1.0986123
## 509 714 4 NA NA 5.099866 NA
## 510 309 16 4 NA 5.099866 1.0986123
## 511 130 16 1 NA 5.099866 0.6931472
## 512 10 4 1 NA 5.099866 0.6931472
## 513 238 4 1 NA 5.093750 0.6931472
## 514 243 1 1 NA 5.093750 0.6931472
## 515 18 4 1 NA 5.093750 0.6931472
## 516 21 16 1 NA 5.093750 0.6931472
## 517 7 4 1 NA 5.087596 0.6931472
## 518 107 4 1 NA 5.081404 0.6931472
## 519 104 4 1 NA 5.081404 0.6931472
## 520 291 4 1 NA 5.081404 0.6931472
## 521 43 4 1 NA 5.081404 0.6931472
## 522 490 4 1 NA 5.081404 0.6931472
## 523 753 4 1 NA 5.081404 0.6931472
## 524 656 25 9 NA 5.081404 1.3862944
## 525 490 9 1 NA 5.081404 0.6931472
## 526 557 9 1 NA 5.081404 0.6931472
## 527 354 1 1 NA 5.081404 0.6931472
## 528 85 9 1 NA 5.081404 0.6931472
## 529 94 4 1 NA 5.081404 0.6931472
## 530 10 9 1 NA 5.081404 0.6931472
## 531 245 36 4 NA 5.075174 1.0986123
## 532 121 64 9 NA 5.075174 1.3862944
## 533 649 1 1 NA 5.075174 0.6931472
## 534 31 4 1 NA 5.075174 0.6931472
## 535 231 16 4 NA 5.075174 1.0986123
## 536 243 25 1 NA 5.068904 0.6931472
## 537 31 4 1 NA 5.068904 0.6931472
## 538 308 16 4 NA 5.068904 1.0986123
## 539 656 9 1 NA 5.068904 0.6931472
## 540 79 9 4 NA 5.068904 1.0986123
## 541 730 16 4 NA 5.068904 1.0986123
## 542 62 25 9 NA 5.062595 1.3862944
## 543 101 4 1 NA 5.062595 0.6931472
## 544 272 16 4 NA 5.062595 1.0986123
## 545 353 1 1 NA 5.062595 0.6931472
## 546 122 4 1 NA 5.062595 0.6931472
## 547 12 4 4 NA 5.062595 1.0986123
## 548 49 16 1 NA 5.056246 0.6931472
## 549 266 16 1 NA 5.056246 0.6931472
## 550 25 9 4 NA 5.056246 1.0986123
## 551 30 9 4 NA 5.056246 1.0986123
## 552 52 9 4 NA 5.056246 1.0986123
## 553 12 4 9 NA 5.049856 1.3862944
## 554 481 4 1 NA 5.049856 0.6931472
## 555 704 4 1 NA 5.049856 0.6931472
## 556 75 4 1 NA 5.049856 0.6931472
## 557 28 4 1 NA 5.049856 0.6931472
## 558 13 4 1 NA 5.049856 0.6931472
## 559 14 4 1 NA 5.049856 0.6931472
## 560 56 4 1 NA 5.049856 0.6931472
## 561 685 4 1 NA 5.049856 0.6931472
## 562 658 4 1 NA 5.049856 0.6931472
## 563 201 4 1 NA 5.049856 0.6931472
## 564 29 4 1 NA 5.049856 0.6931472
## 565 685 1 1 NA 5.049856 0.6931472
## 566 321 4 NA NA 5.049856 NA
## 567 225 16 9 NA 5.049856 1.3862944
## 568 17 4 1 NA 5.049856 0.6931472
## 569 18 4 1 NA 5.049856 0.6931472
## 570 12 4 1 NA 5.049856 0.6931472
## 571 63 4 1 NA 5.049856 0.6931472
## 572 867 16 16 NA 5.043425 1.6094379
## 573 139 25 1 NA 5.043425 0.6931472
## 574 732 4 1 NA 5.043425 0.6931472
## 575 366 4 1 NA 5.043425 0.6931472
## 576 273 4 1 NA 5.043425 0.6931472
## 577 717 4 1 NA 5.043425 0.6931472
## 578 336 16 4 NA 5.043425 1.0986123
## 579 14 4 1 NA 5.043425 0.6931472
## 580 230 9 4 NA 5.036953 1.0986123
## 581 21 9 4 NA 5.036953 1.0986123
## 582 365 9 4 NA 5.030438 1.0986123
## 583 21 4 1 NA 5.030438 0.6931472
## 584 705 9 9 NA 5.023881 1.3862944
## 585 854 16 4 NA 5.023881 1.0986123
## 586 15 9 4 NA 5.023881 1.0986123
## 587 882 4 1 NA 5.023881 0.6931472
## 588 174 16 4 NA 5.023881 1.0986123
## 589 549 4 NA NA 5.023881 NA
## 590 537 4 1 NA 5.017280 0.6931472
## 591 1071 4 4 NA 5.017280 1.0986123
## 592 806 9 1 NA 5.017280 0.6931472
## 593 812 4 NA NA 5.017280 NA
## 594 792 9 4 NA 5.017280 1.0986123
## 595 130 4 1 NA 5.017280 0.6931472
## 596 844 1 1 NA 5.017280 0.6931472
## 597 719 4 1 NA 5.017280 0.6931472
## 598 818 9 1 NA 5.017280 0.6931472
## 599 721 4 1 NA 5.017280 0.6931472
## 600 732 4 1 NA 5.017280 0.6931472
## 601 214 16 4 NA 5.017280 1.0986123
## 602 352 4 1 NA 5.017280 0.6931472
## 603 266 4 1 NA 5.017280 0.6931472
## 604 266 9 4 NA 5.017280 1.0986123
## 605 703 36 36 NA 5.017280 1.9459101
## 606 718 36 36 NA 5.017280 1.9459101
## 607 708 4 4 NA 5.017280 1.0986123
## 608 714 4 1 NA 5.017280 0.6931472
## 609 18 4 1 NA 5.017280 0.6931472
## 610 659 4 1 NA 5.017280 0.6931472
## 611 672 49 9 NA 5.017280 1.3862944
## 612 267 64 36 NA 5.017280 1.9459101
## 613 579 9 1 NA 5.017280 0.6931472
## 614 527 9 1 NA 5.017280 0.6931472
## 615 420 4 1 NA 5.017280 0.6931472
## 616 20 16 1 NA 5.017280 0.6931472
## 617 34 9 4 NA 5.017280 1.0986123
## 618 10 4 1 NA 5.010635 0.6931472
## 619 21 4 1 NA 5.010635 0.6931472
## 620 29 25 4 NA 5.010635 1.0986123
## 621 689 36 16 NA 5.010635 1.6094379
## 622 704 16 16 NA 5.010635 1.6094379
## 623 365 1 1 NA 5.010635 0.6931472
## 624 705 4 4 NA 5.010635 1.0986123
## 625 700 16 4 NA 5.010635 1.0986123
## 626 381 4 1 NA 5.010635 0.6931472
## 627 730 4 1 NA 5.010635 0.6931472
## 628 319 9 1 NA 5.010635 0.6931472
## 629 167 16 1 NA 5.010635 0.6931472
## 630 10 36 25 NA 5.003946 1.7917595
## 631 24 4 4 NA 5.003946 1.0986123
## 632 713 4 1 NA 5.003946 0.6931472
## 633 683 4 1 NA 5.003946 0.6931472
## 634 700 4 1 NA 5.003946 0.6931472
## 635 687 4 1 NA 5.003946 0.6931472
## 636 14 4 1 NA 5.003946 0.6931472
## 637 464 4 1 NA 5.003946 0.6931472
## 638 125 4 1 NA 5.003946 0.6931472
## 639 138 4 1 NA 5.003946 0.6931472
## 640 736 4 4 NA 4.997212 1.0986123
## 641 34 4 1 NA 4.997212 0.6931472
## 642 863 4 1 NA 4.997212 0.6931472
## 643 647 4 1 NA 4.997212 0.6931472
## 644 751 4 1 NA 4.997212 0.6931472
## 645 648 4 1 NA 4.997212 0.6931472
## 646 339 4 1 NA 4.997212 0.6931472
## 647 391 9 4 NA 4.997212 1.0986123
## 648 708 16 16 NA 4.990433 1.6094379
## 649 365 9 4 NA 4.990433 1.0986123
## 650 718 9 4 NA 4.990433 1.0986123
## 651 675 16 4 NA 4.990433 1.0986123
## 652 367 16 4 NA 4.990433 1.0986123
## 653 895 49 49 NA 4.983607 2.0794415
## 654 1010 4 1 NA 4.983607 0.6931472
## 655 733 16 4 NA 4.983607 1.0986123
## 656 1016 4 1 NA 4.983607 0.6931472
## 657 996 4 1 NA 4.983607 0.6931472
## 658 364 4 1 NA 4.983607 0.6931472
## 659 319 4 1 NA 4.983607 0.6931472
## 660 376 4 1 NA 4.983607 0.6931472
## 661 843 4 1 NA 4.983607 0.6931472
## 662 697 4 1 NA 4.983607 0.6931472
## 663 44 9 1 NA 4.983607 0.6931472
## 664 695 4 1 NA 4.983607 0.6931472
## 665 23 4 1 NA 4.983607 0.6931472
## 666 6 4 1 NA 4.983607 0.6931472
## 667 38 4 1 NA 4.983607 0.6931472
## 668 14 4 1 NA 4.983607 0.6931472
## 669 48 4 1 NA 4.983607 0.6931472
## 670 316 4 1 NA 4.976734 0.6931472
## 671 823 4 1 NA 4.976734 0.6931472
## 672 582 4 1 NA 4.976734 0.6931472
## 673 720 16 4 NA 4.976734 1.0986123
## 674 698 36 36 NA 4.976734 1.9459101
## 675 139 4 1 NA 4.976734 0.6931472
## 676 12 4 1 NA 4.976734 0.6931472
## 677 96 1 1 NA 4.976734 0.6931472
## 678 20 4 1 NA 4.976734 0.6931472
## 679 362 9 9 NA 4.969813 1.3862944
## 680 21 9 4 NA 4.969813 1.0986123
## 681 572 16 1 NA 4.969813 0.6931472
## 682 15 4 4 NA 4.969813 1.0986123
## 683 739 4 1 NA 4.969813 0.6931472
## 684 75 4 4 NA 4.969813 1.0986123
## 685 44 4 1 NA 4.962845 0.6931472
## 686 7 4 4 NA 4.962845 1.0986123
## 687 31 4 4 NA 4.962845 1.0986123
## 688 40 16 4 NA 4.962845 1.0986123
## 689 672 4 1 NA 4.955827 0.6931472
## 690 580 25 16 NA 4.955827 1.6094379
## 691 699 4 1 NA 4.955827 0.6931472
## 692 687 4 4 NA 4.955827 1.0986123
## 693 488 4 1 NA 4.955827 0.6931472
## 694 916 4 1 NA 4.955827 0.6931472
## 695 21 9 1 NA 4.955827 0.6931472
## 696 69 16 4 NA 4.948760 1.0986123
## 697 550 9 1 NA 4.948760 0.6931472
## 698 78 1 1 NA 4.948760 0.6931472
## 699 658 9 4 NA 4.948760 1.0986123
## 700 341 4 1 NA 4.948760 0.6931472
## 701 190 4 1 NA 4.948760 0.6931472
## 702 626 9 4 NA 4.948760 1.0986123
## 703 1037 4 1 NA 4.948760 0.6931472
## 704 626 4 1 NA 4.948760 0.6931472
## 705 615 4 1 NA 4.948760 0.6931472
## 706 244 4 1 NA 4.948760 0.6931472
## 707 318 4 4 NA 4.948760 1.0986123
## 708 829 4 4 NA 4.948760 1.0986123
## 709 705 4 1 NA 4.948760 0.6931472
## 710 82 9 1 NA 4.948760 0.6931472
## 711 26 9 1 NA 4.948760 0.6931472
## 712 18 9 1 NA 4.948760 0.6931472
## 713 35 9 1 NA 4.948760 0.6931472
## 714 551 9 1 NA 4.948760 0.6931472
## 715 19 9 1 NA 4.948760 0.6931472
## 716 128 1 1 NA 4.948760 0.6931472
## 717 640 25 9 NA 4.941642 1.3862944
## 718 9 16 9 NA 4.941642 1.3862944
## 719 999 25 4 NA 4.941642 1.0986123
## 720 688 4 1 NA 4.934474 0.6931472
## 721 684 4 1 NA 4.934474 0.6931472
## 722 671 9 4 NA 4.934474 1.0986123
## 723 727 16 4 NA 4.934474 1.0986123
## 724 534 4 1 NA 4.934474 0.6931472
## 725 117 4 1 NA 4.934474 0.6931472
## 726 123 4 1 NA 4.934474 0.6931472
## 727 272 4 1 NA 4.927254 0.6931472
## 728 15 16 9 NA 4.927254 1.3862944
## 729 442 4 1 NA 4.927254 0.6931472
## 730 219 4 1 NA 4.927254 0.6931472
## 731 39 25 9 NA 4.927254 1.3862944
## 732 284 4 1 NA 4.927254 0.6931472
## 733 672 4 1 NA 4.919981 0.6931472
## 734 314 4 1 NA 4.919981 0.6931472
## 735 1055 4 1 NA 4.919981 0.6931472
## 736 378 16 1 NA 4.919981 0.6931472
## 737 277 16 4 NA 4.919981 1.0986123
## 738 48 4 1 NA 4.919981 0.6931472
## 739 853 4 1 NA 4.912655 0.6931472
## 740 706 4 1 NA 4.912655 0.6931472
## 741 555 1 1 NA 4.912655 0.6931472
## 742 22 16 4 NA 4.912655 1.0986123
## 743 19 4 NA NA 4.912655 NA
## 744 829 4 1 NA 4.912655 0.6931472
## 745 132 4 1 NA 4.912655 0.6931472
## 746 82 4 1 NA 4.912655 0.6931472
## 747 11 4 1 NA 4.912655 0.6931472
## 748 351 4 1 NA 4.912655 0.6931472
## 749 51 4 NA NA 4.912655 NA
## 750 22 4 1 NA 4.912655 0.6931472
## 751 20 4 1 NA 4.912655 0.6931472
## 752 1066 16 4 NA 4.905275 1.0986123
## 753 29 4 4 NA 4.905275 1.0986123
## 754 400 4 1 NA 4.905275 0.6931472
## 755 333 4 1 NA 4.905275 0.6931472
## 756 21 4 1 NA 4.905275 0.6931472
## 757 21 1 1 NA 4.905275 0.6931472
## 758 14 4 1 NA 4.905275 0.6931472
## 759 92 4 1 NA 4.897840 0.6931472
## 760 572 4 1 NA 4.890349 0.6931472
## 761 289 4 1 NA 4.890349 0.6931472
## 762 48 4 4 NA 4.890349 1.0986123
## 763 713 4 4 NA 4.882802 1.0986123
## 764 917 4 1 NA 4.882802 0.6931472
## 765 655 25 9 NA 4.875197 1.3862944
## 766 139 16 4 NA 4.875197 1.0986123
## 767 682 16 4 NA 4.875197 1.0986123
## 768 701 16 4 NA 4.875197 1.0986123
## 769 90 16 4 NA 4.875197 1.0986123
## 770 711 16 4 NA 4.875197 1.0986123
## 771 753 9 1 NA 4.875197 0.6931472
## 772 122 9 1 NA 4.875197 0.6931472
## 773 776 16 16 NA 4.875197 1.6094379
## 774 684 16 16 NA 4.875197 1.6094379
## 775 46 9 1 NA 4.875197 0.6931472
## 776 653 4 1 NA 4.875197 0.6931472
## 777 530 4 1 NA 4.875197 0.6931472
## 778 647 4 1 NA 4.875197 0.6931472
## 779 21 9 1 NA 4.875197 0.6931472
## 780 313 4 4 NA 4.875197 1.0986123
## 781 729 4 4 NA 4.875197 1.0986123
## 782 566 4 4 NA 4.875197 1.0986123
## 783 795 4 4 NA 4.875197 1.0986123
## 784 708 4 1 NA 4.875197 0.6931472
## 785 870 4 1 NA 4.875197 0.6931472
## 786 23 4 4 NA 4.875197 1.0986123
## 787 682 4 1 NA 4.875197 0.6931472
## 788 718 16 16 NA 4.875197 1.6094379
## 789 34 25 9 NA 4.875197 1.3862944
## 790 19 4 1 NA 4.875197 0.6931472
## 791 685 49 9 NA 4.867534 1.3862944
## 792 692 36 36 NA 4.867534 1.9459101
## 793 767 4 1 NA 4.867534 0.6931472
## 794 433 4 1 NA 4.867534 0.6931472
## 795 646 16 36 NA 4.859812 1.9459101
## 796 600 9 9 NA 4.859812 1.3862944
## 797 439 4 1 NA 4.859812 0.6931472
## 798 715 4 1 NA 4.859812 0.6931472
## 799 687 4 1 NA 4.859812 0.6931472
## 800 704 4 1 NA 4.859812 0.6931472
## 801 709 4 1 NA 4.859812 0.6931472
## 802 370 25 4 NA 4.859812 1.0986123
## 803 852 4 1 NA 4.852030 0.6931472
## 804 801 4 1 NA 4.852030 0.6931472
## 805 755 9 4 NA 4.852030 1.0986123
## 806 151 4 1 NA 4.852030 0.6931472
## 807 33 4 4 NA 4.852030 1.0986123
## 808 727 4 1 NA 4.844187 0.6931472
## 809 675 4 1 NA 4.844187 0.6931472
## 810 723 4 1 NA 4.844187 0.6931472
## 811 1018 4 1 NA 4.844187 0.6931472
## 812 718 4 1 NA 4.844187 0.6931472
## 813 54 4 1 NA 4.844187 0.6931472
## 814 37 1 NA NA 4.844187 NA
## 815 8 4 1 NA 4.844187 0.6931472
## 816 691 36 36 NA 4.836282 1.9459101
## 817 79 16 1 NA 4.836282 0.6931472
## 818 730 4 1 NA 4.836282 0.6931472
## 819 518 4 1 NA 4.836282 0.6931472
## 820 157 4 1 NA 4.836282 0.6931472
## 821 702 36 36 NA 4.836282 1.9459101
## 822 58 4 1 NA 4.836282 0.6931472
## 823 18 4 1 NA 4.836282 0.6931472
## 824 172 4 1 NA 4.836282 0.6931472
## 825 322 4 1 NA 4.836282 0.6931472
## 826 40 4 NA NA 4.836282 NA
## 827 45 4 1 NA 4.836282 0.6931472
## 828 91 4 1 NA 4.828314 0.6931472
## 829 60 4 1 NA 4.828314 0.6931472
## 830 822 4 1 NA 4.828314 0.6931472
## 831 104 4 1 NA 4.828314 0.6931472
## 832 49 4 1 NA 4.828314 0.6931472
## 833 669 4 1 NA 4.820282 0.6931472
## 834 208 1 1 NA 4.820282 0.6931472
## 835 737 36 4 NA 4.820282 1.0986123
## 836 679 1 1 NA 4.820282 0.6931472
## 837 854 4 1 NA 4.820282 0.6931472
## 838 122 4 1 NA 4.812184 0.6931472
## 839 141 4 1 NA 4.812184 0.6931472
## 840 106 4 1 NA 4.812184 0.6931472
## 841 77 4 1 NA 4.812184 0.6931472
## 842 131 4 1 NA 4.812184 0.6931472
## 843 61 9 1 NA 4.812184 0.6931472
## 844 117 4 1 NA 4.804021 0.6931472
## 845 99 4 1 NA 4.804021 0.6931472
## 846 128 4 1 NA 4.804021 0.6931472
## 847 476 4 1 NA 4.804021 0.6931472
## 848 263 4 1 NA 4.804021 0.6931472
## 849 145 4 1 NA 4.804021 0.6931472
## 850 192 4 1 NA 4.804021 0.6931472
## 851 519 1 1 NA 4.795791 0.6931472
## 852 75 16 4 NA 4.795791 1.0986123
## 853 33 16 4 NA 4.795791 1.0986123
## 854 860 4 1 NA 4.795791 0.6931472
## 855 639 4 1 NA 4.795791 0.6931472
## 856 35 4 1 NA 4.795791 0.6931472
## 857 179 4 1 NA 4.795791 0.6931472
## 858 396 4 1 NA 4.795791 0.6931472
## 859 966 4 1 NA 4.795791 0.6931472
## 860 695 1 1 NA 4.795791 0.6931472
## 861 653 1 1 NA 4.795791 0.6931472
## 862 158 4 1 NA 4.795791 0.6931472
## 863 693 4 1 NA 4.795791 0.6931472
## 864 365 4 1 NA 4.795791 0.6931472
## 865 662 4 1 NA 4.795791 0.6931472
## 866 690 16 4 NA 4.795791 1.0986123
## 867 349 4 1 NA 4.795791 0.6931472
## 868 58 25 9 NA 4.795791 1.3862944
## 869 26 4 NA NA 4.795791 NA
## 870 1038 16 1 NA 4.787492 0.6931472
## 871 981 16 1 NA 4.787492 0.6931472
## 872 17 16 9 NA 4.787492 1.3862944
## 873 199 25 1 NA 4.787492 0.6931472
## 874 9 16 4 NA 4.787492 1.0986123
## 875 47 16 1 NA 4.787492 0.6931472
## 876 906 16 1 NA 4.787492 0.6931472
## 877 991 1 1 NA 4.787492 0.6931472
## 878 743 1 NA NA 4.787492 NA
## 879 9 4 1 NA 4.787492 0.6931472
## 880 61 16 16 NA 4.779123 1.6094379
## 881 671 9 4 NA 4.779123 1.0986123
## 882 14 4 1 NA 4.779123 0.6931472
## 883 19 4 1 NA 4.779123 0.6931472
## 884 701 16 4 NA 4.779123 1.0986123
## 885 32 9 1 NA 4.779123 0.6931472
## 886 198 4 1 NA 4.770685 0.6931472
## 887 47 4 1 NA 4.770685 0.6931472
## 888 487 9 4 NA 4.762174 1.0986123
## 889 686 4 1 NA 4.753590 0.6931472
## 890 759 4 1 NA 4.753590 0.6931472
## 891 838 1 1 NA 4.753590 0.6931472
## 892 716 4 1 NA 4.753590 0.6931472
## 893 19 4 1 NA 4.753590 0.6931472
## 894 317 9 4 NA 4.753590 1.0986123
## 895 523 4 1 NA 4.753590 0.6931472
## 896 11 1 1 NA 4.753590 0.6931472
## 897 894 16 16 NA 4.744932 1.6094379
## 898 68 4 1 NA 4.736198 0.6931472
## 899 12 16 9 NA 4.736198 1.3862944
## 900 11 4 1 NA 4.736198 0.6931472
## 901 705 4 1 NA 4.727388 0.6931472
## 902 227 4 NA NA 4.727388 NA
## 903 64 4 1 NA 4.727388 0.6931472
## 904 235 1 1 NA 4.718499 0.6931472
## 905 292 4 1 NA 4.718499 0.6931472
## 906 705 1 1 NA 4.718499 0.6931472
## 907 25 9 1 NA 4.718499 0.6931472
## 908 728 16 16 NA 4.709530 1.6094379
## 909 574 1 1 NA 4.709530 0.6931472
## 910 48 4 4 NA 4.709530 1.0986123
## 911 518 16 1 NA 4.709530 0.6931472
## 912 164 4 1 NA 4.709530 0.6931472
## 913 629 4 1 NA 4.709530 0.6931472
## 914 803 9 4 NA 4.709530 1.0986123
## 915 808 4 1 NA 4.709530 0.6931472
## 916 364 4 1 NA 4.709530 0.6931472
## 917 97 4 NA NA 4.709530 NA
## 918 71 16 4 NA 4.709530 1.0986123
## 919 153 25 4 NA 4.700480 1.0986123
## 920 30 4 1 NA 4.700480 0.6931472
## 921 595 4 1 NA 4.700480 0.6931472
## 922 137 4 1 NA 4.700480 0.6931472
## 923 711 4 1 NA 4.700480 0.6931472
## 924 44 9 1 NA 4.700480 0.6931472
## 925 553 4 1 NA 4.691348 0.6931472
## 926 44 9 1 NA 4.691348 0.6931472
## 927 61 4 NA NA 4.691348 NA
## 928 12 1 1 NA 4.691348 0.6931472
## 929 21 9 4 NA 4.682131 1.0986123
## 930 700 9 1 NA 4.672829 0.6931472
## 931 547 4 1 NA 4.672829 0.6931472
## 932 730 4 1 NA 4.672829 0.6931472
## 933 701 4 1 NA 4.672829 0.6931472
## 934 646 1 1 NA 4.672829 0.6931472
## 935 885 4 1 NA 4.672829 0.6931472
## 936 675 16 16 NA 4.672829 1.6094379
## 937 686 25 25 NA 4.663439 1.7917595
## 938 37 4 1 NA 4.663439 0.6931472
## 939 19 4 1 NA 4.663439 0.6931472
## 940 604 4 1 NA 4.663439 0.6931472
## 941 824 4 1 NA 4.663439 0.6931472
## 942 535 4 1 NA 4.663439 0.6931472
## 943 31 1 1 NA 4.663439 0.6931472
## 944 167 4 1 NA 4.653960 0.6931472
## 945 46 36 36 NA 4.653960 1.9459101
## 946 1065 4 4 NA 4.644391 1.0986123
## 947 52 4 1 NA 4.644391 0.6931472
## 948 735 16 4 NA 4.634729 1.0986123
## 949 747 4 1 NA 4.634729 0.6931472
## 950 365 4 1 NA 4.634729 0.6931472
## 951 704 4 1 NA 4.624973 0.6931472
## 952 1070 4 4 NA 4.624973 1.0986123
## 953 27 4 1 NA 4.624973 0.6931472
## 954 711 16 16 NA 4.624973 1.6094379
## 955 40 4 NA NA 4.624973 NA
## 956 905 4 1 NA 4.615121 0.6931472
## 957 127 4 4 NA 4.615121 1.0986123
## 958 202 9 1 NA 4.615121 0.6931472
## 959 988 9 1 NA 4.615121 0.6931472
## 960 344 9 1 NA 4.615121 0.6931472
## 961 425 9 1 NA 4.615121 0.6931472
## 962 189 9 1 NA 4.615121 0.6931472
## 963 66 9 1 NA 4.615121 0.6931472
## 964 99 9 1 NA 4.615121 0.6931472
## 965 653 1 1 NA 4.615121 0.6931472
## 966 356 4 1 NA 4.615121 0.6931472
## 967 704 36 1 NA 4.615121 0.6931472
## 968 1092 4 1 NA 4.615121 0.6931472
## 969 494 9 1 NA 4.615121 0.6931472
## 970 392 9 1 NA 4.615121 0.6931472
## 971 976 4 1 NA 4.615121 0.6931472
## 972 163 9 4 NA 4.615121 1.0986123
## 973 691 9 9 NA 4.615121 1.3862944
## 974 910 4 1 NA 4.615121 0.6931472
## 975 736 4 1 NA 4.615121 0.6931472
## 976 387 9 1 NA 4.615121 0.6931472
## 977 84 4 1 NA 4.615121 0.6931472
## 978 138 4 NA NA 4.615121 NA
## 979 31 4 1 NA 4.605170 0.6931472
## 980 677 36 9 NA 4.605170 1.3862944
## 981 53 4 1 NA 4.605170 0.6931472
## 982 172 1 1 NA 4.605170 0.6931472
## 983 665 4 1 NA 4.605170 0.6931472
## 984 669 1 1 NA 4.595120 0.6931472
## 985 1010 4 1 NA 4.595120 0.6931472
## 986 136 16 4 NA 4.595120 1.0986123
## 987 41 4 1 NA 4.595120 0.6931472
## 988 36 4 1 NA 4.595120 0.6931472
## 989 433 36 4 NA 4.595120 1.0986123
## 990 683 1 1 NA 4.595120 0.6931472
## 991 667 16 4 NA 4.595120 1.0986123
## 992 82 4 1 NA 4.595120 0.6931472
## 993 201 4 1 NA 4.584967 0.6931472
## 994 17 4 1 NA 4.584967 0.6931472
## 995 160 4 1 NA 4.574711 0.6931472
## 996 363 4 4 NA 4.574711 1.0986123
## 997 382 4 4 NA 4.574711 1.0986123
## 998 821 4 4 NA 4.574711 1.0986123
## 999 370 4 1 NA 4.574711 0.6931472
## 1000 383 4 1 NA 4.574711 0.6931472
## 1001 874 4 1 NA 4.574711 0.6931472
## 1002 941 4 1 NA 4.574711 0.6931472
## 1003 123 4 1 NA 4.574711 0.6931472
## 1004 128 4 1 NA 4.574711 0.6931472
## 1005 596 4 1 NA 4.574711 0.6931472
## 1006 590 4 1 NA 4.574711 0.6931472
## 1007 412 4 1 NA 4.574711 0.6931472
## 1008 41 16 4 NA 4.574711 1.0986123
## 1009 1091 4 1 NA 4.564348 0.6931472
## 1010 616 4 1 NA 4.564348 0.6931472
## 1011 33 4 4 NA 4.564348 1.0986123
## 1012 22 1 1 NA 4.553877 0.6931472
## 1013 684 4 1 NA 4.553877 0.6931472
## 1014 178 4 1 NA 4.553877 0.6931472
## 1015 206 9 1 NA 4.553877 0.6931472
## 1016 27 49 16 NA 4.553877 1.6094379
## 1017 215 4 1 NA 4.543295 0.6931472
## 1018 829 4 1 NA 4.532599 0.6931472
## 1019 32 1 1 NA 4.532599 0.6931472
## 1020 105 4 1 NA 4.521789 0.6931472
## 1021 663 4 1 NA 4.510860 0.6931472
## 1022 693 9 1 NA 4.510860 0.6931472
## 1023 250 4 1 NA 4.510860 0.6931472
## 1024 697 9 4 NA 4.510860 1.0986123
## 1025 13 4 1 NA 4.510860 0.6931472
## 1026 704 4 1 NA 4.510860 0.6931472
## 1027 41 4 1 NA 4.510860 0.6931472
## 1028 898 1 1 NA 4.510860 0.6931472
## 1029 66 4 1 NA 4.510860 0.6931472
## 1030 13 4 1 NA 4.510860 0.6931472
## 1031 697 4 1 NA 4.510860 0.6931472
## 1032 19 4 4 NA 4.510860 1.0986123
## 1033 789 1 1 NA 4.510860 0.6931472
## 1034 705 16 1 NA 4.510860 0.6931472
## 1035 662 9 1 NA 4.510860 0.6931472
## 1036 914 1 1 NA 4.510860 0.6931472
## 1037 785 1 1 NA 4.510860 0.6931472
## 1038 742 4 1 NA 4.510860 0.6931472
## 1039 286 4 1 NA 4.510860 0.6931472
## 1040 420 4 1 NA 4.510860 0.6931472
## 1041 161 4 1 NA 4.510860 0.6931472
## 1042 692 9 4 NA 4.510860 1.0986123
## 1043 705 9 4 NA 4.510860 1.0986123
## 1044 880 16 1 NA 4.510860 0.6931472
## 1045 16 4 1 NA 4.510860 0.6931472
## 1046 818 4 1 NA 4.510860 0.6931472
## 1047 665 4 1 NA 4.510860 0.6931472
## 1048 241 4 1 NA 4.510860 0.6931472
## 1049 699 4 4 NA 4.510860 1.0986123
## 1050 728 1 1 NA 4.510860 0.6931472
## 1051 306 1 1 NA 4.510860 0.6931472
## 1052 689 4 1 NA 4.510860 0.6931472
## 1053 717 9 4 NA 4.510860 1.0986123
## 1054 184 4 1 NA 4.510860 0.6931472
## 1055 837 4 1 NA 4.499810 0.6931472
## 1056 9 4 1 NA 4.499810 0.6931472
## 1057 919 1 1 NA 4.499810 0.6931472
## 1058 158 4 1 NA 4.499810 0.6931472
## 1059 729 4 1 NA 4.499810 0.6931472
## 1060 964 4 1 NA 4.499810 0.6931472
## 1061 404 4 1 NA 4.499810 0.6931472
## 1062 773 9 4 NA 4.499810 1.0986123
## 1063 231 4 4 NA 4.499810 1.0986123
## 1064 649 4 4 NA 4.499810 1.0986123
## 1065 56 1 1 NA 4.499810 0.6931472
## 1066 610 4 1 NA 4.499810 0.6931472
## 1067 888 1 1 NA 4.488636 0.6931472
## 1068 830 1 1 NA 4.488636 0.6931472
## 1069 704 4 1 NA 4.488636 0.6931472
## 1070 1014 4 1 NA 4.488636 0.6931472
## 1071 1095 4 1 NA 4.488636 0.6931472
## 1072 830 9 4 NA 4.488636 1.0986123
## 1073 659 1 NA NA 4.488636 NA
## 1074 12 1 1 NA 4.488636 0.6931472
## 1075 1063 4 1 NA 4.488636 0.6931472
## 1076 770 4 1 NA 4.488636 0.6931472
## 1077 964 4 1 NA 4.488636 0.6931472
## 1078 26 1 1 NA 4.488636 0.6931472
## 1079 28 4 1 NA 4.488636 0.6931472
## 1080 118 1 1 NA 4.488636 0.6931472
## 1081 1059 4 1 NA 4.488636 0.6931472
## 1082 702 1 1 NA 4.488636 0.6931472
## 1083 176 4 1 NA 4.488636 0.6931472
## 1084 690 4 1 NA 4.488636 0.6931472
## 1085 119 4 1 NA 4.488636 0.6931472
## 1086 272 4 NA NA 4.488636 NA
## 1087 127 1 4 NA 4.488636 1.0986123
## 1088 51 4 1 NA 4.488636 0.6931472
## 1089 25 4 1 NA 4.465908 0.6931472
## 1090 362 4 4 NA 4.465908 1.0986123
## 1091 25 4 1 NA 4.465908 0.6931472
## 1092 768 4 1 NA 4.465908 0.6931472
## 1093 218 4 1 NA 4.465908 0.6931472
## 1094 308 4 1 NA 4.454347 0.6931472
## 1095 668 16 16 NA 4.454347 1.6094379
## 1096 53 4 1 NA 4.454347 0.6931472
## 1097 688 4 1 NA 4.454347 0.6931472
## 1098 732 16 16 NA 4.454347 1.6094379
## 1099 168 4 1 NA 4.454347 0.6931472
## 1100 232 1 1 NA 4.454347 0.6931472
## 1101 751 4 1 NA 4.454347 0.6931472
## 1102 364 4 4 NA 4.454347 1.0986123
## 1103 785 1 1 NA 4.454347 0.6931472
## 1104 24 4 1 NA 4.454347 0.6931472
## 1105 615 4 1 NA 4.442651 0.6931472
## 1106 114 4 1 NA 4.442651 0.6931472
## 1107 656 4 1 NA 4.442651 0.6931472
## 1108 397 4 1 NA 4.442651 0.6931472
## 1109 693 4 1 NA 4.430817 0.6931472
## 1110 669 4 1 NA 4.430817 0.6931472
## 1111 672 4 1 NA 4.430817 0.6931472
## 1112 160 4 1 NA 4.430817 0.6931472
## 1113 975 4 1 NA 4.430817 0.6931472
## 1114 76 4 1 NA 4.430817 0.6931472
## 1115 865 4 1 NA 4.430817 0.6931472
## 1116 723 4 1 NA 4.430817 0.6931472
## 1117 168 4 1 NA 4.430817 0.6931472
## 1118 810 9 1 NA 4.418841 0.6931472
## 1119 722 9 4 NA 4.418841 1.0986123
## 1120 826 4 1 NA 4.418841 0.6931472
## 1121 76 4 1 NA 4.418841 0.6931472
## 1122 755 1 4 NA 4.418841 1.0986123
## 1123 650 4 1 NA 4.418841 0.6931472
## 1124 128 4 1 NA 4.418841 0.6931472
## 1125 7 1 1 NA 4.418841 0.6931472
## 1126 12 4 1 NA 4.406719 0.6931472
## 1127 20 1 1 NA 4.406719 0.6931472
## 1128 66 9 1 NA 4.406719 0.6931472
## 1129 626 4 1 NA 4.394449 0.6931472
## 1130 280 36 1 NA 4.394449 0.6931472
## 1131 188 4 1 NA 4.394449 0.6931472
## 1132 471 4 NA NA 4.394449 NA
## 1133 130 4 1 NA 4.394449 0.6931472
## 1134 649 4 1 NA 4.394449 0.6931472
## 1135 12 4 1 NA 4.394449 0.6931472
## 1136 803 4 1 NA 4.394449 0.6931472
## 1137 90 1 1 NA 4.394449 0.6931472
## 1138 676 4 1 NA 4.394449 0.6931472
## 1139 37 25 1 NA 4.394449 0.6931472
## 1140 662 4 1 NA 4.394449 0.6931472
## 1141 439 4 1 NA 4.394449 0.6931472
## 1142 684 4 1 NA 4.394449 0.6931472
## 1143 691 9 16 NA 4.394449 1.6094379
## 1144 559 4 1 NA 4.394449 0.6931472
## 1145 729 16 4 NA 4.394449 1.0986123
## 1146 776 4 4 NA 4.394449 1.0986123
## 1147 976 4 1 NA 4.394449 0.6931472
## 1148 783 9 1 NA 4.394449 0.6931472
## 1149 21 4 4 NA 4.394449 1.0986123
## 1150 787 4 1 NA 4.394449 0.6931472
## 1151 723 4 1 NA 4.394449 0.6931472
## 1152 476 4 1 NA 4.394449 0.6931472
## 1153 30 4 1 NA 4.394449 0.6931472
## 1154 189 1 1 NA 4.382027 0.6931472
## 1155 952 4 1 NA 4.382027 0.6931472
## 1156 846 4 1 NA 4.382027 0.6931472
## 1157 578 4 1 NA 4.382027 0.6931472
## 1158 871 1 1 NA 4.382027 0.6931472
## 1159 685 4 1 NA 4.382027 0.6931472
## 1160 245 25 25 NA 4.382027 1.7917595
## 1161 964 4 1 NA 4.369448 0.6931472
## 1162 240 4 1 NA 4.369448 0.6931472
## 1163 732 4 1 NA 4.369448 0.6931472
## 1164 677 4 1 NA 4.369448 0.6931472
## 1165 9 1 1 NA 4.369448 0.6931472
## 1166 803 1 1 NA 4.369448 0.6931472
## 1167 275 4 9 NA 4.369448 1.3862944
## 1168 690 1 1 NA 4.369448 0.6931472
## 1169 242 25 1 NA 4.369448 0.6931472
## 1170 60 4 1 NA 4.356709 0.6931472
## 1171 718 4 4 NA 4.356709 1.0986123
## 1172 808 4 1 NA 4.343805 0.6931472
## 1173 144 1 1 NA 4.343805 0.6931472
## 1174 716 4 1 NA 4.330733 0.6931472
## 1175 867 4 1 NA 4.330733 0.6931472
## 1176 670 4 1 NA 4.330733 0.6931472
## 1177 42 1 1 NA 4.330733 0.6931472
## 1178 728 1 1 NA 4.330733 0.6931472
## 1179 737 4 1 NA 4.330733 0.6931472
## 1180 681 4 1 NA 4.330733 0.6931472
## 1181 937 4 1 NA 4.330733 0.6931472
## 1182 708 4 1 NA 4.330733 0.6931472
## 1183 116 1 1 NA 4.330733 0.6931472
## 1184 708 4 1 NA 4.330733 0.6931472
## 1185 19 4 1 NA 4.330733 0.6931472
## 1186 8 4 1 NA 4.330733 0.6931472
## 1187 205 4 1 NA 4.317488 0.6931472
## 1188 650 4 1 NA 4.317488 0.6931472
## 1189 758 4 1 NA 4.317488 0.6931472
## 1190 709 4 1 NA 4.317488 0.6931472
## 1191 688 4 1 NA 4.317488 0.6931472
## 1192 683 4 1 NA 4.317488 0.6931472
## 1193 670 4 1 NA 4.317488 0.6931472
## 1194 684 4 1 NA 4.317488 0.6931472
## 1195 9 1 1 NA 4.317488 0.6931472
## 1196 244 4 1 NA 4.304065 0.6931472
## 1197 231 4 1 NA 4.304065 0.6931472
## 1198 112 4 1 NA 4.304065 0.6931472
## 1199 81 4 1 NA 4.304065 0.6931472
## 1200 122 4 1 NA 4.304065 0.6931472
## 1201 39 4 1 NA 4.304065 0.6931472
## 1202 710 4 1 NA 4.290459 0.6931472
## 1203 690 1 1 NA 4.290459 0.6931472
## 1204 31 4 1 NA 4.290459 0.6931472
## 1205 719 4 1 NA 4.290459 0.6931472
## 1206 692 4 1 NA 4.290459 0.6931472
## 1207 276 1 1 NA 4.290459 0.6931472
## 1208 71 4 1 NA 4.290459 0.6931472
## 1209 853 4 1 NA 4.290459 0.6931472
## 1210 670 4 1 NA 4.290459 0.6931472
## 1211 26 16 16 NA 4.276666 1.6094379
## 1212 669 4 1 NA 4.262680 0.6931472
## 1213 905 49 1 NA 4.262680 0.6931472
## 1214 154 25 1 NA 4.262680 0.6931472
## 1215 35 4 1 NA 4.262680 0.6931472
## 1216 305 4 1 NA 4.262680 0.6931472
## 1217 182 4 1 NA 4.262680 0.6931472
## 1218 453 4 1 NA 4.262680 0.6931472
## 1219 753 4 1 NA 4.262680 0.6931472
## 1220 661 4 1 NA 4.262680 0.6931472
## 1221 755 16 16 NA 4.262680 1.6094379
## 1222 535 4 1 NA 4.262680 0.6931472
## 1223 703 4 1 NA 4.262680 0.6931472
## 1224 601 1 1 NA 4.262680 0.6931472
## 1225 683 4 1 NA 4.262680 0.6931472
## 1226 755 1 1 NA 4.262680 0.6931472
## 1227 107 4 1 NA 4.262680 0.6931472
## 1228 727 4 1 NA 4.248495 0.6931472
## 1229 873 1 1 NA 4.248495 0.6931472
## 1230 794 1 1 NA 4.248495 0.6931472
## 1231 937 1 1 NA 4.248495 0.6931472
## 1232 98 1 1 NA 4.248495 0.6931472
## 1233 700 4 1 NA 4.248495 0.6931472
## 1234 776 4 1 NA 4.248495 0.6931472
## 1235 121 4 1 NA 4.248495 0.6931472
## 1236 542 1 1 NA 4.248495 0.6931472
## 1237 508 1 1 NA 4.248495 0.6931472
## 1238 229 4 4 NA 4.248495 1.0986123
## 1239 813 1 1 NA 4.248495 0.6931472
## 1240 1011 1 1 NA 4.248495 0.6931472
## 1241 368 1 1 NA 4.248495 0.6931472
## 1242 883 1 1 NA 4.248495 0.6931472
## 1243 260 1 1 NA 4.248495 0.6931472
## 1244 457 1 1 NA 4.248495 0.6931472
## 1245 947 1 1 NA 4.248495 0.6931472
## 1246 162 1 1 NA 4.248495 0.6931472
## 1247 705 1 1 NA 4.248495 0.6931472
## 1248 879 1 1 NA 4.248495 0.6931472
## 1249 784 1 1 NA 4.248495 0.6931472
## 1250 822 1 1 NA 4.248495 0.6931472
## 1251 185 1 1 NA 4.248495 0.6931472
## 1252 453 1 1 NA 4.248495 0.6931472
## 1253 164 1 1 NA 4.248495 0.6931472
## 1254 20 4 1 NA 4.234107 0.6931472
## 1255 215 4 1 NA 4.234107 0.6931472
## 1256 213 4 4 NA 4.234107 1.0986123
## 1257 209 9 1 NA 4.234107 0.6931472
## 1258 546 4 1 NA 4.234107 0.6931472
## 1259 90 4 1 NA 4.234107 0.6931472
## 1260 490 4 1 NA 4.234107 0.6931472
## 1261 196 4 1 NA 4.234107 0.6931472
## 1262 31 4 1 NA 4.234107 0.6931472
## 1263 640 4 1 NA 4.234107 0.6931472
## 1264 44 4 1 NA 4.234107 0.6931472
## 1265 714 4 1 NA 4.234107 0.6931472
## 1266 262 4 1 NA 4.219508 0.6931472
## 1267 717 4 1 NA 4.219508 0.6931472
## 1268 721 4 1 NA 4.204693 0.6931472
## 1269 838 1 1 NA 4.204693 0.6931472
## 1270 470 9 1 NA 4.204693 0.6931472
## 1271 625 9 4 NA 4.204693 1.0986123
## 1272 748 4 1 NA 4.204693 0.6931472
## 1273 652 1 1 NA 4.204693 0.6931472
## 1274 14 1 1 NA 4.204693 0.6931472
## 1275 121 1 1 NA 4.189655 0.6931472
## 1276 160 4 1 NA 4.189655 0.6931472
## 1277 654 256 16 NA 4.189655 1.6094379
## 1278 645 1 1 NA 4.189655 0.6931472
## 1279 878 1 1 NA 4.189655 0.6931472
## 1280 49 1 1 NA 4.189655 0.6931472
## 1281 853 16 9 NA 4.189655 1.3862944
## 1282 484 4 1 NA 4.189655 0.6931472
## 1283 694 4 1 NA 4.189655 0.6931472
## 1284 28 4 1 NA 4.189655 0.6931472
## 1285 792 1 1 NA 4.189655 0.6931472
## 1286 717 1 1 NA 4.189655 0.6931472
## 1287 685 4 1 NA 4.189655 0.6931472
## 1288 12 1 1 NA 4.189655 0.6931472
## 1289 19 4 1 NA 4.189655 0.6931472
## 1290 21 4 1 NA 4.189655 0.6931472
## 1291 495 1 1 NA 4.189655 0.6931472
## 1292 667 4 1 NA 4.189655 0.6931472
## 1293 884 4 1 NA 4.189655 0.6931472
## 1294 610 4 1 NA 4.189655 0.6931472
## 1295 745 1 4 NA 4.189655 1.0986123
## 1296 26 4 4 NA 4.189655 1.0986123
## 1297 718 4 1 NA 4.189655 0.6931472
## 1298 658 4 1 NA 4.174387 0.6931472
## 1299 680 4 1 NA 4.174387 0.6931472
## 1300 692 4 1 NA 4.174387 0.6931472
## 1301 711 4 1 NA 4.174387 0.6931472
## 1302 690 4 1 NA 4.174387 0.6931472
## 1303 699 4 1 NA 4.174387 0.6931472
## 1304 239 4 1 NA 4.174387 0.6931472
## 1305 694 4 1 NA 4.174387 0.6931472
## 1306 720 4 1 NA 4.174387 0.6931472
## 1307 293 4 1 NA 4.174387 0.6931472
## 1308 842 1 1 NA 4.174387 0.6931472
## 1309 845 1 1 NA 4.174387 0.6931472
## 1310 656 4 1 NA 4.174387 0.6931472
## 1311 685 4 1 NA 4.174387 0.6931472
## 1312 705 4 1 NA 4.174387 0.6931472
## 1313 759 4 1 NA 4.174387 0.6931472
## 1314 693 4 1 NA 4.174387 0.6931472
## 1315 1012 4 1 NA 4.174387 0.6931472
## 1316 706 4 1 NA 4.174387 0.6931472
## 1317 672 4 1 NA 4.174387 0.6931472
## 1318 685 4 1 NA 4.174387 0.6931472
## 1319 700 1 1 NA 4.158883 0.6931472
## 1320 700 1 1 NA 4.158883 0.6931472
## 1321 704 4 1 NA 4.158883 0.6931472
## 1322 879 4 1 NA 4.158883 0.6931472
## 1323 782 9 4 NA 4.158883 1.0986123
## 1324 13 4 1 NA 4.158883 0.6931472
## 1325 14 4 1 NA 4.158883 0.6931472
## 1326 335 4 4 NA 4.158883 1.0986123
## 1327 385 4 1 NA 4.158883 0.6931472
## 1328 132 9 1 NA 4.143135 0.6931472
## 1329 268 9 1 NA 4.143135 0.6931472
## 1330 256 1 1 NA 4.143135 0.6931472
## 1331 148 1 1 NA 4.127134 0.6931472
## 1332 1073 4 1 NA 4.127134 0.6931472
## 1333 26 9 4 NA 4.127134 1.0986123
## 1334 860 1 1 NA 4.127134 0.6931472
## 1335 31 1 NA NA 4.127134 NA
## 1336 256 4 1 NA 4.127134 0.6931472
## 1337 272 4 1 NA 4.127134 0.6931472
## 1338 185 4 1 NA 4.127134 0.6931472
## 1339 917 9 1 NA 4.110874 0.6931472
## 1340 51 1 1 NA 4.110874 0.6931472
## 1341 288 4 1 NA 4.110874 0.6931472
## 1342 866 1 1 NA 4.110874 0.6931472
## 1343 402 4 1 NA 4.110874 0.6931472
## 1344 772 1 1 NA 4.110874 0.6931472
## 1345 895 4 1 NA 4.110874 0.6931472
## 1346 26 4 1 NA 4.110874 0.6931472
## 1347 518 4 4 NA 4.110874 1.0986123
## 1348 18 9 4 NA 4.110874 1.0986123
## 1349 648 1 1 NA 4.110874 0.6931472
## 1350 211 4 1 NA 4.110874 0.6931472
## 1351 712 1 1 NA 4.110874 0.6931472
## 1352 160 4 1 NA 4.110874 0.6931472
## 1353 74 1 1 NA 4.110874 0.6931472
## 1354 320 4 1 NA 4.110874 0.6931472
## 1355 584 4 NA NA 4.110874 NA
## 1356 225 9 1 NA 4.110874 0.6931472
## 1357 662 4 9 NA 4.110874 1.3862944
## 1358 92 4 1 NA 4.110874 0.6931472
## 1359 18 1 1 NA 4.110874 0.6931472
## 1360 219 4 4 NA 4.110874 1.0986123
## 1361 483 4 1 NA 4.110874 0.6931472
## 1362 979 1 1 NA 4.094345 0.6931472
## 1363 222 1 1 NA 4.094345 0.6931472
## 1364 914 1 1 NA 4.094345 0.6931472
## 1365 194 4 25 NA 4.094345 1.7917595
## 1366 729 1 1 NA 4.094345 0.6931472
## 1367 936 4 4 NA 4.094345 1.0986123
## 1368 214 1 1 NA 4.094345 0.6931472
## 1369 696 4 144 NA 4.094345 2.5649494
## 1370 754 1 1 NA 4.094345 0.6931472
## 1371 832 1 1 NA 4.094345 0.6931472
## 1372 122 1 1 NA 4.094345 0.6931472
## 1373 835 1 1 NA 4.094345 0.6931472
## 1374 840 1 1 NA 4.094345 0.6931472
## 1375 761 4 1 NA 4.094345 0.6931472
## 1376 76 4 1 NA 4.094345 0.6931472
## 1377 487 1 1 NA 4.094345 0.6931472
## 1378 808 1 1 NA 4.094345 0.6931472
## 1379 501 1 1 NA 4.094345 0.6931472
## 1380 731 1 1 NA 4.094345 0.6931472
## 1381 871 1 1 NA 4.094345 0.6931472
## 1382 1065 1 1 NA 4.094345 0.6931472
## 1383 1014 1 1 NA 4.094345 0.6931472
## 1384 792 1 1 NA 4.094345 0.6931472
## 1385 198 1 1 NA 4.094345 0.6931472
## 1386 457 1 1 NA 4.094345 0.6931472
## 1387 749 1 1 NA 4.094345 0.6931472
## 1388 936 1 1 NA 4.094345 0.6931472
## 1389 767 1 1 NA 4.094345 0.6931472
## 1390 73 1 1 NA 4.094345 0.6931472
## 1391 881 1 1 NA 4.094345 0.6931472
## 1392 198 1 1 NA 4.094345 0.6931472
## 1393 223 9 1 NA 4.094345 0.6931472
## 1394 517 1 1 NA 4.094345 0.6931472
## 1395 458 1 1 NA 4.094345 0.6931472
## 1396 754 1 1 NA 4.094345 0.6931472
## 1397 805 1 1 NA 4.094345 0.6931472
## 1398 672 1 1 NA 4.094345 0.6931472
## 1399 23 1 1 NA 4.094345 0.6931472
## 1400 327 1 NA NA 4.094345 NA
## 1401 391 4 1 NA 4.094345 0.6931472
## 1402 113 1 NA NA 4.094345 NA
## 1403 213 1 1 NA 4.094345 0.6931472
## 1404 119 4 1 NA 4.077537 0.6931472
## 1405 703 1 NA NA 4.077537 NA
## 1406 154 4 1 NA 4.077537 0.6931472
## 1407 57 4 1 NA 4.077537 0.6931472
## 1408 258 1 1 NA 4.060443 0.6931472
## 1409 40 9 1 NA 4.060443 0.6931472
## 1410 650 36 1296 NA 4.060443 3.6109179
## 1411 110 1 1 NA 4.043051 0.6931472
## 1412 792 4 1 NA 4.043051 0.6931472
## 1413 272 4 1 NA 4.043051 0.6931472
## 1414 248 9 4 NA 4.043051 1.0986123
## 1415 744 1 1 NA 4.043051 0.6931472
## 1416 517 4 1 NA 4.043051 0.6931472
## 1417 806 4 16 NA 4.043051 1.6094379
## 1418 893 4 1 NA 4.025352 0.6931472
## 1419 715 1 1 NA 4.025352 0.6931472
## 1420 671 16 9 NA 4.025352 1.3862944
## 1421 681 1 1 NA 4.025352 0.6931472
## 1422 818 9 4 NA 4.025352 1.0986123
## 1423 334 16 4 NA 4.025352 1.0986123
## 1424 764 1 1 NA 4.025352 0.6931472
## 1425 695 9 4 NA 4.025352 1.0986123
## 1426 789 1 1 NA 4.025352 0.6931472
## 1427 887 1 1 NA 4.025352 0.6931472
## 1428 1031 4 4 NA 4.025352 1.0986123
## 1429 626 1 1 NA 4.025352 0.6931472
## 1430 436 4 1 NA 4.025352 0.6931472
## 1431 415 1 1 NA 4.025352 0.6931472
## 1432 579 1 1 NA 4.007333 0.6931472
## 1433 684 1 1 NA 4.007333 0.6931472
## 1434 623 1 1 NA 3.970292 0.6931472
## 1435 121 1 1 NA 3.970292 0.6931472
## 1436 172 1 4 NA 3.970292 1.0986123
## 1437 17 1 1 NA 3.970292 0.6931472
## 1438 61 9 4 NA 3.970292 1.0986123
## 1439 777 1 1 NA 3.951244 0.6931472
## 1440 1035 1 1 NA 3.951244 0.6931472
## 1441 148 9 1 NA 3.951244 0.6931472
## 1442 728 4 1 NA 3.951244 0.6931472
## 1443 717 4 100 NA 3.951244 2.3978953
## 1444 326 1 1 NA 3.951244 0.6931472
## 1445 258 1 1 NA 3.931826 0.6931472
## 1446 856 1 1 NA 3.931826 0.6931472
## 1447 14 4 4 NA 3.931826 1.0986123
## 1448 638 4 1 NA 3.931826 0.6931472
## 1449 631 4 4 NA 3.931826 1.0986123
## 1450 961 4 1 NA 3.931826 0.6931472
## 1451 612 1 1 NA 3.931826 0.6931472
## 1452 713 4 1 NA 3.931826 0.6931472
## 1453 912 4 4 NA 3.931826 1.0986123
## 1454 887 4 4 NA 3.931826 1.0986123
## 1455 712 9 1 NA 3.931826 0.6931472
## 1456 715 9 4 NA 3.931826 1.0986123
## 1457 704 4 1 NA 3.931826 0.6931472
## 1458 1070 4 4 NA 3.931826 1.0986123
## 1459 768 4 1 NA 3.931826 0.6931472
## 1460 1084 4 1 NA 3.931826 0.6931472
## 1461 799 9 1 NA 3.931826 0.6931472
## 1462 845 1 1 NA 3.931826 0.6931472
## 1463 1038 1 1 NA 3.931826 0.6931472
## 1464 683 1 1 NA 3.931826 0.6931472
## 1465 694 4 1 NA 3.931826 0.6931472
## 1466 671 1 1 NA 3.931826 0.6931472
## 1467 91 1 1 NA 3.931826 0.6931472
## 1468 670 1 1 NA 3.931826 0.6931472
## 1469 762 1 1 NA 3.931826 0.6931472
## 1470 661 4 NA NA 3.931826 NA
## 1471 8 4 1 NA 3.931826 0.6931472
## 1472 825 1 1 NA 3.912023 0.6931472
## 1473 659 4 1 NA 3.912023 0.6931472
## 1474 163 1 1 NA 3.912023 0.6931472
## 1475 651 1 1 NA 3.912023 0.6931472
## 1476 1076 256 NA NA 3.912023 NA
## 1477 246 1 1 NA 3.912023 0.6931472
## 1478 675 4 1 NA 3.912023 0.6931472
## 1479 846 1 1 NA 3.912023 0.6931472
## 1480 761 1 1 NA 3.912023 0.6931472
## 1481 487 1 1 NA 3.912023 0.6931472
## 1482 177 1 1 NA 3.912023 0.6931472
## 1483 633 1 1 NA 3.912023 0.6931472
## 1484 640 1 1 NA 3.912023 0.6931472
## 1485 260 4 1 NA 3.912023 0.6931472
## 1486 660 1 1 NA 3.912023 0.6931472
## 1487 1006 1 1 NA 3.912023 0.6931472
## 1488 795 1 1 NA 3.912023 0.6931472
## 1489 1005 1 1 NA 3.912023 0.6931472
## 1490 805 1 1 NA 3.912023 0.6931472
## 1491 958 1 1 NA 3.912023 0.6931472
## 1492 748 1 1 NA 3.912023 0.6931472
## 1493 946 1 1 NA 3.912023 0.6931472
## 1494 875 1 1 NA 3.912023 0.6931472
## 1495 748 1 1 NA 3.912023 0.6931472
## 1496 714 4 100 NA 3.912023 2.3978953
## 1497 685 1 1 NA 3.912023 0.6931472
## 1498 745 1 1 NA 3.912023 0.6931472
## 1499 30 4 4 NA 3.912023 1.0986123
## 1500 776 1 1 NA 3.912023 0.6931472
## 1501 791 1 1 NA 3.912023 0.6931472
## 1502 334 1 1 NA 3.912023 0.6931472
## 1503 777 1 1 NA 3.912023 0.6931472
## 1504 625 1 1 NA 3.912023 0.6931472
## 1505 642 4 1 NA 3.912023 0.6931472
## 1506 670 1 1 NA 3.912023 0.6931472
## 1507 692 1 1 NA 3.912023 0.6931472
## 1508 124 1 1 NA 3.912023 0.6931472
## 1509 305 1 1 NA 3.912023 0.6931472
## 1510 648 1 1 NA 3.912023 0.6931472
## 1511 112 4 4 NA 3.912023 1.0986123
## 1512 722 1 1 NA 3.912023 0.6931472
## 1513 683 1 1 NA 3.912023 0.6931472
## 1514 363 1 1 NA 3.912023 0.6931472
## 1515 655 1 1 NA 3.912023 0.6931472
## 1516 131 1 1 NA 3.912023 0.6931472
## 1517 670 1 1 NA 3.912023 0.6931472
## 1518 489 1 1 NA 3.912023 0.6931472
## 1519 534 1 1 NA 3.912023 0.6931472
## 1520 641 1 1 NA 3.912023 0.6931472
## 1521 633 1 1 NA 3.912023 0.6931472
## 1522 208 1 1 NA 3.912023 0.6931472
## 1523 182 1 1 NA 3.912023 0.6931472
## 1524 690 1 1 NA 3.891820 0.6931472
## 1525 27 4 1 NA 3.891820 0.6931472
## 1526 27 4 1 NA 3.891820 0.6931472
## 1527 61 9 4 NA 3.891820 1.0986123
## 1528 17 9 1 NA 3.891820 0.6931472
## 1529 376 9 9 NA 3.891820 1.3862944
## 1530 1049 1 1 NA 3.891820 0.6931472
## 1531 848 1 1 NA 3.891820 0.6931472
## 1532 507 4 1 NA 3.891820 0.6931472
## 1533 28 9 4 NA 3.891820 1.0986123
## 1534 690 256 256 NA 3.871201 2.8332133
## 1535 808 256 256 NA 3.871201 2.8332133
## 1536 661 9 1 NA 3.871201 0.6931472
## 1537 1032 1 1 NA 3.871201 0.6931472
## 1538 334 1 1 NA 3.850148 0.6931472
## ln_Baths ln_Capacity ln_Rating Shared_ind House_ind Private_ind
## 1 NA 1.7917595 1.7474592 0 1 0
## 2 NA 1.7917595 1.7917595 0 1 0
## 3 NA 2.1972246 1.7917595 NA NA NA
## 4 NA 1.6094379 1.6094379 NA NA NA
## 5 NA 1.9459101 1.7715568 0 1 0
## 6 NA 2.1972246 1.7917595 0 1 0
## 7 NA 2.1972246 1.7917595 0 1 0
## 8 NA 1.0986123 1.7917595 0 0 1
## 9 NA 1.9459101 1.7917595 0 1 0
## 10 NA 2.0794415 1.7681496 0 1 0
## 11 NA 1.9459101 1.6094379 0 1 0
## 12 NA 1.6094379 1.7681496 0 1 0
## 13 NA 1.3862944 1.6863990 0 1 0
## 14 NA 1.9459101 1.7749524 0 1 0
## 15 NA 1.7917595 1.7917595 0 1 0
## 16 NA 1.0986123 1.7917595 0 1 0
## 17 NA 2.0794415 1.7715568 0 1 0
## 18 NA 2.0794415 1.7613003 0 1 0
## 19 NA 1.7917595 1.6094379 NA NA NA
## 20 NA 1.9459101 1.7917595 0 1 0
## 21 NA 1.6094379 1.6582281 0 1 0
## 22 NA 1.9459101 1.6956156 0 1 0
## 23 NA 1.9459101 1.7917595 0 1 0
## 24 NA 1.0986123 1.7917595 0 1 0
## 25 NA 1.7917595 1.7404662 0 1 0
## 26 NA 1.0986123 1.7917595 0 0 1
## 27 NA 1.0986123 1.7681496 0 1 0
## 28 NA 1.0986123 1.7917595 0 0 1
## 29 NA 1.9459101 1.7917595 0 1 0
## 30 NA 1.3862944 1.6094379 0 0 1
## 31 NA 1.6094379 1.7917595 0 0 1
## 32 NA 1.9459101 1.7578579 0 1 0
## 33 NA 0.6931472 0.0000000 0 1 0
## 34 NA 1.9459101 1.6094379 0 1 0
## 35 NA 1.9459101 1.7917595 0 1 0
## 36 NA 1.7917595 1.7647308 0 1 0
## 37 NA 1.6094379 1.7047481 NA NA NA
## 38 NA 1.9459101 1.7917595 0 1 0
## 39 NA 1.9459101 1.7917595 0 1 0
## 40 NA 2.0794415 1.7917595 0 1 0
## 41 NA 2.0794415 1.7917595 0 1 0
## 42 NA 0.6931472 1.7263317 0 0 1
## 43 NA 1.0986123 1.7047481 0 0 1
## 44 NA 1.0986123 1.7917595 0 0 1
## 45 NA 1.7917595 1.7698546 0 1 0
## 46 NA 2.8332133 1.5040774 0 0 1
## 47 NA 1.0986123 1.7917595 0 0 1
## 48 NA 1.7917595 1.7681496 0 1 0
## 49 NA 1.6094379 1.7047481 NA NA NA
## 50 NA 1.0986123 1.7917595 0 0 1
## 51 NA 1.7917595 1.7917595 0 1 0
## 52 NA 2.1972246 1.7917595 0 1 0
## 53 NA 1.7917595 1.7227666 0 1 0
## 54 NA 1.0986123 1.7917595 0 1 0
## 55 NA 2.1972246 1.7630170 0 1 0
## 56 NA 1.7917595 1.7422190 0 1 0
## 57 NA 1.6094379 1.7917595 0 1 0
## 58 NA 2.5649494 1.7766458 0 1 0
## 59 NA 2.5649494 1.7850705 0 1 0
## 60 NA 1.0986123 1.7917595 0 0 1
## 61 NA 1.9459101 1.7351891 0 0 1
## 62 NA 0.6931472 1.7766458 0 0 1
## 63 NA 1.7917595 1.7749524 0 1 0
## 64 NA 1.7917595 1.7561323 0 1 0
## 65 NA 2.1972246 1.6094379 0 1 0
## 66 NA 1.9459101 1.3862944 0 1 0
## 67 NA 2.1972246 1.7664417 0 1 0
## 68 NA 1.7917595 1.7917595 0 1 0
## 69 NA 1.0986123 1.6094379 0 1 0
## 70 NA 1.0986123 1.6863990 0 1 0
## 71 NA 1.7917595 1.7917595 0 1 0
## 72 NA 1.7917595 1.7917595 0 1 0
## 73 NA 1.7917595 1.7917595 0 1 0
## 74 NA 1.7917595 1.7917595 0 1 0
## 75 NA 1.7917595 1.7917595 0 1 0
## 76 NA 1.7917595 1.6094379 0 1 0
## 77 NA 1.9459101 1.7491999 0 1 0
## 78 NA 2.0794415 1.6094379 0 1 0
## 79 NA 1.6094379 1.7917595 0 1 0
## 80 NA 1.7917595 1.6094379 0 1 0
## 81 NA 1.9459101 1.7457155 0 1 0
## 82 NA 1.6094379 1.7595806 0 1 0
## 83 NA 1.0986123 1.7917595 0 0 1
## 84 NA 2.8332133 1.7047481 0 1 0
## 85 NA 1.0986123 1.7917595 0 0 1
## 86 NA 1.0986123 1.7917595 0 0 1
## 87 NA 1.0986123 1.7047481 NA NA NA
## 88 NA 2.0794415 1.7917595 NA NA NA
## 89 NA 1.9459101 1.6094379 0 1 0
## 90 NA 1.9459101 1.2527630 0 1 0
## 91 NA 1.9459101 1.7917595 0 1 0
## 92 NA 1.3862944 1.7917595 0 0 1
## 93 NA 1.9459101 1.7917595 0 1 0
## 94 NA 2.1972246 1.7681496 0 1 0
## 95 NA 2.3025851 1.7613003 0 1 0
## 96 NA 1.6094379 1.3862944 0 0 1
## 97 NA 1.6094379 1.7817091 0 1 0
## 98 NA 2.1972246 1.7526721 0 1 0
## 99 NA 2.1972246 1.7630170 0 1 0
## 100 NA 1.0986123 1.7732560 0 1 0
## 101 NA 1.0986123 1.7833912 0 1 0
## 102 NA 1.0986123 1.7917595 0 0 1
## 103 NA 1.7917595 1.7263317 0 1 0
## 104 NA 1.6094379 1.7422190 0 1 0
## 105 NA 1.0986123 1.7917595 0 1 0
## 106 NA 1.9459101 1.6094379 NA NA NA
## 107 NA 1.7917595 1.6900958 0 1 0
## 108 NA 1.9459101 1.6900958 0 1 0
## 109 NA 1.7917595 1.7732560 NA NA NA
## 110 NA 1.6094379 1.7917595 0 0 1
## 111 NA 1.7917595 1.7422190 NA NA NA
## 112 NA 1.9459101 1.6582281 0 1 0
## 113 NA 1.0986123 1.6094379 0 1 0
## 114 NA 1.0986123 1.7917595 0 0 1
## 115 NA 2.3025851 1.7474592 0 1 0
## 116 NA 1.0986123 1.7917595 0 1 0
## 117 NA 2.3025851 1.7647308 0 1 0
## 118 NA 2.3025851 1.7817091 0 1 0
## 119 NA 2.1972246 1.7917595 0 1 0
## 120 NA 2.1972246 1.6370531 0 1 0
## 121 NA 2.1972246 1.7917595 0 1 0
## 122 NA 1.9459101 1.6094379 0 1 0
## 123 NA 1.6094379 1.6094379 0 1 0
## 124 NA 1.6094379 1.6094379 0 1 0
## 125 NA 1.0986123 1.7681496 NA NA NA
## 126 NA 1.3862944 1.7544037 0 1 0
## 127 NA 1.0986123 0.0000000 0 1 0
## 128 NA 1.0986123 1.3862944 0 1 0
## 129 NA 1.0986123 1.7917595 0 1 0
## 130 NA 2.1972246 1.7544037 0 1 0
## 131 NA 1.0986123 1.7578579 NA NA NA
## 132 NA 1.3862944 1.7387102 0 1 0
## 133 NA 1.0986123 1.6937791 0 1 0
## 134 NA 1.3862944 1.7917595 0 1 0
## 135 NA 2.1972246 1.7850705 0 1 0
## 136 NA 1.9459101 1.7917595 0 1 0
## 137 NA 1.9459101 1.7917595 0 1 0
## 138 NA 1.0986123 1.7917595 0 1 0
## 139 NA 2.7080502 1.7917595 0 0 1
## 140 NA 1.0986123 1.7369512 NA NA NA
## 141 NA 1.9459101 1.6826884 0 1 0
## 142 NA 1.0986123 1.7457155 NA NA NA
## 143 NA 1.0986123 1.6094379 0 1 0
## 144 NA 1.6094379 1.7526721 0 1 0
## 145 NA 2.8332133 1.7698546 0 1 0
## 146 NA 1.6094379 1.7917595 0 1 0
## 147 NA 1.6094379 1.7850705 0 1 0
## 148 NA 1.7917595 1.7351891 0 1 0
## 149 NA 1.6094379 1.7917595 0 1 0
## 150 NA 1.0986123 1.7817091 0 1 0
## 151 NA 1.0986123 1.7749524 NA NA NA
## 152 NA 1.0986123 1.6863990 0 1 0
## 153 NA 1.9459101 1.7227666 0 1 0
## 154 NA 1.9459101 1.7917595 0 1 0
## 155 NA 1.7917595 0.6931472 0 1 0
## 156 NA 1.3862944 1.6620304 NA NA NA
## 157 NA 1.6094379 1.7698546 0 1 0
## 158 NA 1.3862944 1.6620304 0 1 0
## 159 NA 1.0986123 1.7783364 0 1 0
## 160 NA 1.6094379 1.7298841 0 1 0
## 161 NA 1.6094379 1.7298841 0 1 0
## 162 NA 1.6094379 1.7544037 0 1 0
## 163 NA 1.9459101 1.7715568 0 1 0
## 164 NA 1.3862944 1.0986123 0 0 1
## 165 NA 1.0986123 1.6370531 NA NA NA
## 166 NA 1.3862944 1.0986123 0 1 0
## 167 NA 1.3862944 1.7387102 0 1 0
## 168 NA 1.9459101 1.7047481 0 1 0
## 169 NA 1.9459101 1.6094379 0 1 0
## 170 NA 1.3862944 1.7681496 NA NA NA
## 171 NA 1.0986123 1.7173951 NA NA NA
## 172 NA 1.6094379 1.7732560 0 1 0
## 173 NA 1.0986123 1.7917595 0 1 0
## 174 NA 1.6094379 1.7439688 0 1 0
## 175 NA 1.6094379 1.7917595 0 1 0
## 176 NA 1.3862944 1.7917595 0 1 0
## 177 NA 1.0986123 1.7664417 0 1 0
## 178 NA 1.6094379 1.3862944 0 1 0
## 179 NA 1.9459101 1.7917595 0 1 0
## 180 NA 1.6094379 1.7766458 0 1 0
## 181 NA 1.6094379 1.7867469 0 1 0
## 182 NA 1.3862944 1.7439688 0 1 0
## 183 NA 1.3862944 1.7917595 0 1 0
## 184 NA 1.6094379 1.7544037 0 1 0
## 185 NA 2.8332133 1.7422190 0 0 1
## 186 NA 1.3862944 1.6919391 0 0 1
## 187 NA 1.3862944 1.7917595 0 0 1
## 188 NA 1.3862944 1.7263317 0 0 1
## 189 NA 1.3862944 1.7749524 0 0 1
## 190 NA 1.3862944 1.7173951 0 0 1
## 191 NA 1.3862944 1.7509375 0 0 1
## 192 NA 1.0986123 1.3862944 0 0 1
## 193 NA 1.0986123 1.6094379 0 1 0
## 194 NA 1.0986123 1.7917595 0 1 0
## 195 NA 1.0986123 1.7457155 0 1 0
## 196 NA 1.0986123 1.7630170 0 0 1
## 197 NA 1.6094379 1.7917595 0 1 0
## 198 NA 1.0986123 1.7561323 0 1 0
## 199 NA 1.9459101 1.7578579 0 1 0
## 200 NA 1.3862944 1.7917595 0 1 0
## 201 NA 1.0986123 1.7917595 0 1 0
## 202 NA 1.9459101 1.7491999 0 1 0
## 203 NA 1.9459101 1.7917595 0 1 0
## 204 NA 1.7917595 1.7917595 0 1 0
## 205 NA 1.0986123 1.6448051 0 0 1
## 206 NA 1.6094379 1.7047481 0 1 0
## 207 NA 1.3862944 1.7191888 0 1 0
## 208 NA 1.3862944 1.7917595 0 1 0
## 209 NA 1.9459101 1.7578579 0 1 0
## 210 NA 1.9459101 1.7526721 0 1 0
## 211 NA 1.9459101 1.7613003 0 1 0
## 212 NA 1.9459101 1.7766458 0 1 0
## 213 NA 2.3978953 1.6094379 0 0 1
## 214 NA 1.0986123 1.7578579 0 0 1
## 215 NA 1.3862944 1.7800242 0 1 0
## 216 NA 1.0986123 1.7917595 0 0 1
## 217 NA 1.0986123 1.7047481 NA NA NA
## 218 NA 1.0986123 1.7917595 NA NA NA
## 219 NA 1.3862944 1.7917595 0 1 0
## 220 NA 1.0986123 1.7917595 0 1 0
## 221 NA 2.1972246 1.7917595 0 0 1
## 222 NA 2.1972246 1.7917595 0 0 1
## 223 NA 2.1972246 1.7917595 0 0 1
## 224 NA 1.9459101 1.7917595 0 1 0
## 225 NA 2.1972246 1.6733512 0 1 0
## 226 NA 1.6094379 1.7281094 0 1 0
## 227 NA 1.0986123 1.7917595 0 1 0
## 228 NA 1.6094379 1.7917595 0 1 0
## 229 NA 1.0986123 1.7917595 0 1 0
## 230 NA 1.7917595 1.7681496 0 1 0
## 231 NA 1.0986123 1.7917595 0 0 1
## 232 NA 1.3862944 1.7917595 NA NA NA
## 233 NA 1.0986123 1.7561323 0 1 0
## 234 NA 1.0986123 1.7491999 0 1 0
## 235 NA 1.0986123 1.7509375 0 1 0
## 236 NA 1.0986123 1.7681496 0 1 0
## 237 NA 0.6931472 1.7917595 NA NA NA
## 238 NA 0.6931472 1.7439688 NA NA NA
## 239 NA 1.0986123 1.7351891 0 1 0
## 240 NA 1.6094379 1.7613003 0 1 0
## 241 NA 1.7917595 1.7047481 0 1 0
## 242 NA 1.7917595 1.7917595 0 1 0
## 243 NA 1.0986123 1.7732560 0 1 0
## 244 NA 1.7917595 1.7732560 0 1 0
## 245 NA 1.0986123 1.7917595 0 1 0
## 246 NA 1.0986123 1.7833912 NA NA NA
## 247 NA 1.3862944 1.7047481 0 1 0
## 248 NA 1.3862944 0.0000000 0 1 0
## 249 NA 1.6094379 1.7457155 0 1 0
## 250 NA 1.6094379 1.7227666 0 1 0
## 251 NA 1.9459101 1.7917595 0 1 0
## 252 NA 1.9459101 1.3862944 0 0 1
## 253 NA 1.9459101 1.7917595 0 0 1
## 254 NA 1.9459101 1.6094379 0 0 1
## 255 NA 1.6094379 1.6733512 NA NA NA
## 256 NA 1.6094379 1.3862944 0 1 0
## 257 NA 1.0986123 1.7578579 0 1 0
## 258 NA 1.0986123 1.7457155 0 0 1
## 259 NA 1.3862944 1.7647308 0 1 0
## 260 NA 2.1972246 1.7681496 0 1 0
## 261 NA 1.3862944 1.6094379 0 1 0
## 262 NA 1.3862944 0.0000000 0 1 0
## 263 NA 0.6931472 0.6931472 0 0 1
## 264 NA 1.0986123 1.7917595 0 1 0
## 265 NA 1.0986123 1.7664417 0 1 0
## 266 NA 1.9459101 1.7917595 0 1 0
## 267 NA 2.3025851 0.6931472 0 1 0
## 268 NA 2.3978953 1.3862944 0 0 1
## 269 NA 1.9459101 1.6428727 0 1 0
## 270 NA 1.9459101 1.7917595 0 1 0
## 271 NA 1.7917595 1.7047481 0 1 0
## 272 NA 1.7917595 1.7595806 0 1 0
## 273 NA 1.0986123 1.7917595 0 1 0
## 274 NA 0.6931472 1.7917595 0 0 1
## 275 NA 1.9459101 1.7783364 0 1 0
## 276 NA 1.6094379 1.7917595 0 1 0
## 277 NA 1.6094379 1.7422190 0 0 1
## 278 NA 1.3862944 1.6094379 NA NA NA
## 279 NA 1.0986123 1.7083779 NA NA NA
## 280 NA 1.0986123 1.7281094 0 0 1
## 281 NA 1.3862944 1.5411591 0 1 0
## 282 NA 1.0986123 1.7766458 NA NA NA
## 283 NA 1.0986123 1.3862944 0 1 0
## 284 NA 1.0986123 1.7155981 0 0 1
## 285 NA 1.0986123 1.7047481 NA NA NA
## 286 NA 1.6094379 1.7191888 NA NA NA
## 287 NA 1.6094379 1.7917595 0 1 0
## 288 NA 1.6094379 1.7595806 0 1 0
## 289 NA 1.9459101 1.5325569 0 1 0
## 290 NA 0.6931472 1.7917595 NA NA NA
## 291 NA 1.3862944 1.6733512 0 0 1
## 292 NA 1.0986123 1.7173951 0 0 1
## 293 NA 1.0986123 1.7917595 0 1 0
## 294 NA 1.3862944 1.7917595 0 1 0
## 295 NA 1.9459101 1.7578579 0 1 0
## 296 NA 2.1972246 1.7047481 NA NA NA
## 297 NA 1.6094379 0.0000000 0 1 0
## 298 NA 1.3862944 1.6733512 0 1 0
## 299 NA 2.3025851 0.6931472 0 1 0
## 300 NA 1.3862944 1.6094379 0 1 0
## 301 NA 1.3862944 1.7917595 0 1 0
## 302 NA 1.0986123 1.3862944 0 1 0
## 303 NA 1.0986123 1.7917595 0 1 0
## 304 NA 1.6094379 1.6094379 0 0 1
## 305 NA 1.6094379 1.6094379 0 0 1
## 306 NA 1.0986123 1.7917595 0 1 0
## 307 NA 1.9459101 1.6094379 0 1 0
## 308 NA 2.3978953 1.6213665 NA NA NA
## 309 NA 1.0986123 1.7155981 NA NA NA
## 310 NA 1.0986123 1.7281094 0 1 0
## 311 NA 1.6094379 1.7917595 0 1 0
## 312 NA 1.0986123 1.7561323 NA NA NA
## 313 NA 0.6931472 1.6094379 1 0 0
## 314 NA 2.0794415 1.7917595 0 1 0
## 315 NA 1.9459101 1.6919391 0 1 0
## 316 NA 1.6094379 1.7173951 0 1 0
## 317 NA 1.9459101 1.7766458 0 1 0
## 318 NA 1.9459101 1.7917595 0 1 0
## 319 NA 1.9459101 1.6733512 0 1 0
## 320 NA 1.0986123 1.7917595 0 1 0
## 321 NA 1.6094379 1.7227666 0 1 0
## 322 NA 1.6094379 1.7491999 0 1 0
## 323 NA 1.0986123 1.7047481 0 0 1
## 324 NA 1.0986123 1.7351891 NA NA NA
## 325 NA 1.0986123 1.7491999 NA NA NA
## 326 NA 1.0986123 1.7630170 0 1 0
## 327 NA 2.0794415 1.7387102 0 1 0
## 328 NA 2.0794415 1.6094379 0 1 0
## 329 NA 1.9459101 1.6505799 0 1 0
## 330 NA 1.0986123 1.6094379 0 0 1
## 331 NA 1.9459101 1.7833912 0 1 0
## 332 NA 1.0986123 1.7917595 0 1 0
## 333 NA 1.6094379 1.7047481 0 1 0
## 334 NA 1.7917595 1.6863990 0 1 0
## 335 NA 1.6094379 1.7047481 0 1 0
## 336 NA 1.3862944 1.6486586 0 1 0
## 337 NA 1.0986123 1.7715568 NA NA NA
## 338 NA 1.0986123 1.7766458 0 1 0
## 339 NA 1.9459101 1.5040774 0 1 0
## 340 NA 1.0986123 1.7917595 0 1 0
## 341 NA 1.7917595 1.7369512 0 1 0
## 342 NA 1.0986123 1.7630170 0 0 1
## 343 NA 1.0986123 1.6094379 NA NA NA
## 344 NA 0.6931472 1.7351891 NA NA NA
## 345 NA 1.0986123 1.7917595 0 0 1
## 346 NA 1.3862944 1.3001917 0 0 1
## 347 NA 1.7917595 1.7917595 0 1 0
## 348 NA 1.6094379 1.6826884 NA NA NA
## 349 NA 1.6094379 1.6826884 0 1 0
## 350 NA 1.6094379 1.6733512 0 1 0
## 351 NA 1.9459101 1.6826884 0 1 0
## 352 NA 1.9459101 1.7917595 0 1 0
## 353 NA 1.3862944 1.7800242 0 1 0
## 354 NA 1.0986123 1.7917595 0 0 1
## 355 NA 1.6094379 1.7917595 0 1 0
## 356 NA 1.0986123 1.7917595 0 1 0
## 357 NA 1.6094379 1.6094379 0 1 0
## 358 NA 1.0986123 1.7647308 0 1 0
## 359 NA 1.0986123 1.7137979 0 1 0
## 360 NA 1.3862944 1.7681496 0 1 0
## 361 NA 2.0794415 1.6845454 0 1 0
## 362 NA 1.6094379 1.7630170 0 0 1
## 363 NA 1.0986123 1.7917595 0 0 1
## 364 NA 1.6094379 1.7917595 0 0 1
## 365 NA 1.9459101 1.6863990 0 1 0
## 366 NA 1.6094379 1.7681496 0 1 0
## 367 NA 1.6094379 1.7917595 0 1 0
## 368 NA 1.0986123 1.7917595 0 1 0
## 369 NA 1.6094379 0.0000000 0 0 1
## 370 NA 2.3025851 1.7917595 0 1 0
## 371 NA 1.6094379 1.7227666 0 1 0
## 372 NA 1.6094379 1.7917595 0 1 0
## 373 NA 1.0986123 1.7917595 0 1 0
## 374 NA 1.0986123 1.6601310 NA NA NA
## 375 NA 2.1972246 1.6900958 0 0 1
## 376 NA 1.6094379 1.7029283 0 1 0
## 377 NA 1.6094379 1.7917595 0 0 1
## 378 NA 1.6094379 1.7439688 0 1 0
## 379 NA 0.6931472 1.7369512 NA NA NA
## 380 NA 1.6094379 1.7917595 0 1 0
## 381 NA 2.1972246 1.7227666 0 1 0
## 382 NA 1.9459101 1.4655675 0 1 0
## 383 NA 1.9459101 1.6094379 0 1 0
## 384 NA 1.3862944 1.7917595 0 1 0
## 385 NA 1.0986123 1.3862944 0 1 0
## 386 NA 2.3025851 1.7917595 0 1 0
## 387 NA 1.9459101 1.7917595 0 1 0
## 388 NA 1.0986123 1.6094379 0 1 0
## 389 NA 2.3025851 1.7917595 0 1 0
## 390 NA 2.3025851 1.7917595 0 1 0
## 391 NA 1.9459101 1.7917595 0 1 0
## 392 NA 1.0986123 1.7369512 0 0 1
## 393 NA 1.0986123 1.7526721 0 0 1
## 394 NA 1.6094379 1.7917595 0 1 0
## 395 NA 1.0986123 1.7917595 0 1 0
## 396 NA 1.0986123 1.6094379 0 0 1
## 397 NA 1.0986123 1.6582281 0 0 1
## 398 NA 1.0986123 1.7917595 0 1 0
## 399 NA 1.6094379 0.6931472 0 1 0
## 400 NA 1.0986123 1.7630170 0 1 0
## 401 NA 1.6094379 1.6563215 0 1 0
## 402 NA 1.0986123 1.6919391 0 0 1
## 403 NA 1.0986123 1.7422190 0 0 1
## 404 NA 0.6931472 1.7917595 0 0 1
## 405 NA 1.0986123 1.7917595 0 0 1
## 406 NA 1.6094379 1.7917595 0 1 0
## 407 NA 1.7917595 1.6770966 0 1 0
## 408 NA 1.0986123 1.7630170 0 1 0
## 409 NA 1.6094379 1.7439688 0 1 0
## 410 NA 1.0986123 1.7404662 0 1 0
## 411 NA 1.6094379 1.7917595 0 1 0
## 412 NA 1.6094379 1.6863990 0 1 0
## 413 NA 1.7917595 1.7351891 0 1 0
## 414 NA 1.9459101 1.7917595 0 0 1
## 415 NA 1.6094379 1.7047481 0 1 0
## 416 NA 1.6094379 1.7917595 0 1 0
## 417 NA 1.6094379 1.7917595 0 1 0
## 418 NA 1.6094379 1.7613003 0 1 0
## 419 NA 1.3862944 1.7917595 0 1 0
## 420 NA 1.0986123 1.6919391 0 0 1
## 421 NA 1.0986123 1.7917595 0 0 1
## 422 NA 1.0986123 1.7474592 0 0 1
## 423 NA 1.6094379 1.6937791 0 1 0
## 424 NA 1.6094379 1.4206958 0 1 0
## 425 NA 1.6094379 1.7137979 0 1 0
## 426 NA 1.6094379 1.7917595 0 1 0
## 427 NA 1.0986123 1.6733512 NA NA NA
## 428 NA 1.7917595 1.7281094 0 1 0
## 429 NA 1.6094379 1.7917595 0 1 0
## 430 NA 1.7917595 1.7917595 0 1 0
## 431 NA 1.0986123 1.3862944 0 0 1
## 432 NA 1.6094379 1.7047481 NA NA NA
## 433 NA 1.0986123 1.7681496 0 0 1
## 434 NA 1.0986123 1.7917595 0 1 0
## 435 NA 1.0986123 1.7715568 0 1 0
## 436 NA 1.7917595 1.7917595 0 1 0
## 437 NA 1.0986123 1.7595806 0 1 0
## 438 NA 1.6094379 1.7578579 0 1 0
## 439 NA 1.7917595 1.6956156 0 1 0
## 440 NA 1.3862944 1.7047481 0 0 1
## 441 NA 1.3862944 1.6094379 0 0 1
## 442 NA 1.0986123 1.7561323 0 0 1
## 443 NA 1.0986123 1.7578579 0 1 0
## 444 NA 1.6094379 1.6937791 0 1 0
## 445 NA 1.6094379 1.6956156 0 1 0
## 446 NA 1.0986123 1.6094379 0 0 1
## 447 NA 1.3862944 1.7173951 NA NA NA
## 448 NA 1.0986123 1.7917595 0 0 1
## 449 NA 0.6931472 0.0000000 0 0 1
## 450 NA 1.6094379 1.6253113 0 1 0
## 451 NA 1.6094379 1.7917595 0 1 0
## 452 NA 1.6094379 0.0000000 0 0 1
## 453 NA 1.6094379 1.7047481 0 1 0
## 454 NA 1.9459101 1.6937791 0 0 1
## 455 NA 2.1972246 1.7561323 0 1 0
## 456 NA 1.0986123 1.7917595 0 0 1
## 457 NA 1.0986123 1.7137979 NA NA NA
## 458 NA 1.7917595 1.7917595 0 1 0
## 459 NA 1.7917595 1.6428727 0 1 0
## 460 NA 1.0986123 1.7351891 0 1 0
## 461 NA 1.0986123 1.6094379 0 1 0
## 462 NA 1.0986123 1.7917595 0 1 0
## 463 NA 1.3862944 1.7917595 0 1 0
## 464 NA 1.3862944 1.6620304 0 1 0
## 465 NA 1.0986123 1.7917595 0 0 1
## 466 NA 1.0986123 1.7917595 0 1 0
## 467 NA 0.6931472 1.7011051 NA NA NA
## 468 NA 1.6094379 1.6789640 0 1 0
## 469 NA 1.0986123 1.7457155 0 0 1
## 470 NA 1.0986123 0.0000000 0 0 1
## 471 NA 1.6094379 1.5810384 NA NA NA
## 472 NA 1.0986123 1.7715568 0 0 1
## 473 NA 1.6094379 1.6882491 0 1 0
## 474 NA 1.0986123 1.6544113 0 1 0
## 475 NA 1.6094379 1.7917595 0 1 0
## 476 NA 1.0986123 1.7917595 0 1 0
## 477 NA 1.6094379 1.3862944 0 1 0
## 478 NA 1.0986123 1.7047481 0 1 0
## 479 NA 1.0986123 1.7647308 0 1 0
## 480 NA 1.0986123 1.7732560 0 0 1
## 481 NA 1.6094379 1.7351891 0 0 1
## 482 NA 1.6094379 1.4655675 0 0 1
## 483 NA 1.6094379 1.7647308 0 1 0
## 484 NA 1.0986123 1.7917595 0 0 1
## 485 NA 1.6094379 1.6733512 0 1 0
## 486 NA 1.0986123 1.5040774 NA NA NA
## 487 NA 1.0986123 1.7457155 0 1 0
## 488 NA 1.3862944 1.7578579 0 1 0
## 489 NA 1.0986123 1.7351891 0 0 1
## 490 NA 0.6931472 1.7191888 0 0 1
## 491 NA 1.0986123 1.7917595 0 1 0
## 492 NA 1.9459101 1.6919391 0 1 0
## 493 NA 1.6094379 1.6695918 0 1 0
## 494 NA 1.6094379 1.6505799 0 1 0
## 495 NA 1.9459101 1.7457155 0 1 0
## 496 NA 2.1972246 1.7351891 0 0 1
## 497 NA 2.0794415 1.7047481 0 0 1
## 498 NA 1.6094379 1.5411591 0 1 0
## 499 NA 1.0986123 1.7544037 0 1 0
## 500 NA 1.6094379 1.7917595 0 1 0
## 501 NA 1.0986123 1.6733512 NA NA NA
## 502 NA 1.0986123 1.7917595 0 0 1
## 503 NA 1.0986123 1.7613003 0 1 0
## 504 NA 2.8332133 1.6094379 NA NA NA
## 505 NA 1.0986123 1.6094379 0 1 0
## 506 NA 1.0986123 1.7439688 0 1 0
## 507 NA 1.0986123 1.6094379 NA NA NA
## 508 NA 1.6094379 1.7491999 0 1 0
## 509 NA 1.0986123 1.7047481 0 0 1
## 510 NA 1.6094379 1.7917595 0 1 0
## 511 NA 1.6094379 1.7917595 0 1 0
## 512 NA 1.0986123 1.7316555 0 0 1
## 513 NA 1.0986123 1.7351891 0 1 0
## 514 NA 0.6931472 1.3862944 0 0 1
## 515 NA 1.0986123 1.7316555 0 0 1
## 516 NA 1.6094379 1.6094379 0 1 0
## 517 NA 1.0986123 1.7664417 0 0 1
## 518 NA 1.0986123 1.6094379 0 1 0
## 519 NA 1.0986123 1.7578579 0 1 0
## 520 NA 1.0986123 1.7595806 0 0 1
## 521 NA 1.0986123 1.7474592 0 1 0
## 522 NA 1.0986123 1.7155981 0 1 0
## 523 NA 1.0986123 1.7917595 0 1 0
## 524 NA 1.7917595 1.7404662 0 1 0
## 525 NA 1.3862944 1.7917595 0 0 1
## 526 NA 1.3862944 1.7917595 0 0 1
## 527 NA 0.6931472 1.7917595 0 0 1
## 528 NA 1.3862944 1.6094379 0 1 0
## 529 NA 1.0986123 1.7917595 0 1 0
## 530 NA 1.3862944 1.7917595 0 1 0
## 531 NA 1.9459101 1.7509375 0 1 0
## 532 NA 2.1972246 1.7404662 0 0 1
## 533 NA 0.6931472 1.3862944 0 0 1
## 534 NA 1.0986123 1.7578579 0 1 0
## 535 NA 1.6094379 1.3862944 0 1 0
## 536 NA 1.7917595 1.7083779 0 1 0
## 537 NA 1.0986123 1.7630170 0 0 1
## 538 NA 1.6094379 1.7351891 0 1 0
## 539 NA 1.3862944 1.7404662 0 1 0
## 540 NA 1.3862944 1.7917595 0 1 0
## 541 NA 1.6094379 1.7917595 0 1 0
## 542 NA 1.7917595 1.7613003 0 1 0
## 543 NA 1.0986123 1.7867469 0 1 0
## 544 NA 1.6094379 1.7917595 0 1 0
## 545 NA 0.6931472 1.7578579 0 0 1
## 546 NA 1.0986123 1.7917595 0 1 0
## 547 NA 1.0986123 1.7917595 0 1 0
## 548 NA 1.6094379 1.7544037 0 1 0
## 549 NA 1.6094379 1.7298841 0 1 0
## 550 NA 1.3862944 1.7917595 0 0 1
## 551 NA 1.3862944 1.3862944 0 0 1
## 552 NA 1.3862944 1.6733512 0 0 1
## 553 NA 1.0986123 1.7474592 0 1 0
## 554 NA 1.0986123 1.7917595 0 1 0
## 555 NA 1.0986123 1.7613003 0 1 0
## 556 NA 1.0986123 1.7817091 0 1 0
## 557 NA 1.0986123 1.7715568 0 1 0
## 558 NA 1.0986123 1.7917595 0 1 0
## 559 NA 1.0986123 1.7578579 0 1 0
## 560 NA 1.0986123 1.7047481 0 1 0
## 561 NA 1.0986123 1.7917595 0 1 0
## 562 NA 1.0986123 1.6094379 0 1 0
## 563 NA 1.0986123 1.7047481 0 1 0
## 564 NA 1.0986123 1.7783364 0 1 0
## 565 NA 0.6931472 1.7917595 0 0 1
## 566 NA 1.0986123 1.6094379 0 1 0
## 567 NA 1.6094379 1.7917595 0 1 0
## 568 NA 1.0986123 1.7474592 0 0 1
## 569 NA 1.0986123 1.7917595 0 1 0
## 570 NA 1.0986123 1.7917595 0 1 0
## 571 NA 1.0986123 1.7047481 0 1 0
## 572 NA 1.6094379 1.7047481 0 1 0
## 573 NA 1.7917595 1.7173951 0 1 0
## 574 NA 1.0986123 1.7917595 0 1 0
## 575 NA 1.0986123 1.6733512 0 1 0
## 576 NA 1.0986123 1.6094379 0 1 0
## 577 NA 1.0986123 1.7917595 0 1 0
## 578 NA 1.6094379 1.6733512 0 1 0
## 579 NA 1.0986123 1.7917595 0 0 1
## 580 NA 1.3862944 1.7613003 0 1 0
## 581 NA 1.3862944 1.7011051 0 1 0
## 582 NA 1.3862944 1.5686159 0 1 0
## 583 NA 1.0986123 1.7917595 0 0 1
## 584 NA 1.3862944 1.5686159 NA NA NA
## 585 NA 1.6094379 1.6094379 0 1 0
## 586 NA 1.3862944 1.7917595 0 1 0
## 587 NA 1.0986123 1.7917595 0 1 0
## 588 NA 1.6094379 1.7491999 0 1 0
## 589 NA 1.0986123 1.7917595 0 1 0
## 590 NA 1.0986123 1.7119945 0 0 1
## 591 NA 1.0986123 1.7917595 0 0 1
## 592 NA 1.3862944 1.7316555 0 1 0
## 593 NA 1.0986123 1.7732560 0 1 0
## 594 NA 1.3862944 1.7917595 0 0 1
## 595 NA 1.0986123 1.7884206 0 1 0
## 596 NA 0.6931472 0.0000000 0 0 1
## 597 NA 1.0986123 1.7917595 0 1 0
## 598 NA 1.3862944 1.7917595 0 1 0
## 599 NA 1.0986123 1.6863990 NA NA NA
## 600 NA 1.0986123 1.7065646 0 1 0
## 601 NA 1.6094379 1.6094379 0 1 0
## 602 NA 1.0986123 1.7595806 0 1 0
## 603 NA 1.0986123 1.6486586 0 0 1
## 604 NA 1.3862944 1.7917595 0 0 1
## 605 NA 1.9459101 1.6789640 0 0 1
## 606 NA 1.9459101 1.6733512 NA NA NA
## 607 NA 1.0986123 1.7047481 1 0 0
## 608 NA 1.0986123 1.7917595 0 1 0
## 609 NA 1.0986123 1.7544037 0 1 0
## 610 NA 1.0986123 1.6733512 0 0 1
## 611 NA 2.0794415 1.5040774 0 1 0
## 612 NA 2.1972246 0.6931472 0 1 0
## 613 NA 1.3862944 1.7917595 0 0 1
## 614 NA 1.3862944 1.6094379 0 0 1
## 615 NA 1.0986123 1.7917595 0 1 0
## 616 NA 1.6094379 1.2527630 0 1 0
## 617 NA 1.3862944 1.6094379 0 1 0
## 618 NA 1.0986123 1.7544037 0 1 0
## 619 NA 1.0986123 1.7613003 0 1 0
## 620 NA 1.7917595 1.7173951 0 1 0
## 621 NA 1.9459101 1.7917595 0 1 0
## 622 NA 1.6094379 1.6094379 0 0 1
## 623 NA 0.6931472 1.7917595 0 0 1
## 624 NA 1.0986123 1.3862944 NA NA NA
## 625 NA 1.6094379 1.7917595 0 1 0
## 626 NA 1.0986123 1.5581446 0 1 0
## 627 NA 1.0986123 1.7917595 0 1 0
## 628 NA 1.3862944 1.3862944 0 1 0
## 629 NA 1.6094379 1.7917595 0 1 0
## 630 NA 1.9459101 1.7083779 0 1 0
## 631 NA 1.0986123 1.7474592 0 1 0
## 632 NA 1.0986123 1.7766458 0 1 0
## 633 NA 1.0986123 1.7867469 0 1 0
## 634 NA 1.0986123 1.7783364 0 1 0
## 635 NA 1.0986123 1.7917595 0 0 1
## 636 NA 1.0986123 1.7800242 0 1 0
## 637 NA 1.0986123 1.7917595 0 1 0
## 638 NA 1.0986123 1.7439688 0 1 0
## 639 NA 1.0986123 1.5973653 0 1 0
## 640 NA 1.0986123 1.5581446 NA NA NA
## 641 NA 1.0986123 1.7544037 0 1 0
## 642 NA 1.0986123 1.6677068 NA NA NA
## 643 NA 1.0986123 1.6956156 NA NA NA
## 644 NA 1.0986123 1.6094379 0 1 0
## 645 NA 1.0986123 1.7917595 NA NA NA
## 646 NA 1.0986123 1.7047481 0 1 0
## 647 NA 1.3862944 1.6486586 0 1 0
## 648 NA 1.6094379 1.7065646 0 0 1
## 649 NA 1.3862944 1.7351891 0 0 1
## 650 NA 1.3862944 1.6733512 NA NA NA
## 651 NA 1.6094379 1.7047481 0 1 0
## 652 NA 1.6094379 1.6448051 0 1 0
## 653 NA 2.0794415 1.7227666 0 0 1
## 654 NA 1.0986123 1.6919391 NA NA NA
## 655 NA 1.6094379 1.5411591 0 0 1
## 656 NA 1.0986123 1.7227666 NA NA NA
## 657 NA 1.0986123 1.6094379 0 0 1
## 658 NA 1.0986123 1.6370531 0 0 1
## 659 NA 1.0986123 1.6863990 0 0 1
## 660 NA 1.0986123 1.6733512 0 0 1
## 661 NA 1.0986123 1.6094379 0 0 1
## 662 NA 1.0986123 1.5851452 0 0 1
## 663 NA 1.3862944 1.7387102 0 1 0
## 664 NA 1.0986123 1.7387102 NA NA NA
## 665 NA 1.0986123 1.7526721 0 0 1
## 666 NA 1.0986123 1.7191888 0 0 1
## 667 NA 1.0986123 1.7047481 0 0 1
## 668 NA 1.0986123 1.7766458 0 0 1
## 669 NA 1.0986123 1.7047481 0 0 1
## 670 NA 1.0986123 1.7917595 0 1 0
## 671 NA 1.0986123 1.7917595 0 1 0
## 672 NA 1.0986123 1.7917595 0 1 0
## 673 NA 1.6094379 1.7917595 0 1 0
## 674 NA 1.9459101 1.7917595 1 0 0
## 675 NA 1.0986123 1.7491999 0 1 0
## 676 NA 1.0986123 1.7509375 0 0 1
## 677 NA 0.6931472 1.7917595 0 0 1
## 678 NA 1.0986123 1.7917595 0 0 1
## 679 NA 1.3862944 1.6919391 0 1 0
## 680 NA 1.3862944 1.7783364 0 1 0
## 681 NA 1.6094379 1.6094379 0 1 0
## 682 NA 1.0986123 1.7369512 0 1 0
## 683 NA 1.0986123 0.0000000 0 0 1
## 684 NA 1.0986123 1.7917595 0 0 1
## 685 NA 1.0986123 1.7526721 0 0 1
## 686 NA 1.0986123 1.7647308 0 1 0
## 687 NA 1.0986123 1.6428727 0 0 1
## 688 NA 1.6094379 1.5040774 0 1 0
## 689 NA 1.0986123 1.7491999 NA NA NA
## 690 NA 1.7917595 1.7209793 0 1 0
## 691 NA 1.0986123 1.7917595 0 1 0
## 692 NA 1.0986123 1.7681496 0 0 1
## 693 NA 1.0986123 1.7917595 0 1 0
## 694 NA 1.0986123 1.7917595 0 1 0
## 695 NA 1.3862944 1.7047481 0 1 0
## 696 NA 1.6094379 1.7457155 0 1 0
## 697 NA 1.3862944 1.7491999 0 0 1
## 698 NA 0.6931472 1.7681496 0 0 1
## 699 NA 1.3862944 1.7457155 0 1 0
## 700 NA 1.0986123 1.7457155 0 1 0
## 701 NA 1.0986123 1.7749524 0 1 0
## 702 NA 1.3862944 1.7316555 0 1 0
## 703 NA 1.0986123 1.7917595 0 0 1
## 704 NA 1.0986123 1.7917595 0 1 0
## 705 NA 1.0986123 1.7422190 0 0 1
## 706 NA 1.0986123 1.7917595 0 1 0
## 707 NA 1.0986123 0.6931472 0 0 1
## 708 NA 1.0986123 1.6094379 0 0 1
## 709 NA 1.0986123 1.7917595 0 0 1
## 710 NA 1.3862944 1.7917595 0 0 1
## 711 NA 1.3862944 1.7917595 0 0 1
## 712 NA 1.3862944 1.7917595 0 0 1
## 713 NA 1.3862944 1.7047481 0 0 1
## 714 NA 1.3862944 1.7917595 0 0 1
## 715 NA 1.3862944 1.7047481 0 1 0
## 716 NA 0.6931472 1.7917595 0 0 1
## 717 NA 1.7917595 1.7800242 0 1 0
## 718 NA 1.6094379 1.7664417 0 1 0
## 719 NA 1.7917595 0.0000000 0 1 0
## 720 NA 1.0986123 1.7647308 0 1 0
## 721 NA 1.0986123 1.7817091 0 1 0
## 722 NA 1.3862944 1.7917595 0 1 0
## 723 NA 1.6094379 1.7917595 0 1 0
## 724 NA 1.0986123 1.7917595 0 1 0
## 725 NA 1.0986123 1.6620304 0 0 1
## 726 NA 1.0986123 1.6486586 0 1 0
## 727 NA 1.0986123 1.7766458 0 1 0
## 728 NA 1.6094379 1.7457155 0 1 0
## 729 NA 1.0986123 1.7917595 0 1 0
## 730 NA 1.0986123 1.7917595 0 1 0
## 731 NA 1.7917595 1.3001917 0 1 0
## 732 NA 1.0986123 1.7917595 0 1 0
## 733 NA 1.0986123 1.7732560 0 0 1
## 734 NA 1.0986123 1.7047481 NA NA NA
## 735 NA 1.0986123 1.7715568 0 1 0
## 736 NA 1.6094379 1.6733512 0 1 0
## 737 NA 1.6094379 1.7917595 0 1 0
## 738 NA 1.0986123 1.7917595 0 0 1
## 739 NA 1.0986123 1.6937791 0 0 1
## 740 NA 1.0986123 1.7047481 NA NA NA
## 741 NA 0.6931472 1.7561323 0 1 0
## 742 NA 1.6094379 1.7491999 0 1 0
## 743 NA 1.0986123 1.7766458 0 1 0
## 744 NA 1.0986123 1.6094379 0 0 1
## 745 NA 1.0986123 1.7917595 0 1 0
## 746 NA 1.0986123 1.7011051 0 0 1
## 747 NA 1.0986123 1.7783364 0 0 1
## 748 NA 1.0986123 1.7917595 0 0 1
## 749 NA 1.0986123 1.7917595 0 1 0
## 750 NA 1.0986123 1.7917595 0 1 0
## 751 NA 1.0986123 1.7917595 0 0 1
## 752 NA 1.6094379 1.7917595 0 0 1
## 753 NA 1.0986123 1.7387102 0 1 0
## 754 NA 1.0986123 1.7917595 0 0 1
## 755 NA 1.0986123 1.7917595 0 1 0
## 756 NA 1.0986123 1.7595806 0 0 1
## 757 NA 0.6931472 1.7698546 0 0 1
## 758 NA 1.0986123 1.7917595 0 0 1
## 759 NA 1.0986123 1.7047481 0 1 0
## 760 NA 1.0986123 1.3862944 0 0 1
## 761 NA 1.0986123 1.7917595 0 0 1
## 762 NA 1.0986123 1.6733512 0 0 1
## 763 NA 1.0986123 1.7491999 NA NA NA
## 764 NA 1.0986123 1.7917595 0 1 0
## 765 NA 1.7917595 1.7209793 0 1 0
## 766 NA 1.6094379 1.7439688 0 1 0
## 767 NA 1.6094379 1.7369512 0 1 0
## 768 NA 1.6094379 1.7173951 0 1 0
## 769 NA 1.6094379 1.7457155 0 1 0
## 770 NA 1.6094379 1.7509375 0 1 0
## 771 NA 1.3862944 1.6826884 0 0 1
## 772 NA 1.3862944 1.7917595 0 0 1
## 773 NA 1.6094379 1.6094379 1 0 0
## 774 NA 1.6094379 1.6094379 0 0 1
## 775 NA 1.3862944 1.7917595 0 0 1
## 776 NA 1.0986123 1.7578579 0 0 1
## 777 NA 1.0986123 1.7047481 0 0 1
## 778 NA 1.0986123 1.7439688 0 1 0
## 779 NA 1.3862944 1.6094379 0 0 1
## 780 NA 1.0986123 1.6658182 NA NA NA
## 781 NA 1.0986123 1.7173951 0 0 1
## 782 NA 1.0986123 1.7047481 0 0 1
## 783 NA 1.0986123 1.3862944 0 0 1
## 784 NA 1.0986123 1.7681496 0 1 0
## 785 NA 1.0986123 1.7917595 0 0 1
## 786 NA 1.0986123 1.7647308 0 1 0
## 787 NA 1.0986123 1.7917595 0 1 0
## 788 NA 1.6094379 1.6094379 1 0 0
## 789 NA 1.7917595 1.7047481 0 1 0
## 790 NA 1.0986123 1.7457155 0 0 1
## 791 NA 2.0794415 1.7526721 0 0 1
## 792 NA 1.9459101 1.7917595 0 0 1
## 793 NA 1.0986123 1.6900958 0 1 0
## 794 NA 1.0986123 1.7578579 NA NA NA
## 795 NA 1.6094379 1.6826884 0 1 0
## 796 NA 1.3862944 1.7263317 0 1 0
## 797 NA 1.0986123 1.7561323 0 0 1
## 798 NA 1.0986123 1.7681496 0 1 0
## 799 NA 1.0986123 1.7917595 0 0 1
## 800 NA 1.0986123 1.7800242 0 0 1
## 801 NA 1.0986123 1.7917595 0 0 1
## 802 NA 1.7917595 1.6937791 0 0 1
## 803 NA 1.0986123 1.7047481 NA NA NA
## 804 NA 1.0986123 1.7491999 0 1 0
## 805 NA 1.3862944 1.7351891 0 1 0
## 806 NA 1.0986123 1.7422190 0 0 1
## 807 NA 1.0986123 1.7917595 0 0 1
## 808 NA 1.0986123 1.7047481 0 1 0
## 809 NA 1.0986123 1.5411591 NA NA NA
## 810 NA 1.0986123 1.6524974 NA NA NA
## 811 NA 1.0986123 1.7491999 NA NA NA
## 812 NA 1.0986123 1.7227666 NA NA NA
## 813 NA 1.0986123 1.3862944 0 0 1
## 814 NA 0.6931472 1.6094379 0 0 1
## 815 NA 1.0986123 1.7917595 0 0 1
## 816 NA 1.9459101 1.6094379 0 0 1
## 817 NA 1.6094379 1.7664417 0 1 0
## 818 NA 1.0986123 1.7630170 0 1 0
## 819 NA 1.0986123 1.5040774 0 1 0
## 820 NA 1.0986123 1.7664417 0 1 0
## 821 NA 1.9459101 1.7917595 0 0 1
## 822 NA 1.0986123 1.7369512 0 0 1
## 823 NA 1.0986123 1.6882491 0 0 1
## 824 NA 1.0986123 1.7047481 0 0 1
## 825 NA 1.0986123 1.7917595 0 0 1
## 826 NA 1.0986123 1.7917595 0 1 0
## 827 NA 1.0986123 1.3862944 0 0 1
## 828 NA 1.0986123 1.7917595 0 1 0
## 829 NA 1.0986123 1.7917595 0 1 0
## 830 NA 1.0986123 1.7917595 0 1 0
## 831 NA 1.0986123 1.7917595 0 1 0
## 832 NA 1.0986123 1.7917595 0 1 0
## 833 NA 1.0986123 1.7732560 0 1 0
## 834 NA 0.6931472 1.7578579 0 0 1
## 835 NA 1.9459101 1.6882491 0 0 1
## 836 NA 0.6931472 1.7457155 NA NA NA
## 837 NA 1.0986123 1.7917595 0 0 1
## 838 NA 1.0986123 1.7917595 0 1 0
## 839 NA 1.0986123 1.7209793 NA NA NA
## 840 NA 1.0986123 1.7917595 0 1 0
## 841 NA 1.0986123 1.7298841 0 1 0
## 842 NA 1.0986123 1.7917595 0 1 0
## 843 NA 1.3862944 1.7917595 0 1 0
## 844 NA 1.0986123 1.6582281 0 1 0
## 845 NA 1.0986123 1.7351891 0 1 0
## 846 NA 1.0986123 1.7766458 0 1 0
## 847 NA 1.0986123 1.7917595 0 0 1
## 848 NA 1.0986123 1.7917595 0 0 1
## 849 NA 1.0986123 1.7917595 0 0 1
## 850 NA 1.0986123 1.7917595 0 0 1
## 851 NA 0.6931472 1.7698546 0 1 0
## 852 NA 1.6094379 1.7800242 0 1 0
## 853 NA 1.6094379 1.7766458 0 1 0
## 854 NA 1.0986123 1.7137979 0 1 0
## 855 NA 1.0986123 1.7561323 0 1 0
## 856 NA 1.0986123 1.7917595 0 1 0
## 857 NA 1.0986123 1.7191888 0 1 0
## 858 NA 1.0986123 1.7917595 0 1 0
## 859 NA 1.0986123 1.7917595 0 1 0
## 860 NA 0.6931472 1.6900958 NA NA NA
## 861 NA 0.6931472 1.7917595 0 0 1
## 862 NA 1.0986123 1.7917595 0 1 0
## 863 NA 1.0986123 1.7917595 0 1 0
## 864 NA 1.0986123 1.5748465 0 0 1
## 865 NA 1.0986123 1.6658182 0 0 1
## 866 NA 1.6094379 1.7917595 0 0 1
## 867 NA 1.0986123 1.7917595 0 0 1
## 868 NA 1.7917595 1.7917595 0 1 0
## 869 NA 1.0986123 1.7917595 0 1 0
## 870 NA 1.6094379 1.7281094 0 0 1
## 871 NA 1.6094379 1.7065646 0 0 1
## 872 NA 1.6094379 1.7316555 0 1 0
## 873 NA 1.7917595 1.7917595 0 1 0
## 874 NA 1.6094379 1.7917595 0 1 0
## 875 NA 1.6094379 1.7715568 0 1 0
## 876 NA 1.6094379 1.6733512 0 0 1
## 877 NA 0.6931472 0.0000000 0 1 0
## 878 NA 0.6931472 1.7917595 0 0 1
## 879 NA 1.0986123 1.7613003 0 0 1
## 880 NA 1.6094379 1.7917595 0 0 1
## 881 NA 1.3862944 1.7917595 0 1 0
## 882 NA 1.0986123 1.7917595 0 1 0
## 883 NA 1.0986123 1.7917595 0 0 1
## 884 NA 1.6094379 1.7491999 0 0 1
## 885 NA 1.3862944 1.7917595 0 1 0
## 886 NA 1.0986123 1.7917595 0 1 0
## 887 NA 1.0986123 1.7917595 0 1 0
## 888 NA 1.3862944 1.7681496 0 0 1
## 889 NA 1.0986123 1.7281094 0 1 0
## 890 NA 1.0986123 1.7715568 0 1 0
## 891 NA 0.6931472 1.7917595 0 1 0
## 892 NA 1.0986123 1.6467337 0 1 0
## 893 NA 1.0986123 1.7800242 0 1 0
## 894 NA 1.3862944 1.7173951 0 0 1
## 895 NA 1.0986123 1.7917595 0 1 0
## 896 NA 0.6931472 1.7917595 0 0 1
## 897 NA 1.6094379 1.7917595 0 0 1
## 898 NA 1.0986123 1.7595806 0 0 1
## 899 NA 1.6094379 1.7351891 0 1 0
## 900 NA 1.0986123 1.7595806 0 1 0
## 901 NA 1.0986123 1.7766458 0 0 1
## 902 NA 1.0986123 0.6931472 0 0 1
## 903 NA 1.0986123 1.7917595 0 0 1
## 904 NA 0.6931472 1.6863990 0 0 1
## 905 NA 1.0986123 1.6733512 NA NA NA
## 906 NA 0.6931472 1.6658182 NA NA NA
## 907 NA 1.3862944 1.7917595 0 0 1
## 908 NA 1.6094379 1.3862944 0 0 1
## 909 NA 0.6931472 1.7917595 0 0 1
## 910 NA 1.0986123 1.7698546 0 0 1
## 911 NA 1.6094379 1.7681496 0 1 0
## 912 NA 1.0986123 1.7833912 0 0 1
## 913 NA 1.0986123 1.3217558 0 0 1
## 914 NA 1.3862944 1.7917595 0 1 0
## 915 NA 1.0986123 1.7917595 0 1 0
## 916 NA 1.0986123 1.5411591 NA NA NA
## 917 NA 1.0986123 1.7917595 0 1 0
## 918 NA 1.6094379 1.7917595 0 0 1
## 919 NA 1.7917595 1.7749524 0 1 0
## 920 NA 1.0986123 1.7630170 0 0 1
## 921 NA 1.0986123 1.7732560 0 1 0
## 922 NA 1.0986123 1.6486586 0 1 0
## 923 NA 1.0986123 1.7578579 0 0 1
## 924 NA 1.3862944 1.5748465 0 1 0
## 925 NA 1.0986123 1.7917595 0 0 1
## 926 NA 1.3862944 1.6544113 0 0 1
## 927 NA 1.0986123 1.7917595 0 1 0
## 928 NA 0.6931472 1.7917595 0 0 1
## 929 NA 1.3862944 1.6094379 0 1 0
## 930 NA 1.3862944 1.7917595 0 1 0
## 931 NA 1.0986123 1.6974488 0 0 1
## 932 NA 1.0986123 1.6789640 0 0 1
## 933 NA 1.0986123 1.7457155 0 0 1
## 934 NA 0.6931472 1.7766458 0 0 1
## 935 NA 1.0986123 1.6733512 NA NA NA
## 936 NA 1.6094379 1.6094379 0 0 1
## 937 NA 1.7917595 1.6919391 0 0 1
## 938 NA 1.0986123 1.7647308 0 0 1
## 939 NA 1.0986123 1.7800242 0 0 1
## 940 NA 1.0986123 1.6826884 0 1 0
## 941 NA 1.0986123 1.7917595 0 0 1
## 942 NA 1.0986123 1.7850705 0 1 0
## 943 NA 0.6931472 1.7578579 0 0 1
## 944 NA 1.0986123 1.6213665 0 1 0
## 945 NA 1.9459101 1.7047481 0 0 1
## 946 NA 1.0986123 1.6094379 1 0 0
## 947 NA 1.0986123 1.7209793 0 0 1
## 948 NA 1.6094379 1.7613003 0 0 1
## 949 NA 1.0986123 1.7917595 NA NA NA
## 950 NA 1.0986123 1.7800242 0 0 1
## 951 NA 1.0986123 1.6826884 0 0 1
## 952 NA 1.0986123 1.4469190 NA NA NA
## 953 NA 1.0986123 0.6931472 0 1 0
## 954 NA 1.6094379 1.7047481 1 0 0
## 955 NA 1.0986123 1.7917595 0 0 1
## 956 NA 1.0986123 1.7917595 0 1 0
## 957 NA 1.0986123 1.7766458 0 0 1
## 958 NA 1.3862944 1.7917595 0 0 1
## 959 NA 1.3862944 1.7491999 0 0 1
## 960 NA 1.3862944 1.7630170 0 0 1
## 961 NA 1.3862944 1.7047481 0 0 1
## 962 NA 1.3862944 1.7191888 0 0 1
## 963 NA 1.3862944 1.7917595 0 0 1
## 964 NA 1.3862944 1.7491999 0 0 1
## 965 NA 0.6931472 1.7917595 0 1 0
## 966 NA 1.0986123 1.7800242 0 0 1
## 967 NA 1.9459101 1.7917595 0 0 1
## 968 NA 1.0986123 1.7917595 0 1 0
## 969 NA 1.3862944 1.7578579 0 0 1
## 970 NA 1.3862944 1.7351891 0 0 1
## 971 NA 1.0986123 1.7917595 0 0 1
## 972 NA 1.3862944 1.7917595 0 0 1
## 973 NA 1.3862944 1.7783364 0 0 1
## 974 NA 1.0986123 0.6931472 0 1 0
## 975 NA 1.0986123 1.7917595 0 0 1
## 976 NA 1.3862944 1.7578579 0 1 0
## 977 NA 1.0986123 1.7047481 0 1 0
## 978 NA 1.0986123 1.7917595 0 0 1
## 979 NA 1.0986123 1.7173951 0 1 0
## 980 NA 1.9459101 1.7578579 0 0 1
## 981 NA 1.0986123 1.7422190 0 1 0
## 982 NA 0.6931472 1.6582281 0 0 1
## 983 NA 1.0986123 1.7917595 0 0 1
## 984 NA 0.6931472 1.7664417 0 0 1
## 985 NA 1.0986123 1.7630170 0 1 0
## 986 NA 1.6094379 1.7227666 0 1 0
## 987 NA 1.0986123 1.7457155 0 1 0
## 988 NA 1.0986123 1.7369512 0 1 0
## 989 NA 1.9459101 1.7613003 0 0 1
## 990 NA 0.6931472 1.7578579 0 0 1
## 991 NA 1.6094379 1.7119945 0 0 1
## 992 NA 1.0986123 1.6937791 0 1 0
## 993 NA 1.0986123 1.7439688 0 1 0
## 994 NA 1.0986123 1.7351891 0 0 1
## 995 NA 1.0986123 1.7457155 0 1 0
## 996 NA 1.0986123 1.7917595 0 0 1
## 997 NA 1.0986123 1.5912739 0 0 1
## 998 NA 1.0986123 1.6733512 NA NA NA
## 999 NA 1.0986123 1.5260563 0 0 1
## 1000 NA 1.0986123 1.6428727 0 0 1
## 1001 NA 1.0986123 1.6409366 0 0 1
## 1002 NA 1.0986123 1.6292405 0 0 1
## 1003 NA 1.0986123 1.7227666 0 1 0
## 1004 NA 1.0986123 1.7917595 0 1 0
## 1005 NA 1.0986123 1.6094379 0 1 0
## 1006 NA 1.0986123 1.6351057 NA NA NA
## 1007 NA 1.0986123 1.7917595 0 1 0
## 1008 NA 1.6094379 1.7351891 0 1 0
## 1009 NA 1.0986123 1.7422190 0 0 1
## 1010 NA 1.0986123 1.7732560 0 0 1
## 1011 NA 1.0986123 1.7917595 0 1 0
## 1012 NA 0.6931472 1.7509375 0 0 1
## 1013 NA 1.0986123 1.6428727 NA NA NA
## 1014 NA 1.0986123 1.6094379 0 1 0
## 1015 NA 1.3862944 1.7917595 0 0 1
## 1016 NA 2.0794415 1.7047481 0 0 1
## 1017 NA 1.0986123 1.7526721 0 1 0
## 1018 NA 1.0986123 1.7298841 0 0 1
## 1019 NA 0.6931472 1.7783364 0 0 1
## 1020 NA 1.0986123 1.6094379 0 0 1
## 1021 NA 1.0986123 1.7457155 0 1 0
## 1022 NA 1.3862944 1.6733512 0 0 1
## 1023 NA 1.0986123 1.7544037 0 1 0
## 1024 NA 1.3862944 1.6937791 0 0 1
## 1025 NA 1.0986123 1.7749524 0 0 1
## 1026 NA 1.0986123 1.7715568 0 0 1
## 1027 NA 1.0986123 1.7613003 0 1 0
## 1028 NA 0.6931472 1.6733512 0 0 1
## 1029 NA 1.0986123 1.7439688 0 0 1
## 1030 NA 1.0986123 1.7867469 0 0 1
## 1031 NA 1.0986123 1.7647308 0 1 0
## 1032 NA 1.0986123 1.7681496 0 0 1
## 1033 NA 0.6931472 1.7561323 0 0 1
## 1034 NA 1.6094379 1.7732560 0 0 1
## 1035 NA 1.3862944 1.7867469 0 0 1
## 1036 NA 0.6931472 1.7351891 0 1 0
## 1037 NA 0.6931472 1.7544037 0 0 1
## 1038 NA 1.0986123 1.7917595 0 0 1
## 1039 NA 1.0986123 1.7387102 0 1 0
## 1040 NA 1.0986123 1.7715568 0 1 0
## 1041 NA 1.0986123 1.6826884 0 1 0
## 1042 NA 1.3862944 1.7011051 0 0 1
## 1043 NA 1.3862944 1.7316555 0 0 1
## 1044 NA 1.6094379 1.5040774 0 0 1
## 1045 NA 1.0986123 1.7732560 0 1 0
## 1046 NA 1.0986123 1.7917595 0 0 1
## 1047 NA 1.0986123 1.7595806 0 0 1
## 1048 NA 1.0986123 1.6937791 0 1 0
## 1049 NA 1.0986123 1.7263317 0 0 1
## 1050 NA 0.6931472 1.7917595 0 0 1
## 1051 NA 0.6931472 1.7047481 0 0 1
## 1052 NA 1.0986123 1.7047481 0 1 0
## 1053 NA 1.3862944 1.6863990 0 0 1
## 1054 NA 1.0986123 1.3862944 0 1 0
## 1055 NA 1.0986123 1.7561323 0 0 1
## 1056 NA 1.0986123 1.7191888 0 0 1
## 1057 NA 0.6931472 1.4655675 1 0 0
## 1058 NA 1.0986123 1.7101878 0 1 0
## 1059 NA 1.0986123 1.7917595 0 1 0
## 1060 NA 1.0986123 1.6094379 0 0 1
## 1061 NA 1.0986123 1.7766458 0 0 1
## 1062 NA 1.3862944 1.6826884 0 0 1
## 1063 NA 1.0986123 1.7281094 0 1 0
## 1064 NA 1.0986123 1.7917595 0 0 1
## 1065 NA 0.6931472 1.7917595 0 0 1
## 1066 NA 1.0986123 1.7917595 0 1 0
## 1067 NA 0.6931472 1.7732560 0 0 1
## 1068 NA 0.6931472 1.7917595 0 0 1
## 1069 NA 1.0986123 1.7281094 0 1 0
## 1070 NA 1.0986123 1.7245507 0 0 1
## 1071 NA 1.0986123 1.7783364 0 1 0
## 1072 NA 1.3862944 1.6582281 0 0 1
## 1073 NA 0.6931472 1.7404662 0 0 1
## 1074 NA 0.6931472 1.7526721 0 0 1
## 1075 NA 1.0986123 1.5325569 0 1 0
## 1076 NA 1.0986123 1.6733512 0 1 0
## 1077 NA 1.0986123 1.7613003 0 1 0
## 1078 NA 0.6931472 1.7647308 0 0 1
## 1079 NA 1.0986123 1.3862944 0 1 0
## 1080 NA 0.6931472 1.7630170 0 1 0
## 1081 NA 1.0986123 1.7917595 0 0 1
## 1082 NA 0.6931472 1.7783364 0 0 1
## 1083 NA 1.0986123 1.7047481 0 1 0
## 1084 NA 1.0986123 1.7422190 0 1 0
## 1085 NA 1.0986123 1.3862944 0 1 0
## 1086 NA 1.0986123 1.7917595 0 0 1
## 1087 NA 0.6931472 1.7917595 0 0 1
## 1088 NA 1.0986123 1.7917595 0 1 0
## 1089 NA 1.0986123 1.7387102 0 1 0
## 1090 NA 1.0986123 1.7917595 0 0 1
## 1091 NA 1.0986123 1.6919391 0 1 0
## 1092 NA 1.0986123 1.7047481 0 0 1
## 1093 NA 1.0986123 1.7917595 0 0 1
## 1094 NA 1.0986123 1.7664417 0 1 0
## 1095 NA 1.6094379 1.7065646 0 0 1
## 1096 NA 1.0986123 1.7227666 0 0 1
## 1097 NA 1.0986123 1.7917595 0 0 1
## 1098 NA 1.6094379 1.6900958 0 0 1
## 1099 NA 1.0986123 1.7800242 0 1 0
## 1100 NA 0.6931472 1.7613003 0 1 0
## 1101 NA 1.0986123 1.6733512 0 0 1
## 1102 NA 1.0986123 1.7491999 1 0 0
## 1103 NA 0.6931472 1.7047481 0 0 1
## 1104 NA 1.0986123 1.7281094 0 0 1
## 1105 NA 1.0986123 1.7561323 0 1 0
## 1106 NA 1.0986123 1.7491999 0 1 0
## 1107 NA 1.0986123 1.7613003 0 1 0
## 1108 NA 1.0986123 1.7817091 0 0 1
## 1109 NA 1.0986123 1.7613003 0 0 1
## 1110 NA 1.0986123 1.7316555 0 1 0
## 1111 NA 1.0986123 1.7698546 0 1 0
## 1112 NA 1.0986123 1.7526721 0 1 0
## 1113 NA 1.0986123 1.7698546 0 1 0
## 1114 NA 1.0986123 1.7578579 0 1 0
## 1115 NA 1.0986123 1.7209793 0 1 0
## 1116 NA 1.0986123 1.7917595 0 1 0
## 1117 NA 1.0986123 1.7917595 0 1 0
## 1118 NA 1.3862944 1.6409366 0 0 1
## 1119 NA 1.3862944 1.6882491 0 0 1
## 1120 NA 1.0986123 1.7664417 0 1 0
## 1121 NA 1.0986123 1.7509375 0 1 0
## 1122 NA 0.6931472 1.7578579 0 1 0
## 1123 NA 1.0986123 1.7917595 0 0 1
## 1124 NA 1.0986123 1.7917595 0 1 0
## 1125 NA 0.6931472 1.2527630 0 0 1
## 1126 NA 1.0986123 1.6428727 0 0 1
## 1127 NA 0.6931472 1.7917595 0 0 1
## 1128 NA 1.3862944 1.7917595 0 1 0
## 1129 NA 1.0986123 1.7491999 0 1 0
## 1130 NA 1.9459101 1.7630170 0 0 1
## 1131 NA 1.0986123 1.7369512 0 1 0
## 1132 NA 1.0986123 1.7245507 0 1 0
## 1133 NA 1.0986123 1.7544037 0 1 0
## 1134 NA 1.0986123 1.7227666 0 1 0
## 1135 NA 1.0986123 1.7715568 0 0 1
## 1136 NA 1.0986123 1.7917595 0 1 0
## 1137 NA 0.6931472 1.7917595 0 0 1
## 1138 NA 1.0986123 1.7457155 0 1 0
## 1139 NA 1.7917595 1.6292405 0 0 1
## 1140 NA 1.0986123 1.7387102 0 1 0
## 1141 NA 1.0986123 1.7474592 0 0 1
## 1142 NA 1.0986123 1.7917595 0 1 0
## 1143 NA 1.3862944 1.7457155 0 0 1
## 1144 NA 1.0986123 1.7155981 0 0 1
## 1145 NA 1.6094379 1.7917595 0 0 1
## 1146 NA 1.0986123 1.7917595 0 0 1
## 1147 NA 1.0986123 1.7917595 0 0 1
## 1148 NA 1.3862944 1.7917595 0 1 0
## 1149 NA 1.0986123 1.7884206 0 0 1
## 1150 NA 1.0986123 1.6094379 0 0 1
## 1151 NA 1.0986123 1.7917595 0 0 1
## 1152 NA 1.0986123 1.7281094 0 0 1
## 1153 NA 1.0986123 1.7047481 0 0 1
## 1154 NA 0.6931472 1.6863990 0 0 1
## 1155 NA 1.0986123 1.7047481 1 0 0
## 1156 NA 1.0986123 1.6486586 1 0 0
## 1157 NA 1.0986123 1.6094379 0 0 1
## 1158 NA 0.6931472 1.7917595 0 0 1
## 1159 NA 1.0986123 1.7917595 0 1 0
## 1160 NA 1.7917595 0.6931472 0 0 1
## 1161 NA 1.0986123 1.6094379 0 0 1
## 1162 NA 1.0986123 1.7578579 0 1 0
## 1163 NA 1.0986123 1.7047481 0 0 1
## 1164 NA 1.0986123 1.7664417 0 1 0
## 1165 NA 0.6931472 1.7404662 0 0 1
## 1166 NA 0.6931472 1.6094379 0 0 1
## 1167 NA 1.0986123 1.7509375 0 0 1
## 1168 NA 0.6931472 1.7298841 0 0 1
## 1169 NA 1.7917595 1.7917595 0 0 1
## 1170 NA 1.0986123 1.7422190 0 1 0
## 1171 NA 1.0986123 1.7155981 0 0 1
## 1172 NA 1.0986123 1.6582281 0 0 1
## 1173 NA 0.6931472 1.7917595 0 0 1
## 1174 NA 1.0986123 1.7281094 0 1 0
## 1175 NA 1.0986123 1.7351891 0 1 0
## 1176 NA 1.0986123 1.7595806 0 1 0
## 1177 NA 0.6931472 1.7664417 0 0 1
## 1178 NA 0.6931472 1.6292405 0 0 1
## 1179 NA 1.0986123 1.7647308 0 1 0
## 1180 NA 1.0986123 1.7544037 0 0 1
## 1181 NA 1.0986123 1.6094379 0 0 1
## 1182 NA 1.0986123 1.7351891 0 0 1
## 1183 NA 0.6931472 1.7917595 0 0 1
## 1184 NA 1.0986123 1.6094379 0 0 1
## 1185 NA 1.0986123 1.7681496 0 0 1
## 1186 NA 1.0986123 1.7917595 0 0 1
## 1187 NA 1.0986123 1.7474592 0 1 0
## 1188 NA 1.0986123 1.7439688 0 1 0
## 1189 NA 1.0986123 1.6544113 0 0 1
## 1190 NA 1.0986123 1.6826884 0 0 1
## 1191 NA 1.0986123 1.6544113 0 0 1
## 1192 NA 1.0986123 1.5851452 0 0 1
## 1193 NA 1.0986123 1.7681496 0 1 0
## 1194 NA 1.0986123 1.7263317 0 0 1
## 1195 NA 0.6931472 1.7917595 0 0 1
## 1196 NA 1.0986123 1.7509375 0 1 0
## 1197 NA 1.0986123 1.7491999 0 1 0
## 1198 NA 1.0986123 1.7491999 0 1 0
## 1199 NA 1.0986123 1.7630170 0 1 0
## 1200 NA 1.0986123 1.7715568 0 1 0
## 1201 NA 1.0986123 1.7351891 0 1 0
## 1202 NA 1.0986123 1.6919391 0 0 1
## 1203 NA 0.6931472 1.7613003 0 1 0
## 1204 NA 1.0986123 1.7578579 0 1 0
## 1205 NA 1.0986123 1.7561323 0 0 1
## 1206 NA 1.0986123 1.7491999 0 1 0
## 1207 NA 0.6931472 1.7917595 0 1 0
## 1208 NA 1.0986123 1.7715568 0 1 0
## 1209 NA 1.0986123 1.6094379 0 0 1
## 1210 NA 1.0986123 1.7917595 0 1 0
## 1211 NA 1.6094379 1.7917595 0 0 1
## 1212 NA 1.0986123 1.7404662 0 1 0
## 1213 NA 2.0794415 1.7681496 0 0 1
## 1214 NA 1.7917595 1.7613003 0 0 1
## 1215 NA 1.0986123 1.7613003 0 1 0
## 1216 NA 1.0986123 1.7544037 0 1 0
## 1217 NA 1.0986123 1.7698546 0 1 0
## 1218 NA 1.0986123 1.7800242 0 1 0
## 1219 NA 1.0986123 1.6919391 0 0 1
## 1220 NA 1.0986123 1.7404662 0 0 1
## 1221 NA 1.6094379 1.4469190 0 0 1
## 1222 NA 1.0986123 1.7491999 0 0 1
## 1223 NA 1.0986123 1.7544037 0 0 1
## 1224 NA 0.6931472 1.7613003 0 0 1
## 1225 NA 1.0986123 1.7647308 0 0 1
## 1226 NA 0.6931472 0.0000000 0 0 1
## 1227 NA 1.0986123 1.7917595 0 1 0
## 1228 NA 1.0986123 1.6919391 0 0 1
## 1229 NA 0.6931472 1.6094379 0 0 1
## 1230 NA 0.6931472 1.6094379 0 0 1
## 1231 NA 0.6931472 1.7047481 0 0 1
## 1232 NA 0.6931472 1.7422190 0 0 1
## 1233 NA 1.0986123 1.7630170 0 0 1
## 1234 NA 1.0986123 1.5040774 0 0 1
## 1235 NA 1.0986123 1.6658182 0 0 1
## 1236 NA 0.6931472 1.3862944 0 0 1
## 1237 NA 0.6931472 1.5040774 0 0 1
## 1238 NA 1.0986123 1.7227666 0 0 1
## 1239 NA 0.6931472 1.7917595 0 0 1
## 1240 NA 0.6931472 1.7917595 0 0 1
## 1241 NA 0.6931472 1.7917595 0 0 1
## 1242 NA 0.6931472 1.7917595 0 0 1
## 1243 NA 0.6931472 1.7917595 0 0 1
## 1244 NA 0.6931472 1.7917595 0 0 1
## 1245 NA 0.6931472 1.6094379 0 0 1
## 1246 NA 0.6931472 1.7917595 0 0 1
## 1247 NA 0.6931472 1.7917595 0 0 1
## 1248 NA 0.6931472 1.7917595 0 0 1
## 1249 NA 0.6931472 1.7047481 0 0 1
## 1250 NA 0.6931472 1.7917595 0 0 1
## 1251 NA 0.6931472 1.7917595 0 0 1
## 1252 NA 0.6931472 1.7917595 0 0 1
## 1253 NA 0.6931472 0.6931472 0 0 1
## 1254 NA 1.0986123 1.7544037 0 1 0
## 1255 NA 1.0986123 1.7664417 0 1 0
## 1256 NA 1.0986123 1.7351891 0 0 1
## 1257 NA 1.3862944 1.7917595 0 0 1
## 1258 NA 1.0986123 1.7491999 0 0 1
## 1259 NA 1.0986123 1.7457155 0 1 0
## 1260 NA 1.0986123 1.7817091 0 1 0
## 1261 NA 1.0986123 1.7544037 0 1 0
## 1262 NA 1.0986123 1.7917595 0 1 0
## 1263 NA 1.0986123 1.7917595 0 1 0
## 1264 NA 1.0986123 1.7281094 0 0 1
## 1265 NA 1.0986123 1.7917595 0 0 1
## 1266 NA 1.0986123 1.7422190 0 1 0
## 1267 NA 1.0986123 1.6826884 NA NA NA
## 1268 NA 1.0986123 1.6845454 0 0 1
## 1269 NA 0.6931472 1.7749524 0 0 1
## 1270 NA 1.3862944 1.7509375 0 0 1
## 1271 NA 1.3862944 1.7613003 0 0 1
## 1272 NA 1.0986123 1.7917595 0 0 1
## 1273 NA 0.6931472 1.7351891 NA NA NA
## 1274 NA 0.6931472 1.7917595 0 0 1
## 1275 NA 0.6931472 1.7119945 0 0 1
## 1276 NA 1.0986123 1.7491999 0 1 0
## 1277 NA 2.8332133 1.7316555 1 0 0
## 1278 NA 0.6931472 1.7491999 0 0 1
## 1279 NA 0.6931472 1.7917595 0 0 1
## 1280 NA 0.6931472 1.7681496 0 0 1
## 1281 NA 1.6094379 1.7227666 0 1 0
## 1282 NA 1.0986123 1.7281094 0 0 1
## 1283 NA 1.0986123 1.7047481 0 0 1
## 1284 NA 1.0986123 1.7404662 0 1 0
## 1285 NA 0.6931472 1.7917595 0 0 1
## 1286 NA 0.6931472 1.6937791 0 0 1
## 1287 NA 1.0986123 1.7439688 0 0 1
## 1288 NA 0.6931472 1.7681496 0 0 1
## 1289 NA 1.0986123 1.7526721 0 0 1
## 1290 NA 1.0986123 1.4655675 0 0 1
## 1291 NA 0.6931472 1.7766458 0 0 1
## 1292 NA 1.0986123 1.7833912 0 0 1
## 1293 NA 1.0986123 1.6094379 0 0 1
## 1294 NA 1.0986123 1.7917595 0 1 0
## 1295 NA 0.6931472 1.7917595 0 0 1
## 1296 NA 1.0986123 1.7917595 0 0 1
## 1297 NA 1.0986123 1.7351891 0 0 1
## 1298 NA 1.0986123 1.6882491 0 0 1
## 1299 NA 1.0986123 1.6505799 0 0 1
## 1300 NA 1.0986123 1.6486586 0 0 1
## 1301 NA 1.0986123 1.6620304 0 0 1
## 1302 NA 1.0986123 1.6486586 0 0 1
## 1303 NA 1.0986123 1.6351057 0 0 1
## 1304 NA 1.0986123 1.7457155 0 1 0
## 1305 NA 1.0986123 1.6524974 0 0 1
## 1306 NA 1.0986123 1.6524974 0 0 1
## 1307 NA 1.0986123 1.7647308 0 0 1
## 1308 NA 0.6931472 0.0000000 0 0 1
## 1309 NA 0.6931472 1.6486586 0 0 1
## 1310 NA 1.0986123 1.7119945 0 0 1
## 1311 NA 1.0986123 1.7137979 0 0 1
## 1312 NA 1.0986123 1.6524974 0 0 1
## 1313 NA 1.0986123 1.6094379 0 0 1
## 1314 NA 1.0986123 1.7155981 0 0 1
## 1315 NA 1.0986123 1.7917595 0 0 1
## 1316 NA 1.0986123 1.6094379 0 0 1
## 1317 NA 1.0986123 1.7173951 0 0 1
## 1318 NA 1.0986123 1.6094379 0 0 1
## 1319 NA 0.6931472 1.7155981 1 0 0
## 1320 NA 0.6931472 1.7351891 NA NA NA
## 1321 NA 1.0986123 1.7387102 0 1 0
## 1322 NA 1.0986123 1.7681496 0 0 1
## 1323 NA 1.3862944 1.5411591 0 0 1
## 1324 NA 1.0986123 1.7369512 0 0 1
## 1325 NA 1.0986123 1.7351891 0 0 1
## 1326 NA 1.0986123 1.7351891 0 0 1
## 1327 NA 1.0986123 1.7369512 0 0 1
## 1328 NA 1.3862944 1.7155981 0 0 1
## 1329 NA 1.3862944 1.7155981 0 0 1
## 1330 NA 0.6931472 1.7917595 0 0 1
## 1331 NA 0.6931472 1.7578579 0 0 1
## 1332 NA 1.0986123 1.5581446 0 0 1
## 1333 NA 1.3862944 1.6845454 0 0 1
## 1334 NA 0.6931472 1.6448051 1 0 0
## 1335 NA 0.6931472 1.7917595 0 0 1
## 1336 NA 1.0986123 1.7850705 0 0 1
## 1337 NA 1.0986123 1.7917595 0 0 1
## 1338 NA 1.0986123 1.7917595 0 0 1
## 1339 NA 1.3862944 1.7647308 0 0 1
## 1340 NA 0.6931472 1.7732560 0 0 1
## 1341 NA 1.0986123 1.7227666 0 0 1
## 1342 NA 0.6931472 1.6733512 0 0 1
## 1343 NA 1.0986123 1.7698546 0 0 1
## 1344 NA 0.6931472 1.7526721 0 0 1
## 1345 NA 1.0986123 1.7351891 0 0 1
## 1346 NA 1.0986123 1.7209793 0 0 1
## 1347 NA 1.0986123 1.7047481 0 0 1
## 1348 NA 1.3862944 1.7047481 0 0 1
## 1349 NA 0.6931472 1.7917595 0 0 1
## 1350 NA 1.0986123 1.7263317 0 0 1
## 1351 NA 0.6931472 1.7715568 0 0 1
## 1352 NA 1.0986123 1.3862944 0 0 1
## 1353 NA 0.6931472 1.7766458 0 0 1
## 1354 NA 1.0986123 1.7526721 0 0 1
## 1355 NA 1.0986123 1.7917595 0 0 1
## 1356 NA 1.3862944 1.7351891 0 0 1
## 1357 NA 1.0986123 1.6094379 0 0 1
## 1358 NA 1.0986123 1.7047481 0 0 1
## 1359 NA 0.6931472 1.7917595 0 0 1
## 1360 NA 1.0986123 1.7917595 0 0 1
## 1361 NA 1.0986123 1.7227666 0 0 1
## 1362 NA 0.6931472 1.7351891 0 0 1
## 1363 NA 0.6931472 1.6370531 0 0 1
## 1364 NA 0.6931472 1.7491999 0 0 1
## 1365 NA 1.0986123 1.7227666 0 0 1
## 1366 NA 0.6931472 1.7155981 0 0 1
## 1367 NA 1.0986123 1.7491999 1 0 0
## 1368 NA 0.6931472 1.7578579 0 0 1
## 1369 NA 1.0986123 1.6601310 1 0 0
## 1370 NA 0.6931472 1.7917595 0 0 1
## 1371 NA 0.6931472 1.7917595 0 0 1
## 1372 NA 0.6931472 1.7630170 0 0 1
## 1373 NA 0.6931472 1.7047481 0 0 1
## 1374 NA 0.6931472 1.7047481 0 0 1
## 1375 NA 1.0986123 1.6733512 0 0 1
## 1376 NA 1.0986123 1.7613003 0 0 1
## 1377 NA 0.6931472 1.7047481 0 0 1
## 1378 NA 0.6931472 1.6094379 0 0 1
## 1379 NA 0.6931472 1.6486586 0 0 1
## 1380 NA 0.6931472 1.7917595 0 0 1
## 1381 NA 0.6931472 1.7917595 0 0 1
## 1382 NA 0.6931472 1.3862944 0 0 1
## 1383 NA 0.6931472 1.7917595 0 0 1
## 1384 NA 0.6931472 1.6094379 0 0 1
## 1385 NA 0.6931472 1.7917595 0 0 1
## 1386 NA 0.6931472 1.7917595 0 0 1
## 1387 NA 0.6931472 1.7917595 0 0 1
## 1388 NA 0.6931472 1.5040774 0 0 1
## 1389 NA 0.6931472 1.7917595 0 0 1
## 1390 NA 0.6931472 1.7917595 0 0 1
## 1391 NA 0.6931472 1.7917595 0 0 1
## 1392 NA 0.6931472 1.3862944 0 0 1
## 1393 NA 1.3862944 1.7917595 0 0 1
## 1394 NA 0.6931472 1.7917595 0 0 1
## 1395 NA 0.6931472 1.7917595 0 0 1
## 1396 NA 0.6931472 1.3862944 0 0 1
## 1397 NA 0.6931472 1.7917595 0 0 1
## 1398 NA 0.6931472 1.7917595 0 0 1
## 1399 NA 0.6931472 1.7833912 0 0 1
## 1400 NA 0.6931472 1.7917595 0 0 1
## 1401 NA 1.0986123 1.7698546 0 0 1
## 1402 NA 0.6931472 1.7578579 0 0 1
## 1403 NA 0.6931472 1.7917595 0 0 1
## 1404 NA 1.0986123 1.7817091 0 0 1
## 1405 NA 0.6931472 1.7298841 0 0 1
## 1406 NA 1.0986123 1.7191888 0 0 1
## 1407 NA 1.0986123 1.7917595 0 0 1
## 1408 NA 0.6931472 1.7917595 0 0 1
## 1409 NA 1.3862944 1.7047481 0 0 1
## 1410 NA 1.9459101 1.6845454 NA NA NA
## 1411 NA 0.6931472 1.7351891 0 0 1
## 1412 NA 1.0986123 1.7491999 0 0 1
## 1413 NA 1.0986123 1.7917595 0 0 1
## 1414 NA 1.3862944 1.7065646 0 0 1
## 1415 NA 0.6931472 1.7917595 1 0 0
## 1416 NA 1.0986123 1.7457155 0 0 1
## 1417 NA 1.0986123 1.5040774 1 0 0
## 1418 NA 1.0986123 0.6931472 0 0 1
## 1419 NA 0.6931472 1.7698546 0 0 1
## 1420 NA 1.6094379 1.6826884 0 0 1
## 1421 NA 0.6931472 1.6992786 0 0 1
## 1422 NA 1.3862944 1.7917595 0 0 1
## 1423 NA 1.6094379 1.6639261 0 0 1
## 1424 NA 0.6931472 1.7917595 0 0 1
## 1425 NA 1.3862944 0.0000000 0 0 1
## 1426 NA 0.6931472 1.7917595 0 0 1
## 1427 NA 0.6931472 1.5411591 0 0 1
## 1428 NA 1.0986123 0.0000000 1 0 0
## 1429 NA 0.6931472 1.6733512 0 0 1
## 1430 NA 1.0986123 0.6931472 0 0 1
## 1431 NA 0.6931472 1.7917595 1 0 0
## 1432 NA 0.6931472 1.7917595 0 0 1
## 1433 NA 0.6931472 1.7351891 1 0 0
## 1434 NA 0.6931472 1.6845454 0 0 1
## 1435 NA 0.6931472 1.6937791 0 0 1
## 1436 NA 0.6931472 1.7209793 0 0 1
## 1437 NA 0.6931472 1.7917595 0 0 1
## 1438 NA 1.3862944 1.6094379 0 0 1
## 1439 NA 0.6931472 1.6428727 1 0 0
## 1440 NA 0.6931472 1.7917595 0 0 1
## 1441 NA 1.3862944 1.7155981 0 0 1
## 1442 NA 1.0986123 0.0000000 0 0 1
## 1443 NA 1.0986123 1.6826884 1 0 0
## 1444 NA 0.6931472 1.7917595 0 1 0
## 1445 NA 0.6931472 1.7561323 0 0 1
## 1446 NA 0.6931472 1.7681496 0 0 1
## 1447 NA 1.0986123 1.7491999 0 0 1
## 1448 NA 1.0986123 1.7630170 0 0 1
## 1449 NA 1.0986123 1.3862944 0 0 1
## 1450 NA 1.0986123 1.7047481 0 0 1
## 1451 NA 0.6931472 1.7732560 0 0 1
## 1452 NA 1.0986123 1.7681496 0 0 1
## 1453 NA 1.0986123 1.7664417 0 0 1
## 1454 NA 1.0986123 1.7749524 0 0 1
## 1455 NA 1.3862944 1.7491999 0 0 1
## 1456 NA 1.3862944 1.7047481 0 0 1
## 1457 NA 1.0986123 1.7047481 0 0 1
## 1458 NA 1.0986123 1.6292405 0 0 1
## 1459 NA 1.0986123 1.7800242 0 0 1
## 1460 NA 1.0986123 1.7917595 0 0 1
## 1461 NA 1.3862944 1.3862944 0 0 1
## 1462 NA 0.6931472 1.7917595 1 0 0
## 1463 NA 0.6931472 1.7917595 0 0 1
## 1464 NA 0.6931472 1.7173951 0 0 1
## 1465 NA 1.0986123 1.6428727 0 0 1
## 1466 NA 0.6931472 1.7715568 0 0 1
## 1467 NA 0.6931472 1.7917595 0 0 1
## 1468 NA 0.6931472 1.7047481 0 0 1
## 1469 NA 0.6931472 1.7917595 0 0 1
## 1470 NA 1.0986123 0.0000000 0 0 1
## 1471 NA 1.0986123 1.7664417 0 0 1
## 1472 NA 0.6931472 1.6486586 0 0 1
## 1473 NA 1.0986123 1.7474592 0 0 1
## 1474 NA 0.6931472 1.6094379 0 0 1
## 1475 NA 0.6931472 1.7281094 0 0 1
## 1476 NA 2.8332133 1.6094379 1 0 0
## 1477 NA 0.6931472 1.7917595 0 0 1
## 1478 NA 1.0986123 1.7029283 0 0 1
## 1479 NA 0.6931472 1.7917595 0 0 1
## 1480 NA 0.6931472 1.7917595 0 0 1
## 1481 NA 0.6931472 1.7351891 0 0 1
## 1482 NA 0.6931472 1.7917595 0 0 1
## 1483 NA 0.6931472 1.7047481 0 0 1
## 1484 NA 0.6931472 1.6094379 0 0 1
## 1485 NA 1.0986123 1.7047481 0 0 1
## 1486 NA 0.6931472 1.6094379 0 0 1
## 1487 NA 0.6931472 1.6094379 0 0 1
## 1488 NA 0.6931472 1.7917595 0 0 1
## 1489 NA 0.6931472 1.7917595 0 0 1
## 1490 NA 0.6931472 1.7917595 0 0 1
## 1491 NA 0.6931472 1.7917595 0 0 1
## 1492 NA 0.6931472 1.3862944 0 0 1
## 1493 NA 0.6931472 1.3862944 0 0 1
## 1494 NA 0.6931472 1.6094379 0 0 1
## 1495 NA 0.6931472 1.6094379 0 0 1
## 1496 NA 1.0986123 1.6900958 1 0 0
## 1497 NA 0.6931472 1.6695918 NA NA NA
## 1498 NA 0.6931472 1.6428727 NA NA NA
## 1499 NA 1.0986123 1.7191888 0 0 1
## 1500 NA 0.6931472 1.7917595 0 0 1
## 1501 NA 0.6931472 1.3862944 0 0 1
## 1502 NA 0.6931472 1.7917595 0 0 1
## 1503 NA 0.6931472 1.7917595 0 0 1
## 1504 NA 0.6931472 1.7917595 0 0 1
## 1505 NA 1.0986123 1.7917595 0 0 1
## 1506 NA 0.6931472 1.7917595 0 0 1
## 1507 NA 0.6931472 1.6094379 0 0 1
## 1508 NA 0.6931472 1.7047481 0 0 1
## 1509 NA 0.6931472 1.7917595 0 0 1
## 1510 NA 0.6931472 1.7917595 0 0 1
## 1511 NA 1.0986123 1.7917595 0 0 1
## 1512 NA 0.6931472 1.7917595 0 0 1
## 1513 NA 0.6931472 1.7917595 0 0 1
## 1514 NA 0.6931472 1.7917595 0 0 1
## 1515 NA 0.6931472 1.7917595 0 0 1
## 1516 NA 0.6931472 1.7917595 0 0 1
## 1517 NA 0.6931472 1.7917595 0 0 1
## 1518 NA 0.6931472 1.6094379 0 0 1
## 1519 NA 0.6931472 1.7917595 0 0 1
## 1520 NA 0.6931472 1.7917595 0 0 1
## 1521 NA 0.6931472 1.7917595 0 0 1
## 1522 NA 0.6931472 1.7917595 0 0 1
## 1523 NA 0.6931472 1.7917595 0 0 1
## 1524 NA 0.6931472 1.7191888 0 0 1
## 1525 NA 1.0986123 1.6733512 0 0 1
## 1526 NA 1.0986123 1.7561323 0 0 1
## 1527 NA 1.3862944 1.7137979 0 0 1
## 1528 NA 1.3862944 1.7119945 0 0 1
## 1529 NA 1.3862944 1.7083779 1 0 0
## 1530 NA 0.6931472 1.7917595 0 0 1
## 1531 NA 0.6931472 0.0000000 1 0 0
## 1532 NA 1.0986123 1.7578579 0 0 1
## 1533 NA 1.3862944 1.7047481 0 0 1
## 1534 NA 2.8332133 1.6331544 NA NA NA
## 1535 NA 2.8332133 1.6448051 NA NA NA
## 1536 NA 1.3862944 1.7011051 0 0 1
## 1537 NA 0.6931472 1.7917595 0 0 1
## 1538 NA 0.6931472 1.7281094 0 0 1
## Capacity_x_Shared_ind H_Cap P_Cap ln_Capacity_x_Shared_ind
## 1 0 5 0 0.0000000
## 2 0 5 0 0.0000000
## 3 NA NA NA NA
## 4 NA NA NA NA
## 5 0 6 0 0.0000000
## 6 0 8 0 0.0000000
## 7 0 8 0 0.0000000
## 8 0 0 2 0.0000000
## 9 0 6 0 0.0000000
## 10 0 7 0 0.0000000
## 11 0 6 0 0.0000000
## 12 0 4 0 0.0000000
## 13 0 3 0 0.0000000
## 14 0 6 0 0.0000000
## 15 0 5 0 0.0000000
## 16 0 2 0 0.0000000
## 17 0 7 0 0.0000000
## 18 0 7 0 0.0000000
## 19 NA NA NA NA
## 20 0 6 0 0.0000000
## 21 0 4 0 0.0000000
## 22 0 6 0 0.0000000
## 23 0 6 0 0.0000000
## 24 0 2 0 0.0000000
## 25 0 5 0 0.0000000
## 26 0 0 2 0.0000000
## 27 0 2 0 0.0000000
## 28 0 0 2 0.0000000
## 29 0 6 0 0.0000000
## 30 0 0 3 0.0000000
## 31 0 0 4 0.0000000
## 32 0 6 0 0.0000000
## 33 0 1 0 0.0000000
## 34 0 6 0 0.0000000
## 35 0 6 0 0.0000000
## 36 0 5 0 0.0000000
## 37 NA NA NA NA
## 38 0 6 0 0.0000000
## 39 0 6 0 0.0000000
## 40 0 7 0 0.0000000
## 41 0 7 0 0.0000000
## 42 0 0 1 0.0000000
## 43 0 0 2 0.0000000
## 44 0 0 2 0.0000000
## 45 0 5 0 0.0000000
## 46 0 0 16 0.0000000
## 47 0 0 2 0.0000000
## 48 0 5 0 0.0000000
## 49 NA NA NA NA
## 50 0 0 2 0.0000000
## 51 0 5 0 0.0000000
## 52 0 8 0 0.0000000
## 53 0 5 0 0.0000000
## 54 0 2 0 0.0000000
## 55 0 8 0 0.0000000
## 56 0 5 0 0.0000000
## 57 0 4 0 0.0000000
## 58 0 12 0 0.0000000
## 59 0 12 0 0.0000000
## 60 0 0 2 0.0000000
## 61 0 0 6 0.0000000
## 62 0 0 1 0.0000000
## 63 0 5 0 0.0000000
## 64 0 5 0 0.0000000
## 65 0 8 0 0.0000000
## 66 0 6 0 0.0000000
## 67 0 8 0 0.0000000
## 68 0 5 0 0.0000000
## 69 0 2 0 0.0000000
## 70 0 2 0 0.0000000
## 71 0 5 0 0.0000000
## 72 0 5 0 0.0000000
## 73 0 5 0 0.0000000
## 74 0 5 0 0.0000000
## 75 0 5 0 0.0000000
## 76 0 5 0 0.0000000
## 77 0 6 0 0.0000000
## 78 0 7 0 0.0000000
## 79 0 4 0 0.0000000
## 80 0 5 0 0.0000000
## 81 0 6 0 0.0000000
## 82 0 4 0 0.0000000
## 83 0 0 2 0.0000000
## 84 0 16 0 0.0000000
## 85 0 0 2 0.0000000
## 86 0 0 2 0.0000000
## 87 NA NA NA NA
## 88 NA NA NA NA
## 89 0 6 0 0.0000000
## 90 0 6 0 0.0000000
## 91 0 6 0 0.0000000
## 92 0 0 3 0.0000000
## 93 0 6 0 0.0000000
## 94 0 8 0 0.0000000
## 95 0 9 0 0.0000000
## 96 0 0 4 0.0000000
## 97 0 4 0 0.0000000
## 98 0 8 0 0.0000000
## 99 0 8 0 0.0000000
## 100 0 2 0 0.0000000
## 101 0 2 0 0.0000000
## 102 0 0 2 0.0000000
## 103 0 5 0 0.0000000
## 104 0 4 0 0.0000000
## 105 0 2 0 0.0000000
## 106 NA NA NA NA
## 107 0 5 0 0.0000000
## 108 0 6 0 0.0000000
## 109 NA NA NA NA
## 110 0 0 4 0.0000000
## 111 NA NA NA NA
## 112 0 6 0 0.0000000
## 113 0 2 0 0.0000000
## 114 0 0 2 0.0000000
## 115 0 9 0 0.0000000
## 116 0 2 0 0.0000000
## 117 0 9 0 0.0000000
## 118 0 9 0 0.0000000
## 119 0 8 0 0.0000000
## 120 0 8 0 0.0000000
## 121 0 8 0 0.0000000
## 122 0 6 0 0.0000000
## 123 0 4 0 0.0000000
## 124 0 4 0 0.0000000
## 125 NA NA NA NA
## 126 0 3 0 0.0000000
## 127 0 2 0 0.0000000
## 128 0 2 0 0.0000000
## 129 0 2 0 0.0000000
## 130 0 8 0 0.0000000
## 131 NA NA NA NA
## 132 0 3 0 0.0000000
## 133 0 2 0 0.0000000
## 134 0 3 0 0.0000000
## 135 0 8 0 0.0000000
## 136 0 6 0 0.0000000
## 137 0 6 0 0.0000000
## 138 0 2 0 0.0000000
## 139 0 0 14 0.0000000
## 140 NA NA NA NA
## 141 0 6 0 0.0000000
## 142 NA NA NA NA
## 143 0 2 0 0.0000000
## 144 0 4 0 0.0000000
## 145 0 16 0 0.0000000
## 146 0 4 0 0.0000000
## 147 0 4 0 0.0000000
## 148 0 5 0 0.0000000
## 149 0 4 0 0.0000000
## 150 0 2 0 0.0000000
## 151 NA NA NA NA
## 152 0 2 0 0.0000000
## 153 0 6 0 0.0000000
## 154 0 6 0 0.0000000
## 155 0 5 0 0.0000000
## 156 NA NA NA NA
## 157 0 4 0 0.0000000
## 158 0 3 0 0.0000000
## 159 0 2 0 0.0000000
## 160 0 4 0 0.0000000
## 161 0 4 0 0.0000000
## 162 0 4 0 0.0000000
## 163 0 6 0 0.0000000
## 164 0 0 3 0.0000000
## 165 NA NA NA NA
## 166 0 3 0 0.0000000
## 167 0 3 0 0.0000000
## 168 0 6 0 0.0000000
## 169 0 6 0 0.0000000
## 170 NA NA NA NA
## 171 NA NA NA NA
## 172 0 4 0 0.0000000
## 173 0 2 0 0.0000000
## 174 0 4 0 0.0000000
## 175 0 4 0 0.0000000
## 176 0 3 0 0.0000000
## 177 0 2 0 0.0000000
## 178 0 4 0 0.0000000
## 179 0 6 0 0.0000000
## 180 0 4 0 0.0000000
## 181 0 4 0 0.0000000
## 182 0 3 0 0.0000000
## 183 0 3 0 0.0000000
## 184 0 4 0 0.0000000
## 185 0 0 16 0.0000000
## 186 0 0 3 0.0000000
## 187 0 0 3 0.0000000
## 188 0 0 3 0.0000000
## 189 0 0 3 0.0000000
## 190 0 0 3 0.0000000
## 191 0 0 3 0.0000000
## 192 0 0 2 0.0000000
## 193 0 2 0 0.0000000
## 194 0 2 0 0.0000000
## 195 0 2 0 0.0000000
## 196 0 0 2 0.0000000
## 197 0 4 0 0.0000000
## 198 0 2 0 0.0000000
## 199 0 6 0 0.0000000
## 200 0 3 0 0.0000000
## 201 0 2 0 0.0000000
## 202 0 6 0 0.0000000
## 203 0 6 0 0.0000000
## 204 0 5 0 0.0000000
## 205 0 0 2 0.0000000
## 206 0 4 0 0.0000000
## 207 0 3 0 0.0000000
## 208 0 3 0 0.0000000
## 209 0 6 0 0.0000000
## 210 0 6 0 0.0000000
## 211 0 6 0 0.0000000
## 212 0 6 0 0.0000000
## 213 0 0 10 0.0000000
## 214 0 0 2 0.0000000
## 215 0 3 0 0.0000000
## 216 0 0 2 0.0000000
## 217 NA NA NA NA
## 218 NA NA NA NA
## 219 0 3 0 0.0000000
## 220 0 2 0 0.0000000
## 221 0 0 8 0.0000000
## 222 0 0 8 0.0000000
## 223 0 0 8 0.0000000
## 224 0 6 0 0.0000000
## 225 0 8 0 0.0000000
## 226 0 4 0 0.0000000
## 227 0 2 0 0.0000000
## 228 0 4 0 0.0000000
## 229 0 2 0 0.0000000
## 230 0 5 0 0.0000000
## 231 0 0 2 0.0000000
## 232 NA NA NA NA
## 233 0 2 0 0.0000000
## 234 0 2 0 0.0000000
## 235 0 2 0 0.0000000
## 236 0 2 0 0.0000000
## 237 NA NA NA NA
## 238 NA NA NA NA
## 239 0 2 0 0.0000000
## 240 0 4 0 0.0000000
## 241 0 5 0 0.0000000
## 242 0 5 0 0.0000000
## 243 0 2 0 0.0000000
## 244 0 5 0 0.0000000
## 245 0 2 0 0.0000000
## 246 NA NA NA NA
## 247 0 3 0 0.0000000
## 248 0 3 0 0.0000000
## 249 0 4 0 0.0000000
## 250 0 4 0 0.0000000
## 251 0 6 0 0.0000000
## 252 0 0 6 0.0000000
## 253 0 0 6 0.0000000
## 254 0 0 6 0.0000000
## 255 NA NA NA NA
## 256 0 4 0 0.0000000
## 257 0 2 0 0.0000000
## 258 0 0 2 0.0000000
## 259 0 3 0 0.0000000
## 260 0 8 0 0.0000000
## 261 0 3 0 0.0000000
## 262 0 3 0 0.0000000
## 263 0 0 1 0.0000000
## 264 0 2 0 0.0000000
## 265 0 2 0 0.0000000
## 266 0 6 0 0.0000000
## 267 0 9 0 0.0000000
## 268 0 0 10 0.0000000
## 269 0 6 0 0.0000000
## 270 0 6 0 0.0000000
## 271 0 5 0 0.0000000
## 272 0 5 0 0.0000000
## 273 0 2 0 0.0000000
## 274 0 0 1 0.0000000
## 275 0 6 0 0.0000000
## 276 0 4 0 0.0000000
## 277 0 0 4 0.0000000
## 278 NA NA NA NA
## 279 NA NA NA NA
## 280 0 0 2 0.0000000
## 281 0 3 0 0.0000000
## 282 NA NA NA NA
## 283 0 2 0 0.0000000
## 284 0 0 2 0.0000000
## 285 NA NA NA NA
## 286 NA NA NA NA
## 287 0 4 0 0.0000000
## 288 0 4 0 0.0000000
## 289 0 6 0 0.0000000
## 290 NA NA NA NA
## 291 0 0 3 0.0000000
## 292 0 0 2 0.0000000
## 293 0 2 0 0.0000000
## 294 0 3 0 0.0000000
## 295 0 6 0 0.0000000
## 296 NA NA NA NA
## 297 0 4 0 0.0000000
## 298 0 3 0 0.0000000
## 299 0 9 0 0.0000000
## 300 0 3 0 0.0000000
## 301 0 3 0 0.0000000
## 302 0 2 0 0.0000000
## 303 0 2 0 0.0000000
## 304 0 0 4 0.0000000
## 305 0 0 4 0.0000000
## 306 0 2 0 0.0000000
## 307 0 6 0 0.0000000
## 308 NA NA NA NA
## 309 NA NA NA NA
## 310 0 2 0 0.0000000
## 311 0 4 0 0.0000000
## 312 NA NA NA NA
## 313 1 0 0 0.6931472
## 314 0 7 0 0.0000000
## 315 0 6 0 0.0000000
## 316 0 4 0 0.0000000
## 317 0 6 0 0.0000000
## 318 0 6 0 0.0000000
## 319 0 6 0 0.0000000
## 320 0 2 0 0.0000000
## 321 0 4 0 0.0000000
## 322 0 4 0 0.0000000
## 323 0 0 2 0.0000000
## 324 NA NA NA NA
## 325 NA NA NA NA
## 326 0 2 0 0.0000000
## 327 0 7 0 0.0000000
## 328 0 7 0 0.0000000
## 329 0 6 0 0.0000000
## 330 0 0 2 0.0000000
## 331 0 6 0 0.0000000
## 332 0 2 0 0.0000000
## 333 0 4 0 0.0000000
## 334 0 5 0 0.0000000
## 335 0 4 0 0.0000000
## 336 0 3 0 0.0000000
## 337 NA NA NA NA
## 338 0 2 0 0.0000000
## 339 0 6 0 0.0000000
## 340 0 2 0 0.0000000
## 341 0 5 0 0.0000000
## 342 0 0 2 0.0000000
## 343 NA NA NA NA
## 344 NA NA NA NA
## 345 0 0 2 0.0000000
## 346 0 0 3 0.0000000
## 347 0 5 0 0.0000000
## 348 NA NA NA NA
## 349 0 4 0 0.0000000
## 350 0 4 0 0.0000000
## 351 0 6 0 0.0000000
## 352 0 6 0 0.0000000
## 353 0 3 0 0.0000000
## 354 0 0 2 0.0000000
## 355 0 4 0 0.0000000
## 356 0 2 0 0.0000000
## 357 0 4 0 0.0000000
## 358 0 2 0 0.0000000
## 359 0 2 0 0.0000000
## 360 0 3 0 0.0000000
## 361 0 7 0 0.0000000
## 362 0 0 4 0.0000000
## 363 0 0 2 0.0000000
## 364 0 0 4 0.0000000
## 365 0 6 0 0.0000000
## 366 0 4 0 0.0000000
## 367 0 4 0 0.0000000
## 368 0 2 0 0.0000000
## 369 0 0 4 0.0000000
## 370 0 9 0 0.0000000
## 371 0 4 0 0.0000000
## 372 0 4 0 0.0000000
## 373 0 2 0 0.0000000
## 374 NA NA NA NA
## 375 0 0 8 0.0000000
## 376 0 4 0 0.0000000
## 377 0 0 4 0.0000000
## 378 0 4 0 0.0000000
## 379 NA NA NA NA
## 380 0 4 0 0.0000000
## 381 0 8 0 0.0000000
## 382 0 6 0 0.0000000
## 383 0 6 0 0.0000000
## 384 0 3 0 0.0000000
## 385 0 2 0 0.0000000
## 386 0 9 0 0.0000000
## 387 0 6 0 0.0000000
## 388 0 2 0 0.0000000
## 389 0 9 0 0.0000000
## 390 0 9 0 0.0000000
## 391 0 6 0 0.0000000
## 392 0 0 2 0.0000000
## 393 0 0 2 0.0000000
## 394 0 4 0 0.0000000
## 395 0 2 0 0.0000000
## 396 0 0 2 0.0000000
## 397 0 0 2 0.0000000
## 398 0 2 0 0.0000000
## 399 0 4 0 0.0000000
## 400 0 2 0 0.0000000
## 401 0 4 0 0.0000000
## 402 0 0 2 0.0000000
## 403 0 0 2 0.0000000
## 404 0 0 1 0.0000000
## 405 0 0 2 0.0000000
## 406 0 4 0 0.0000000
## 407 0 5 0 0.0000000
## 408 0 2 0 0.0000000
## 409 0 4 0 0.0000000
## 410 0 2 0 0.0000000
## 411 0 4 0 0.0000000
## 412 0 4 0 0.0000000
## 413 0 5 0 0.0000000
## 414 0 0 6 0.0000000
## 415 0 4 0 0.0000000
## 416 0 4 0 0.0000000
## 417 0 4 0 0.0000000
## 418 0 4 0 0.0000000
## 419 0 3 0 0.0000000
## 420 0 0 2 0.0000000
## 421 0 0 2 0.0000000
## 422 0 0 2 0.0000000
## 423 0 4 0 0.0000000
## 424 0 4 0 0.0000000
## 425 0 4 0 0.0000000
## 426 0 4 0 0.0000000
## 427 NA NA NA NA
## 428 0 5 0 0.0000000
## 429 0 4 0 0.0000000
## 430 0 5 0 0.0000000
## 431 0 0 2 0.0000000
## 432 NA NA NA NA
## 433 0 0 2 0.0000000
## 434 0 2 0 0.0000000
## 435 0 2 0 0.0000000
## 436 0 5 0 0.0000000
## 437 0 2 0 0.0000000
## 438 0 4 0 0.0000000
## 439 0 5 0 0.0000000
## 440 0 0 3 0.0000000
## 441 0 0 3 0.0000000
## 442 0 0 2 0.0000000
## 443 0 2 0 0.0000000
## 444 0 4 0 0.0000000
## 445 0 4 0 0.0000000
## 446 0 0 2 0.0000000
## 447 NA NA NA NA
## 448 0 0 2 0.0000000
## 449 0 0 1 0.0000000
## 450 0 4 0 0.0000000
## 451 0 4 0 0.0000000
## 452 0 0 4 0.0000000
## 453 0 4 0 0.0000000
## 454 0 0 6 0.0000000
## 455 0 8 0 0.0000000
## 456 0 0 2 0.0000000
## 457 NA NA NA NA
## 458 0 5 0 0.0000000
## 459 0 5 0 0.0000000
## 460 0 2 0 0.0000000
## 461 0 2 0 0.0000000
## 462 0 2 0 0.0000000
## 463 0 3 0 0.0000000
## 464 0 3 0 0.0000000
## 465 0 0 2 0.0000000
## 466 0 2 0 0.0000000
## 467 NA NA NA NA
## 468 0 4 0 0.0000000
## 469 0 0 2 0.0000000
## 470 0 0 2 0.0000000
## 471 NA NA NA NA
## 472 0 0 2 0.0000000
## 473 0 4 0 0.0000000
## 474 0 2 0 0.0000000
## 475 0 4 0 0.0000000
## 476 0 2 0 0.0000000
## 477 0 4 0 0.0000000
## 478 0 2 0 0.0000000
## 479 0 2 0 0.0000000
## 480 0 0 2 0.0000000
## 481 0 0 4 0.0000000
## 482 0 0 4 0.0000000
## 483 0 4 0 0.0000000
## 484 0 0 2 0.0000000
## 485 0 4 0 0.0000000
## 486 NA NA NA NA
## 487 0 2 0 0.0000000
## 488 0 3 0 0.0000000
## 489 0 0 2 0.0000000
## 490 0 0 1 0.0000000
## 491 0 2 0 0.0000000
## 492 0 6 0 0.0000000
## 493 0 4 0 0.0000000
## 494 0 4 0 0.0000000
## 495 0 6 0 0.0000000
## 496 0 0 8 0.0000000
## 497 0 0 7 0.0000000
## 498 0 4 0 0.0000000
## 499 0 2 0 0.0000000
## 500 0 4 0 0.0000000
## 501 NA NA NA NA
## 502 0 0 2 0.0000000
## 503 0 2 0 0.0000000
## 504 NA NA NA NA
## 505 0 2 0 0.0000000
## 506 0 2 0 0.0000000
## 507 NA NA NA NA
## 508 0 4 0 0.0000000
## 509 0 0 2 0.0000000
## 510 0 4 0 0.0000000
## 511 0 4 0 0.0000000
## 512 0 0 2 0.0000000
## 513 0 2 0 0.0000000
## 514 0 0 1 0.0000000
## 515 0 0 2 0.0000000
## 516 0 4 0 0.0000000
## 517 0 0 2 0.0000000
## 518 0 2 0 0.0000000
## 519 0 2 0 0.0000000
## 520 0 0 2 0.0000000
## 521 0 2 0 0.0000000
## 522 0 2 0 0.0000000
## 523 0 2 0 0.0000000
## 524 0 5 0 0.0000000
## 525 0 0 3 0.0000000
## 526 0 0 3 0.0000000
## 527 0 0 1 0.0000000
## 528 0 3 0 0.0000000
## 529 0 2 0 0.0000000
## 530 0 3 0 0.0000000
## 531 0 6 0 0.0000000
## 532 0 0 8 0.0000000
## 533 0 0 1 0.0000000
## 534 0 2 0 0.0000000
## 535 0 4 0 0.0000000
## 536 0 5 0 0.0000000
## 537 0 0 2 0.0000000
## 538 0 4 0 0.0000000
## 539 0 3 0 0.0000000
## 540 0 3 0 0.0000000
## 541 0 4 0 0.0000000
## 542 0 5 0 0.0000000
## 543 0 2 0 0.0000000
## 544 0 4 0 0.0000000
## 545 0 0 1 0.0000000
## 546 0 2 0 0.0000000
## 547 0 2 0 0.0000000
## 548 0 4 0 0.0000000
## 549 0 4 0 0.0000000
## 550 0 0 3 0.0000000
## 551 0 0 3 0.0000000
## 552 0 0 3 0.0000000
## 553 0 2 0 0.0000000
## 554 0 2 0 0.0000000
## 555 0 2 0 0.0000000
## 556 0 2 0 0.0000000
## 557 0 2 0 0.0000000
## 558 0 2 0 0.0000000
## 559 0 2 0 0.0000000
## 560 0 2 0 0.0000000
## 561 0 2 0 0.0000000
## 562 0 2 0 0.0000000
## 563 0 2 0 0.0000000
## 564 0 2 0 0.0000000
## 565 0 0 1 0.0000000
## 566 0 2 0 0.0000000
## 567 0 4 0 0.0000000
## 568 0 0 2 0.0000000
## 569 0 2 0 0.0000000
## 570 0 2 0 0.0000000
## 571 0 2 0 0.0000000
## 572 0 4 0 0.0000000
## 573 0 5 0 0.0000000
## 574 0 2 0 0.0000000
## 575 0 2 0 0.0000000
## 576 0 2 0 0.0000000
## 577 0 2 0 0.0000000
## 578 0 4 0 0.0000000
## 579 0 0 2 0.0000000
## 580 0 3 0 0.0000000
## 581 0 3 0 0.0000000
## 582 0 3 0 0.0000000
## 583 0 0 2 0.0000000
## 584 NA NA NA NA
## 585 0 4 0 0.0000000
## 586 0 3 0 0.0000000
## 587 0 2 0 0.0000000
## 588 0 4 0 0.0000000
## 589 0 2 0 0.0000000
## 590 0 0 2 0.0000000
## 591 0 0 2 0.0000000
## 592 0 3 0 0.0000000
## 593 0 2 0 0.0000000
## 594 0 0 3 0.0000000
## 595 0 2 0 0.0000000
## 596 0 0 1 0.0000000
## 597 0 2 0 0.0000000
## 598 0 3 0 0.0000000
## 599 NA NA NA NA
## 600 0 2 0 0.0000000
## 601 0 4 0 0.0000000
## 602 0 2 0 0.0000000
## 603 0 0 2 0.0000000
## 604 0 0 3 0.0000000
## 605 0 0 6 0.0000000
## 606 NA NA NA NA
## 607 2 0 0 1.0986123
## 608 0 2 0 0.0000000
## 609 0 2 0 0.0000000
## 610 0 0 2 0.0000000
## 611 0 7 0 0.0000000
## 612 0 8 0 0.0000000
## 613 0 0 3 0.0000000
## 614 0 0 3 0.0000000
## 615 0 2 0 0.0000000
## 616 0 4 0 0.0000000
## 617 0 3 0 0.0000000
## 618 0 2 0 0.0000000
## 619 0 2 0 0.0000000
## 620 0 5 0 0.0000000
## 621 0 6 0 0.0000000
## 622 0 0 4 0.0000000
## 623 0 0 1 0.0000000
## 624 NA NA NA NA
## 625 0 4 0 0.0000000
## 626 0 2 0 0.0000000
## 627 0 2 0 0.0000000
## 628 0 3 0 0.0000000
## 629 0 4 0 0.0000000
## 630 0 6 0 0.0000000
## 631 0 2 0 0.0000000
## 632 0 2 0 0.0000000
## 633 0 2 0 0.0000000
## 634 0 2 0 0.0000000
## 635 0 0 2 0.0000000
## 636 0 2 0 0.0000000
## 637 0 2 0 0.0000000
## 638 0 2 0 0.0000000
## 639 0 2 0 0.0000000
## 640 NA NA NA NA
## 641 0 2 0 0.0000000
## 642 NA NA NA NA
## 643 NA NA NA NA
## 644 0 2 0 0.0000000
## 645 NA NA NA NA
## 646 0 2 0 0.0000000
## 647 0 3 0 0.0000000
## 648 0 0 4 0.0000000
## 649 0 0 3 0.0000000
## 650 NA NA NA NA
## 651 0 4 0 0.0000000
## 652 0 4 0 0.0000000
## 653 0 0 7 0.0000000
## 654 NA NA NA NA
## 655 0 0 4 0.0000000
## 656 NA NA NA NA
## 657 0 0 2 0.0000000
## 658 0 0 2 0.0000000
## 659 0 0 2 0.0000000
## 660 0 0 2 0.0000000
## 661 0 0 2 0.0000000
## 662 0 0 2 0.0000000
## 663 0 3 0 0.0000000
## 664 NA NA NA NA
## 665 0 0 2 0.0000000
## 666 0 0 2 0.0000000
## 667 0 0 2 0.0000000
## 668 0 0 2 0.0000000
## 669 0 0 2 0.0000000
## 670 0 2 0 0.0000000
## 671 0 2 0 0.0000000
## 672 0 2 0 0.0000000
## 673 0 4 0 0.0000000
## 674 6 0 0 1.9459101
## 675 0 2 0 0.0000000
## 676 0 0 2 0.0000000
## 677 0 0 1 0.0000000
## 678 0 0 2 0.0000000
## 679 0 3 0 0.0000000
## 680 0 3 0 0.0000000
## 681 0 4 0 0.0000000
## 682 0 2 0 0.0000000
## 683 0 0 2 0.0000000
## 684 0 0 2 0.0000000
## 685 0 0 2 0.0000000
## 686 0 2 0 0.0000000
## 687 0 0 2 0.0000000
## 688 0 4 0 0.0000000
## 689 NA NA NA NA
## 690 0 5 0 0.0000000
## 691 0 2 0 0.0000000
## 692 0 0 2 0.0000000
## 693 0 2 0 0.0000000
## 694 0 2 0 0.0000000
## 695 0 3 0 0.0000000
## 696 0 4 0 0.0000000
## 697 0 0 3 0.0000000
## 698 0 0 1 0.0000000
## 699 0 3 0 0.0000000
## 700 0 2 0 0.0000000
## 701 0 2 0 0.0000000
## 702 0 3 0 0.0000000
## 703 0 0 2 0.0000000
## 704 0 2 0 0.0000000
## 705 0 0 2 0.0000000
## 706 0 2 0 0.0000000
## 707 0 0 2 0.0000000
## 708 0 0 2 0.0000000
## 709 0 0 2 0.0000000
## 710 0 0 3 0.0000000
## 711 0 0 3 0.0000000
## 712 0 0 3 0.0000000
## 713 0 0 3 0.0000000
## 714 0 0 3 0.0000000
## 715 0 3 0 0.0000000
## 716 0 0 1 0.0000000
## 717 0 5 0 0.0000000
## 718 0 4 0 0.0000000
## 719 0 5 0 0.0000000
## 720 0 2 0 0.0000000
## 721 0 2 0 0.0000000
## 722 0 3 0 0.0000000
## 723 0 4 0 0.0000000
## 724 0 2 0 0.0000000
## 725 0 0 2 0.0000000
## 726 0 2 0 0.0000000
## 727 0 2 0 0.0000000
## 728 0 4 0 0.0000000
## 729 0 2 0 0.0000000
## 730 0 2 0 0.0000000
## 731 0 5 0 0.0000000
## 732 0 2 0 0.0000000
## 733 0 0 2 0.0000000
## 734 NA NA NA NA
## 735 0 2 0 0.0000000
## 736 0 4 0 0.0000000
## 737 0 4 0 0.0000000
## 738 0 0 2 0.0000000
## 739 0 0 2 0.0000000
## 740 NA NA NA NA
## 741 0 1 0 0.0000000
## 742 0 4 0 0.0000000
## 743 0 2 0 0.0000000
## 744 0 0 2 0.0000000
## 745 0 2 0 0.0000000
## 746 0 0 2 0.0000000
## 747 0 0 2 0.0000000
## 748 0 0 2 0.0000000
## 749 0 2 0 0.0000000
## 750 0 2 0 0.0000000
## 751 0 0 2 0.0000000
## 752 0 0 4 0.0000000
## 753 0 2 0 0.0000000
## 754 0 0 2 0.0000000
## 755 0 2 0 0.0000000
## 756 0 0 2 0.0000000
## 757 0 0 1 0.0000000
## 758 0 0 2 0.0000000
## 759 0 2 0 0.0000000
## 760 0 0 2 0.0000000
## 761 0 0 2 0.0000000
## 762 0 0 2 0.0000000
## 763 NA NA NA NA
## 764 0 2 0 0.0000000
## 765 0 5 0 0.0000000
## 766 0 4 0 0.0000000
## 767 0 4 0 0.0000000
## 768 0 4 0 0.0000000
## 769 0 4 0 0.0000000
## 770 0 4 0 0.0000000
## 771 0 0 3 0.0000000
## 772 0 0 3 0.0000000
## 773 4 0 0 1.6094379
## 774 0 0 4 0.0000000
## 775 0 0 3 0.0000000
## 776 0 0 2 0.0000000
## 777 0 0 2 0.0000000
## 778 0 2 0 0.0000000
## 779 0 0 3 0.0000000
## 780 NA NA NA NA
## 781 0 0 2 0.0000000
## 782 0 0 2 0.0000000
## 783 0 0 2 0.0000000
## 784 0 2 0 0.0000000
## 785 0 0 2 0.0000000
## 786 0 2 0 0.0000000
## 787 0 2 0 0.0000000
## 788 4 0 0 1.6094379
## 789 0 5 0 0.0000000
## 790 0 0 2 0.0000000
## 791 0 0 7 0.0000000
## 792 0 0 6 0.0000000
## 793 0 2 0 0.0000000
## 794 NA NA NA NA
## 795 0 4 0 0.0000000
## 796 0 3 0 0.0000000
## 797 0 0 2 0.0000000
## 798 0 2 0 0.0000000
## 799 0 0 2 0.0000000
## 800 0 0 2 0.0000000
## 801 0 0 2 0.0000000
## 802 0 0 5 0.0000000
## 803 NA NA NA NA
## 804 0 2 0 0.0000000
## 805 0 3 0 0.0000000
## 806 0 0 2 0.0000000
## 807 0 0 2 0.0000000
## 808 0 2 0 0.0000000
## 809 NA NA NA NA
## 810 NA NA NA NA
## 811 NA NA NA NA
## 812 NA NA NA NA
## 813 0 0 2 0.0000000
## 814 0 0 1 0.0000000
## 815 0 0 2 0.0000000
## 816 0 0 6 0.0000000
## 817 0 4 0 0.0000000
## 818 0 2 0 0.0000000
## 819 0 2 0 0.0000000
## 820 0 2 0 0.0000000
## 821 0 0 6 0.0000000
## 822 0 0 2 0.0000000
## 823 0 0 2 0.0000000
## 824 0 0 2 0.0000000
## 825 0 0 2 0.0000000
## 826 0 2 0 0.0000000
## 827 0 0 2 0.0000000
## 828 0 2 0 0.0000000
## 829 0 2 0 0.0000000
## 830 0 2 0 0.0000000
## 831 0 2 0 0.0000000
## 832 0 2 0 0.0000000
## 833 0 2 0 0.0000000
## 834 0 0 1 0.0000000
## 835 0 0 6 0.0000000
## 836 NA NA NA NA
## 837 0 0 2 0.0000000
## 838 0 2 0 0.0000000
## 839 NA NA NA NA
## 840 0 2 0 0.0000000
## 841 0 2 0 0.0000000
## 842 0 2 0 0.0000000
## 843 0 3 0 0.0000000
## 844 0 2 0 0.0000000
## 845 0 2 0 0.0000000
## 846 0 2 0 0.0000000
## 847 0 0 2 0.0000000
## 848 0 0 2 0.0000000
## 849 0 0 2 0.0000000
## 850 0 0 2 0.0000000
## 851 0 1 0 0.0000000
## 852 0 4 0 0.0000000
## 853 0 4 0 0.0000000
## 854 0 2 0 0.0000000
## 855 0 2 0 0.0000000
## 856 0 2 0 0.0000000
## 857 0 2 0 0.0000000
## 858 0 2 0 0.0000000
## 859 0 2 0 0.0000000
## 860 NA NA NA NA
## 861 0 0 1 0.0000000
## 862 0 2 0 0.0000000
## 863 0 2 0 0.0000000
## 864 0 0 2 0.0000000
## 865 0 0 2 0.0000000
## 866 0 0 4 0.0000000
## 867 0 0 2 0.0000000
## 868 0 5 0 0.0000000
## 869 0 2 0 0.0000000
## 870 0 0 4 0.0000000
## 871 0 0 4 0.0000000
## 872 0 4 0 0.0000000
## 873 0 5 0 0.0000000
## 874 0 4 0 0.0000000
## 875 0 4 0 0.0000000
## 876 0 0 4 0.0000000
## 877 0 1 0 0.0000000
## 878 0 0 1 0.0000000
## 879 0 0 2 0.0000000
## 880 0 0 4 0.0000000
## 881 0 3 0 0.0000000
## 882 0 2 0 0.0000000
## 883 0 0 2 0.0000000
## 884 0 0 4 0.0000000
## 885 0 3 0 0.0000000
## 886 0 2 0 0.0000000
## 887 0 2 0 0.0000000
## 888 0 0 3 0.0000000
## 889 0 2 0 0.0000000
## 890 0 2 0 0.0000000
## 891 0 1 0 0.0000000
## 892 0 2 0 0.0000000
## 893 0 2 0 0.0000000
## 894 0 0 3 0.0000000
## 895 0 2 0 0.0000000
## 896 0 0 1 0.0000000
## 897 0 0 4 0.0000000
## 898 0 0 2 0.0000000
## 899 0 4 0 0.0000000
## 900 0 2 0 0.0000000
## 901 0 0 2 0.0000000
## 902 0 0 2 0.0000000
## 903 0 0 2 0.0000000
## 904 0 0 1 0.0000000
## 905 NA NA NA NA
## 906 NA NA NA NA
## 907 0 0 3 0.0000000
## 908 0 0 4 0.0000000
## 909 0 0 1 0.0000000
## 910 0 0 2 0.0000000
## 911 0 4 0 0.0000000
## 912 0 0 2 0.0000000
## 913 0 0 2 0.0000000
## 914 0 3 0 0.0000000
## 915 0 2 0 0.0000000
## 916 NA NA NA NA
## 917 0 2 0 0.0000000
## 918 0 0 4 0.0000000
## 919 0 5 0 0.0000000
## 920 0 0 2 0.0000000
## 921 0 2 0 0.0000000
## 922 0 2 0 0.0000000
## 923 0 0 2 0.0000000
## 924 0 3 0 0.0000000
## 925 0 0 2 0.0000000
## 926 0 0 3 0.0000000
## 927 0 2 0 0.0000000
## 928 0 0 1 0.0000000
## 929 0 3 0 0.0000000
## 930 0 3 0 0.0000000
## 931 0 0 2 0.0000000
## 932 0 0 2 0.0000000
## 933 0 0 2 0.0000000
## 934 0 0 1 0.0000000
## 935 NA NA NA NA
## 936 0 0 4 0.0000000
## 937 0 0 5 0.0000000
## 938 0 0 2 0.0000000
## 939 0 0 2 0.0000000
## 940 0 2 0 0.0000000
## 941 0 0 2 0.0000000
## 942 0 2 0 0.0000000
## 943 0 0 1 0.0000000
## 944 0 2 0 0.0000000
## 945 0 0 6 0.0000000
## 946 2 0 0 1.0986123
## 947 0 0 2 0.0000000
## 948 0 0 4 0.0000000
## 949 NA NA NA NA
## 950 0 0 2 0.0000000
## 951 0 0 2 0.0000000
## 952 NA NA NA NA
## 953 0 2 0 0.0000000
## 954 4 0 0 1.6094379
## 955 0 0 2 0.0000000
## 956 0 2 0 0.0000000
## 957 0 0 2 0.0000000
## 958 0 0 3 0.0000000
## 959 0 0 3 0.0000000
## 960 0 0 3 0.0000000
## 961 0 0 3 0.0000000
## 962 0 0 3 0.0000000
## 963 0 0 3 0.0000000
## 964 0 0 3 0.0000000
## 965 0 1 0 0.0000000
## 966 0 0 2 0.0000000
## 967 0 0 6 0.0000000
## 968 0 2 0 0.0000000
## 969 0 0 3 0.0000000
## 970 0 0 3 0.0000000
## 971 0 0 2 0.0000000
## 972 0 0 3 0.0000000
## 973 0 0 3 0.0000000
## 974 0 2 0 0.0000000
## 975 0 0 2 0.0000000
## 976 0 3 0 0.0000000
## 977 0 2 0 0.0000000
## 978 0 0 2 0.0000000
## 979 0 2 0 0.0000000
## 980 0 0 6 0.0000000
## 981 0 2 0 0.0000000
## 982 0 0 1 0.0000000
## 983 0 0 2 0.0000000
## 984 0 0 1 0.0000000
## 985 0 2 0 0.0000000
## 986 0 4 0 0.0000000
## 987 0 2 0 0.0000000
## 988 0 2 0 0.0000000
## 989 0 0 6 0.0000000
## 990 0 0 1 0.0000000
## 991 0 0 4 0.0000000
## 992 0 2 0 0.0000000
## 993 0 2 0 0.0000000
## 994 0 0 2 0.0000000
## 995 0 2 0 0.0000000
## 996 0 0 2 0.0000000
## 997 0 0 2 0.0000000
## 998 NA NA NA NA
## 999 0 0 2 0.0000000
## 1000 0 0 2 0.0000000
## 1001 0 0 2 0.0000000
## 1002 0 0 2 0.0000000
## 1003 0 2 0 0.0000000
## 1004 0 2 0 0.0000000
## 1005 0 2 0 0.0000000
## 1006 NA NA NA NA
## 1007 0 2 0 0.0000000
## 1008 0 4 0 0.0000000
## 1009 0 0 2 0.0000000
## 1010 0 0 2 0.0000000
## 1011 0 2 0 0.0000000
## 1012 0 0 1 0.0000000
## 1013 NA NA NA NA
## 1014 0 2 0 0.0000000
## 1015 0 0 3 0.0000000
## 1016 0 0 7 0.0000000
## 1017 0 2 0 0.0000000
## 1018 0 0 2 0.0000000
## 1019 0 0 1 0.0000000
## 1020 0 0 2 0.0000000
## 1021 0 2 0 0.0000000
## 1022 0 0 3 0.0000000
## 1023 0 2 0 0.0000000
## 1024 0 0 3 0.0000000
## 1025 0 0 2 0.0000000
## 1026 0 0 2 0.0000000
## 1027 0 2 0 0.0000000
## 1028 0 0 1 0.0000000
## 1029 0 0 2 0.0000000
## 1030 0 0 2 0.0000000
## 1031 0 2 0 0.0000000
## 1032 0 0 2 0.0000000
## 1033 0 0 1 0.0000000
## 1034 0 0 4 0.0000000
## 1035 0 0 3 0.0000000
## 1036 0 1 0 0.0000000
## 1037 0 0 1 0.0000000
## 1038 0 0 2 0.0000000
## 1039 0 2 0 0.0000000
## 1040 0 2 0 0.0000000
## 1041 0 2 0 0.0000000
## 1042 0 0 3 0.0000000
## 1043 0 0 3 0.0000000
## 1044 0 0 4 0.0000000
## 1045 0 2 0 0.0000000
## 1046 0 0 2 0.0000000
## 1047 0 0 2 0.0000000
## 1048 0 2 0 0.0000000
## 1049 0 0 2 0.0000000
## 1050 0 0 1 0.0000000
## 1051 0 0 1 0.0000000
## 1052 0 2 0 0.0000000
## 1053 0 0 3 0.0000000
## 1054 0 2 0 0.0000000
## 1055 0 0 2 0.0000000
## 1056 0 0 2 0.0000000
## 1057 1 0 0 0.6931472
## 1058 0 2 0 0.0000000
## 1059 0 2 0 0.0000000
## 1060 0 0 2 0.0000000
## 1061 0 0 2 0.0000000
## 1062 0 0 3 0.0000000
## 1063 0 2 0 0.0000000
## 1064 0 0 2 0.0000000
## 1065 0 0 1 0.0000000
## 1066 0 2 0 0.0000000
## 1067 0 0 1 0.0000000
## 1068 0 0 1 0.0000000
## 1069 0 2 0 0.0000000
## 1070 0 0 2 0.0000000
## 1071 0 2 0 0.0000000
## 1072 0 0 3 0.0000000
## 1073 0 0 1 0.0000000
## 1074 0 0 1 0.0000000
## 1075 0 2 0 0.0000000
## 1076 0 2 0 0.0000000
## 1077 0 2 0 0.0000000
## 1078 0 0 1 0.0000000
## 1079 0 2 0 0.0000000
## 1080 0 1 0 0.0000000
## 1081 0 0 2 0.0000000
## 1082 0 0 1 0.0000000
## 1083 0 2 0 0.0000000
## 1084 0 2 0 0.0000000
## 1085 0 2 0 0.0000000
## 1086 0 0 2 0.0000000
## 1087 0 0 1 0.0000000
## 1088 0 2 0 0.0000000
## 1089 0 2 0 0.0000000
## 1090 0 0 2 0.0000000
## 1091 0 2 0 0.0000000
## 1092 0 0 2 0.0000000
## 1093 0 0 2 0.0000000
## 1094 0 2 0 0.0000000
## 1095 0 0 4 0.0000000
## 1096 0 0 2 0.0000000
## 1097 0 0 2 0.0000000
## 1098 0 0 4 0.0000000
## 1099 0 2 0 0.0000000
## 1100 0 1 0 0.0000000
## 1101 0 0 2 0.0000000
## 1102 2 0 0 1.0986123
## 1103 0 0 1 0.0000000
## 1104 0 0 2 0.0000000
## 1105 0 2 0 0.0000000
## 1106 0 2 0 0.0000000
## 1107 0 2 0 0.0000000
## 1108 0 0 2 0.0000000
## 1109 0 0 2 0.0000000
## 1110 0 2 0 0.0000000
## 1111 0 2 0 0.0000000
## 1112 0 2 0 0.0000000
## 1113 0 2 0 0.0000000
## 1114 0 2 0 0.0000000
## 1115 0 2 0 0.0000000
## 1116 0 2 0 0.0000000
## 1117 0 2 0 0.0000000
## 1118 0 0 3 0.0000000
## 1119 0 0 3 0.0000000
## 1120 0 2 0 0.0000000
## 1121 0 2 0 0.0000000
## 1122 0 1 0 0.0000000
## 1123 0 0 2 0.0000000
## 1124 0 2 0 0.0000000
## 1125 0 0 1 0.0000000
## 1126 0 0 2 0.0000000
## 1127 0 0 1 0.0000000
## 1128 0 3 0 0.0000000
## 1129 0 2 0 0.0000000
## 1130 0 0 6 0.0000000
## 1131 0 2 0 0.0000000
## 1132 0 2 0 0.0000000
## 1133 0 2 0 0.0000000
## 1134 0 2 0 0.0000000
## 1135 0 0 2 0.0000000
## 1136 0 2 0 0.0000000
## 1137 0 0 1 0.0000000
## 1138 0 2 0 0.0000000
## 1139 0 0 5 0.0000000
## 1140 0 2 0 0.0000000
## 1141 0 0 2 0.0000000
## 1142 0 2 0 0.0000000
## 1143 0 0 3 0.0000000
## 1144 0 0 2 0.0000000
## 1145 0 0 4 0.0000000
## 1146 0 0 2 0.0000000
## 1147 0 0 2 0.0000000
## 1148 0 3 0 0.0000000
## 1149 0 0 2 0.0000000
## 1150 0 0 2 0.0000000
## 1151 0 0 2 0.0000000
## 1152 0 0 2 0.0000000
## 1153 0 0 2 0.0000000
## 1154 0 0 1 0.0000000
## 1155 2 0 0 1.0986123
## 1156 2 0 0 1.0986123
## 1157 0 0 2 0.0000000
## 1158 0 0 1 0.0000000
## 1159 0 2 0 0.0000000
## 1160 0 0 5 0.0000000
## 1161 0 0 2 0.0000000
## 1162 0 2 0 0.0000000
## 1163 0 0 2 0.0000000
## 1164 0 2 0 0.0000000
## 1165 0 0 1 0.0000000
## 1166 0 0 1 0.0000000
## 1167 0 0 2 0.0000000
## 1168 0 0 1 0.0000000
## 1169 0 0 5 0.0000000
## 1170 0 2 0 0.0000000
## 1171 0 0 2 0.0000000
## 1172 0 0 2 0.0000000
## 1173 0 0 1 0.0000000
## 1174 0 2 0 0.0000000
## 1175 0 2 0 0.0000000
## 1176 0 2 0 0.0000000
## 1177 0 0 1 0.0000000
## 1178 0 0 1 0.0000000
## 1179 0 2 0 0.0000000
## 1180 0 0 2 0.0000000
## 1181 0 0 2 0.0000000
## 1182 0 0 2 0.0000000
## 1183 0 0 1 0.0000000
## 1184 0 0 2 0.0000000
## 1185 0 0 2 0.0000000
## 1186 0 0 2 0.0000000
## 1187 0 2 0 0.0000000
## 1188 0 2 0 0.0000000
## 1189 0 0 2 0.0000000
## 1190 0 0 2 0.0000000
## 1191 0 0 2 0.0000000
## 1192 0 0 2 0.0000000
## 1193 0 2 0 0.0000000
## 1194 0 0 2 0.0000000
## 1195 0 0 1 0.0000000
## 1196 0 2 0 0.0000000
## 1197 0 2 0 0.0000000
## 1198 0 2 0 0.0000000
## 1199 0 2 0 0.0000000
## 1200 0 2 0 0.0000000
## 1201 0 2 0 0.0000000
## 1202 0 0 2 0.0000000
## 1203 0 1 0 0.0000000
## 1204 0 2 0 0.0000000
## 1205 0 0 2 0.0000000
## 1206 0 2 0 0.0000000
## 1207 0 1 0 0.0000000
## 1208 0 2 0 0.0000000
## 1209 0 0 2 0.0000000
## 1210 0 2 0 0.0000000
## 1211 0 0 4 0.0000000
## 1212 0 2 0 0.0000000
## 1213 0 0 7 0.0000000
## 1214 0 0 5 0.0000000
## 1215 0 2 0 0.0000000
## 1216 0 2 0 0.0000000
## 1217 0 2 0 0.0000000
## 1218 0 2 0 0.0000000
## 1219 0 0 2 0.0000000
## 1220 0 0 2 0.0000000
## 1221 0 0 4 0.0000000
## 1222 0 0 2 0.0000000
## 1223 0 0 2 0.0000000
## 1224 0 0 1 0.0000000
## 1225 0 0 2 0.0000000
## 1226 0 0 1 0.0000000
## 1227 0 2 0 0.0000000
## 1228 0 0 2 0.0000000
## 1229 0 0 1 0.0000000
## 1230 0 0 1 0.0000000
## 1231 0 0 1 0.0000000
## 1232 0 0 1 0.0000000
## 1233 0 0 2 0.0000000
## 1234 0 0 2 0.0000000
## 1235 0 0 2 0.0000000
## 1236 0 0 1 0.0000000
## 1237 0 0 1 0.0000000
## 1238 0 0 2 0.0000000
## 1239 0 0 1 0.0000000
## 1240 0 0 1 0.0000000
## 1241 0 0 1 0.0000000
## 1242 0 0 1 0.0000000
## 1243 0 0 1 0.0000000
## 1244 0 0 1 0.0000000
## 1245 0 0 1 0.0000000
## 1246 0 0 1 0.0000000
## 1247 0 0 1 0.0000000
## 1248 0 0 1 0.0000000
## 1249 0 0 1 0.0000000
## 1250 0 0 1 0.0000000
## 1251 0 0 1 0.0000000
## 1252 0 0 1 0.0000000
## 1253 0 0 1 0.0000000
## 1254 0 2 0 0.0000000
## 1255 0 2 0 0.0000000
## 1256 0 0 2 0.0000000
## 1257 0 0 3 0.0000000
## 1258 0 0 2 0.0000000
## 1259 0 2 0 0.0000000
## 1260 0 2 0 0.0000000
## 1261 0 2 0 0.0000000
## 1262 0 2 0 0.0000000
## 1263 0 2 0 0.0000000
## 1264 0 0 2 0.0000000
## 1265 0 0 2 0.0000000
## 1266 0 2 0 0.0000000
## 1267 NA NA NA NA
## 1268 0 0 2 0.0000000
## 1269 0 0 1 0.0000000
## 1270 0 0 3 0.0000000
## 1271 0 0 3 0.0000000
## 1272 0 0 2 0.0000000
## 1273 NA NA NA NA
## 1274 0 0 1 0.0000000
## 1275 0 0 1 0.0000000
## 1276 0 2 0 0.0000000
## 1277 16 0 0 2.8332133
## 1278 0 0 1 0.0000000
## 1279 0 0 1 0.0000000
## 1280 0 0 1 0.0000000
## 1281 0 4 0 0.0000000
## 1282 0 0 2 0.0000000
## 1283 0 0 2 0.0000000
## 1284 0 2 0 0.0000000
## 1285 0 0 1 0.0000000
## 1286 0 0 1 0.0000000
## 1287 0 0 2 0.0000000
## 1288 0 0 1 0.0000000
## 1289 0 0 2 0.0000000
## 1290 0 0 2 0.0000000
## 1291 0 0 1 0.0000000
## 1292 0 0 2 0.0000000
## 1293 0 0 2 0.0000000
## 1294 0 2 0 0.0000000
## 1295 0 0 1 0.0000000
## 1296 0 0 2 0.0000000
## 1297 0 0 2 0.0000000
## 1298 0 0 2 0.0000000
## 1299 0 0 2 0.0000000
## 1300 0 0 2 0.0000000
## 1301 0 0 2 0.0000000
## 1302 0 0 2 0.0000000
## 1303 0 0 2 0.0000000
## 1304 0 2 0 0.0000000
## 1305 0 0 2 0.0000000
## 1306 0 0 2 0.0000000
## 1307 0 0 2 0.0000000
## 1308 0 0 1 0.0000000
## 1309 0 0 1 0.0000000
## 1310 0 0 2 0.0000000
## 1311 0 0 2 0.0000000
## 1312 0 0 2 0.0000000
## 1313 0 0 2 0.0000000
## 1314 0 0 2 0.0000000
## 1315 0 0 2 0.0000000
## 1316 0 0 2 0.0000000
## 1317 0 0 2 0.0000000
## 1318 0 0 2 0.0000000
## 1319 1 0 0 0.6931472
## 1320 NA NA NA NA
## 1321 0 2 0 0.0000000
## 1322 0 0 2 0.0000000
## 1323 0 0 3 0.0000000
## 1324 0 0 2 0.0000000
## 1325 0 0 2 0.0000000
## 1326 0 0 2 0.0000000
## 1327 0 0 2 0.0000000
## 1328 0 0 3 0.0000000
## 1329 0 0 3 0.0000000
## 1330 0 0 1 0.0000000
## 1331 0 0 1 0.0000000
## 1332 0 0 2 0.0000000
## 1333 0 0 3 0.0000000
## 1334 1 0 0 0.6931472
## 1335 0 0 1 0.0000000
## 1336 0 0 2 0.0000000
## 1337 0 0 2 0.0000000
## 1338 0 0 2 0.0000000
## 1339 0 0 3 0.0000000
## 1340 0 0 1 0.0000000
## 1341 0 0 2 0.0000000
## 1342 0 0 1 0.0000000
## 1343 0 0 2 0.0000000
## 1344 0 0 1 0.0000000
## 1345 0 0 2 0.0000000
## 1346 0 0 2 0.0000000
## 1347 0 0 2 0.0000000
## 1348 0 0 3 0.0000000
## 1349 0 0 1 0.0000000
## 1350 0 0 2 0.0000000
## 1351 0 0 1 0.0000000
## 1352 0 0 2 0.0000000
## 1353 0 0 1 0.0000000
## 1354 0 0 2 0.0000000
## 1355 0 0 2 0.0000000
## 1356 0 0 3 0.0000000
## 1357 0 0 2 0.0000000
## 1358 0 0 2 0.0000000
## 1359 0 0 1 0.0000000
## 1360 0 0 2 0.0000000
## 1361 0 0 2 0.0000000
## 1362 0 0 1 0.0000000
## 1363 0 0 1 0.0000000
## 1364 0 0 1 0.0000000
## 1365 0 0 2 0.0000000
## 1366 0 0 1 0.0000000
## 1367 2 0 0 1.0986123
## 1368 0 0 1 0.0000000
## 1369 2 0 0 1.0986123
## 1370 0 0 1 0.0000000
## 1371 0 0 1 0.0000000
## 1372 0 0 1 0.0000000
## 1373 0 0 1 0.0000000
## 1374 0 0 1 0.0000000
## 1375 0 0 2 0.0000000
## 1376 0 0 2 0.0000000
## 1377 0 0 1 0.0000000
## 1378 0 0 1 0.0000000
## 1379 0 0 1 0.0000000
## 1380 0 0 1 0.0000000
## 1381 0 0 1 0.0000000
## 1382 0 0 1 0.0000000
## 1383 0 0 1 0.0000000
## 1384 0 0 1 0.0000000
## 1385 0 0 1 0.0000000
## 1386 0 0 1 0.0000000
## 1387 0 0 1 0.0000000
## 1388 0 0 1 0.0000000
## 1389 0 0 1 0.0000000
## 1390 0 0 1 0.0000000
## 1391 0 0 1 0.0000000
## 1392 0 0 1 0.0000000
## 1393 0 0 3 0.0000000
## 1394 0 0 1 0.0000000
## 1395 0 0 1 0.0000000
## 1396 0 0 1 0.0000000
## 1397 0 0 1 0.0000000
## 1398 0 0 1 0.0000000
## 1399 0 0 1 0.0000000
## 1400 0 0 1 0.0000000
## 1401 0 0 2 0.0000000
## 1402 0 0 1 0.0000000
## 1403 0 0 1 0.0000000
## 1404 0 0 2 0.0000000
## 1405 0 0 1 0.0000000
## 1406 0 0 2 0.0000000
## 1407 0 0 2 0.0000000
## 1408 0 0 1 0.0000000
## 1409 0 0 3 0.0000000
## 1410 NA NA NA NA
## 1411 0 0 1 0.0000000
## 1412 0 0 2 0.0000000
## 1413 0 0 2 0.0000000
## 1414 0 0 3 0.0000000
## 1415 1 0 0 0.6931472
## 1416 0 0 2 0.0000000
## 1417 2 0 0 1.0986123
## 1418 0 0 2 0.0000000
## 1419 0 0 1 0.0000000
## 1420 0 0 4 0.0000000
## 1421 0 0 1 0.0000000
## 1422 0 0 3 0.0000000
## 1423 0 0 4 0.0000000
## 1424 0 0 1 0.0000000
## 1425 0 0 3 0.0000000
## 1426 0 0 1 0.0000000
## 1427 0 0 1 0.0000000
## 1428 2 0 0 1.0986123
## 1429 0 0 1 0.0000000
## 1430 0 0 2 0.0000000
## 1431 1 0 0 0.6931472
## 1432 0 0 1 0.0000000
## 1433 1 0 0 0.6931472
## 1434 0 0 1 0.0000000
## 1435 0 0 1 0.0000000
## 1436 0 0 1 0.0000000
## 1437 0 0 1 0.0000000
## 1438 0 0 3 0.0000000
## 1439 1 0 0 0.6931472
## 1440 0 0 1 0.0000000
## 1441 0 0 3 0.0000000
## 1442 0 0 2 0.0000000
## 1443 2 0 0 1.0986123
## 1444 0 1 0 0.0000000
## 1445 0 0 1 0.0000000
## 1446 0 0 1 0.0000000
## 1447 0 0 2 0.0000000
## 1448 0 0 2 0.0000000
## 1449 0 0 2 0.0000000
## 1450 0 0 2 0.0000000
## 1451 0 0 1 0.0000000
## 1452 0 0 2 0.0000000
## 1453 0 0 2 0.0000000
## 1454 0 0 2 0.0000000
## 1455 0 0 3 0.0000000
## 1456 0 0 3 0.0000000
## 1457 0 0 2 0.0000000
## 1458 0 0 2 0.0000000
## 1459 0 0 2 0.0000000
## 1460 0 0 2 0.0000000
## 1461 0 0 3 0.0000000
## 1462 1 0 0 0.6931472
## 1463 0 0 1 0.0000000
## 1464 0 0 1 0.0000000
## 1465 0 0 2 0.0000000
## 1466 0 0 1 0.0000000
## 1467 0 0 1 0.0000000
## 1468 0 0 1 0.0000000
## 1469 0 0 1 0.0000000
## 1470 0 0 2 0.0000000
## 1471 0 0 2 0.0000000
## 1472 0 0 1 0.0000000
## 1473 0 0 2 0.0000000
## 1474 0 0 1 0.0000000
## 1475 0 0 1 0.0000000
## 1476 16 0 0 2.8332133
## 1477 0 0 1 0.0000000
## 1478 0 0 2 0.0000000
## 1479 0 0 1 0.0000000
## 1480 0 0 1 0.0000000
## 1481 0 0 1 0.0000000
## 1482 0 0 1 0.0000000
## 1483 0 0 1 0.0000000
## 1484 0 0 1 0.0000000
## 1485 0 0 2 0.0000000
## 1486 0 0 1 0.0000000
## 1487 0 0 1 0.0000000
## 1488 0 0 1 0.0000000
## 1489 0 0 1 0.0000000
## 1490 0 0 1 0.0000000
## 1491 0 0 1 0.0000000
## 1492 0 0 1 0.0000000
## 1493 0 0 1 0.0000000
## 1494 0 0 1 0.0000000
## 1495 0 0 1 0.0000000
## 1496 2 0 0 1.0986123
## 1497 NA NA NA NA
## 1498 NA NA NA NA
## 1499 0 0 2 0.0000000
## 1500 0 0 1 0.0000000
## 1501 0 0 1 0.0000000
## 1502 0 0 1 0.0000000
## 1503 0 0 1 0.0000000
## 1504 0 0 1 0.0000000
## 1505 0 0 2 0.0000000
## 1506 0 0 1 0.0000000
## 1507 0 0 1 0.0000000
## 1508 0 0 1 0.0000000
## 1509 0 0 1 0.0000000
## 1510 0 0 1 0.0000000
## 1511 0 0 2 0.0000000
## 1512 0 0 1 0.0000000
## 1513 0 0 1 0.0000000
## 1514 0 0 1 0.0000000
## 1515 0 0 1 0.0000000
## 1516 0 0 1 0.0000000
## 1517 0 0 1 0.0000000
## 1518 0 0 1 0.0000000
## 1519 0 0 1 0.0000000
## 1520 0 0 1 0.0000000
## 1521 0 0 1 0.0000000
## 1522 0 0 1 0.0000000
## 1523 0 0 1 0.0000000
## 1524 0 0 1 0.0000000
## 1525 0 0 2 0.0000000
## 1526 0 0 2 0.0000000
## 1527 0 0 3 0.0000000
## 1528 0 0 3 0.0000000
## 1529 3 0 0 1.3862944
## 1530 0 0 1 0.0000000
## 1531 1 0 0 0.6931472
## 1532 0 0 2 0.0000000
## 1533 0 0 3 0.0000000
## 1534 NA NA NA NA
## 1535 NA NA NA NA
## 1536 0 0 3 0.0000000
## 1537 0 0 1 0.0000000
## 1538 0 0 1 0.0000000
## ln_Capacity_x_House_ind ln_Capacity_x_Private_ind reviews_since_2019
## 1 1.7917595 0.0000000 26
## 2 1.7917595 0.0000000 1
## 3 NA NA 1
## 4 NA NA 1
## 5 1.9459101 0.0000000 37
## 6 2.1972246 0.0000000 2
## 7 2.1972246 0.0000000 1
## 8 0.0000000 1.0986123 1
## 9 1.9459101 0.0000000 1
## 10 2.0794415 0.0000000 10
## 11 1.9459101 0.0000000 1
## 12 1.6094379 0.0000000 6
## 13 1.3862944 0.0000000 4
## 14 1.9459101 0.0000000 14
## 15 1.7917595 0.0000000 3
## 16 1.0986123 0.0000000 1
## 17 2.0794415 0.0000000 4
## 18 2.0794415 0.0000000 8
## 19 NA NA 1
## 20 1.9459101 0.0000000 1
## 21 1.6094379 0.0000000 4
## 22 1.9459101 0.0000000 11
## 23 1.9459101 0.0000000 1
## 24 1.0986123 0.0000000 1
## 25 1.7917595 0.0000000 11
## 26 0.0000000 1.0986123 1
## 27 1.0986123 0.0000000 12
## 28 0.0000000 1.0986123 1
## 29 1.9459101 0.0000000 1
## 30 0.0000000 1.3862944 4
## 31 0.0000000 1.6094379 2
## 32 1.9459101 0.0000000 3
## 33 0.6931472 0.0000000 1
## 34 1.9459101 0.0000000 1
## 35 1.9459101 0.0000000 1
## 36 1.7917595 0.0000000 12
## 37 NA NA 3
## 38 1.9459101 0.0000000 2
## 39 1.9459101 0.0000000 5
## 40 2.0794415 0.0000000 1
## 41 2.0794415 0.0000000 1
## 42 0.0000000 0.6931472 2
## 43 0.0000000 1.0986123 2
## 44 0.0000000 1.0986123 1
## 45 1.7917595 0.0000000 23
## 46 0.0000000 2.8332133 1
## 47 0.0000000 1.0986123 3
## 48 1.7917595 0.0000000 14
## 49 NA NA 8
## 50 0.0000000 1.0986123 10
## 51 1.7917595 0.0000000 1
## 52 2.1972246 0.0000000 3
## 53 1.7917595 0.0000000 10
## 54 1.0986123 0.0000000 1
## 55 2.1972246 0.0000000 66
## 56 1.7917595 0.0000000 5
## 57 1.6094379 0.0000000 1
## 58 2.5649494 0.0000000 43
## 59 2.5649494 0.0000000 47
## 60 0.0000000 1.0986123 1
## 61 0.0000000 1.9459101 1
## 62 0.0000000 0.6931472 16
## 63 1.7917595 0.0000000 7
## 64 1.7917595 0.0000000 7
## 65 2.1972246 0.0000000 1
## 66 1.9459101 0.0000000 1
## 67 2.1972246 0.0000000 66
## 68 1.7917595 0.0000000 1
## 69 1.0986123 0.0000000 1
## 70 1.0986123 0.0000000 3
## 71 1.7917595 0.0000000 1
## 72 1.7917595 0.0000000 3
## 73 1.7917595 0.0000000 2
## 74 1.7917595 0.0000000 1
## 75 1.7917595 0.0000000 1
## 76 1.7917595 0.0000000 4
## 77 1.9459101 0.0000000 6
## 78 2.0794415 0.0000000 1
## 79 1.6094379 0.0000000 6
## 80 1.7917595 0.0000000 1
## 81 1.9459101 0.0000000 61
## 82 1.6094379 0.0000000 57
## 83 0.0000000 1.0986123 1
## 84 2.8332133 0.0000000 4
## 85 0.0000000 1.0986123 1
## 86 0.0000000 1.0986123 10
## 87 NA NA 2
## 88 NA NA 1
## 89 1.9459101 0.0000000 5
## 90 1.9459101 0.0000000 2
## 91 1.9459101 0.0000000 1
## 92 0.0000000 1.3862944 1
## 93 1.9459101 0.0000000 1
## 94 2.1972246 0.0000000 7
## 95 2.3025851 0.0000000 39
## 96 0.0000000 1.6094379 1
## 97 1.6094379 0.0000000 50
## 98 2.1972246 0.0000000 57
## 99 2.1972246 0.0000000 53
## 100 1.0986123 0.0000000 6
## 101 1.0986123 0.0000000 13
## 102 0.0000000 1.0986123 1
## 103 1.7917595 0.0000000 10
## 104 1.6094379 0.0000000 14
## 105 1.0986123 0.0000000 1
## 106 NA NA 6
## 107 1.7917595 0.0000000 7
## 108 1.9459101 0.0000000 2
## 109 NA NA 12
## 110 0.0000000 1.6094379 1
## 111 NA NA 4
## 112 1.9459101 0.0000000 1
## 113 1.0986123 0.0000000 4
## 114 0.0000000 1.0986123 1
## 115 2.3025851 0.0000000 46
## 116 1.0986123 0.0000000 1
## 117 2.3025851 0.0000000 43
## 118 2.3025851 0.0000000 53
## 119 2.1972246 0.0000000 7
## 120 2.1972246 0.0000000 7
## 121 2.1972246 0.0000000 9
## 122 1.9459101 0.0000000 1
## 123 1.6094379 0.0000000 1
## 124 1.6094379 0.0000000 1
## 125 NA NA 7
## 126 1.3862944 0.0000000 5
## 127 1.0986123 0.0000000 1
## 128 1.0986123 0.0000000 1
## 129 1.0986123 0.0000000 2
## 130 2.1972246 0.0000000 80
## 131 NA NA 8
## 132 1.3862944 0.0000000 23
## 133 1.0986123 0.0000000 8
## 134 1.3862944 0.0000000 3
## 135 2.1972246 0.0000000 53
## 136 1.9459101 0.0000000 2
## 137 1.9459101 0.0000000 1
## 138 1.0986123 0.0000000 1
## 139 0.0000000 2.7080502 4
## 140 NA NA 14
## 141 1.9459101 0.0000000 8
## 142 NA NA 11
## 143 1.0986123 0.0000000 1
## 144 1.6094379 0.0000000 10
## 145 2.8332133 0.0000000 76
## 146 1.6094379 0.0000000 1
## 147 1.6094379 0.0000000 46
## 148 1.7917595 0.0000000 3
## 149 1.6094379 0.0000000 2
## 150 1.0986123 0.0000000 217
## 151 NA NA 21
## 152 1.0986123 0.0000000 10
## 153 1.9459101 0.0000000 3
## 154 1.9459101 0.0000000 2
## 155 1.7917595 0.0000000 1
## 156 NA NA 15
## 157 1.6094379 0.0000000 45
## 158 1.3862944 0.0000000 15
## 159 1.0986123 0.0000000 25
## 160 1.6094379 0.0000000 53
## 161 1.6094379 0.0000000 57
## 162 1.6094379 0.0000000 17
## 163 1.9459101 0.0000000 8
## 164 0.0000000 1.3862944 1
## 165 NA NA 11
## 166 1.3862944 0.0000000 1
## 167 1.3862944 0.0000000 4
## 168 1.9459101 0.0000000 2
## 169 1.9459101 0.0000000 1
## 170 NA NA 5
## 171 NA NA 7
## 172 1.6094379 0.0000000 8
## 173 1.0986123 0.0000000 1
## 174 1.6094379 0.0000000 38
## 175 1.6094379 0.0000000 1
## 176 1.3862944 0.0000000 1
## 177 1.0986123 0.0000000 6
## 178 1.6094379 0.0000000 1
## 179 1.9459101 0.0000000 3
## 180 1.6094379 0.0000000 43
## 181 1.6094379 0.0000000 39
## 182 1.3862944 0.0000000 144
## 183 1.3862944 0.0000000 1
## 184 1.6094379 0.0000000 3
## 185 0.0000000 2.8332133 3
## 186 0.0000000 1.3862944 6
## 187 0.0000000 1.3862944 4
## 188 0.0000000 1.3862944 5
## 189 0.0000000 1.3862944 2
## 190 0.0000000 1.3862944 8
## 191 0.0000000 1.3862944 12
## 192 0.0000000 1.0986123 1
## 193 1.0986123 0.0000000 1
## 194 1.0986123 0.0000000 1
## 195 1.0986123 0.0000000 6
## 196 0.0000000 1.0986123 6
## 197 1.6094379 0.0000000 7
## 198 1.0986123 0.0000000 13
## 199 1.9459101 0.0000000 41
## 200 1.3862944 0.0000000 1
## 201 1.0986123 0.0000000 15
## 202 1.9459101 0.0000000 3
## 203 1.9459101 0.0000000 1
## 204 1.7917595 0.0000000 7
## 205 0.0000000 1.0986123 11
## 206 1.6094379 0.0000000 2
## 207 1.3862944 0.0000000 10
## 208 1.3862944 0.0000000 9
## 209 1.9459101 0.0000000 5
## 210 1.9459101 0.0000000 60
## 211 1.9459101 0.0000000 49
## 212 1.9459101 0.0000000 75
## 213 0.0000000 2.3978953 1
## 214 0.0000000 1.0986123 5
## 215 1.3862944 0.0000000 5
## 216 0.0000000 1.0986123 2
## 217 NA NA 10
## 218 NA NA 6
## 219 1.3862944 0.0000000 2
## 220 1.0986123 0.0000000 5
## 221 0.0000000 2.1972246 3
## 222 0.0000000 2.1972246 1
## 223 0.0000000 2.1972246 3
## 224 1.9459101 0.0000000 1
## 225 2.1972246 0.0000000 6
## 226 1.6094379 0.0000000 8
## 227 1.0986123 0.0000000 1
## 228 1.6094379 0.0000000 1
## 229 1.0986123 0.0000000 4
## 230 1.7917595 0.0000000 7
## 231 0.0000000 1.0986123 1
## 232 NA NA 2
## 233 1.0986123 0.0000000 10
## 234 1.0986123 0.0000000 20
## 235 1.0986123 0.0000000 10
## 236 1.0986123 0.0000000 5
## 237 NA NA 1
## 238 NA NA 15
## 239 1.0986123 0.0000000 3
## 240 1.6094379 0.0000000 41
## 241 1.7917595 0.0000000 10
## 242 1.7917595 0.0000000 2
## 243 1.0986123 0.0000000 56
## 244 1.7917595 0.0000000 9
## 245 1.0986123 0.0000000 3
## 246 NA NA 20
## 247 1.3862944 0.0000000 2
## 248 1.3862944 0.0000000 1
## 249 1.6094379 0.0000000 36
## 250 1.6094379 0.0000000 25
## 251 1.9459101 0.0000000 1
## 252 0.0000000 1.9459101 1
## 253 0.0000000 1.9459101 2
## 254 0.0000000 1.9459101 1
## 255 NA NA 3
## 256 1.6094379 0.0000000 1
## 257 1.0986123 0.0000000 20
## 258 0.0000000 1.0986123 5
## 259 1.3862944 0.0000000 2
## 260 2.1972246 0.0000000 57
## 261 1.3862944 0.0000000 3
## 262 1.3862944 0.0000000 1
## 263 0.0000000 0.6931472 1
## 264 1.0986123 0.0000000 1
## 265 1.0986123 0.0000000 33
## 266 1.9459101 0.0000000 1
## 267 2.3025851 0.0000000 1
## 268 0.0000000 2.3978953 2
## 269 1.9459101 0.0000000 1
## 270 1.9459101 0.0000000 1
## 271 1.7917595 0.0000000 14
## 272 1.7917595 0.0000000 16
## 273 1.0986123 0.0000000 2
## 274 0.0000000 0.6931472 1
## 275 1.9459101 0.0000000 12
## 276 1.6094379 0.0000000 1
## 277 0.0000000 1.6094379 14
## 278 NA NA 8
## 279 NA NA 30
## 280 0.0000000 1.0986123 26
## 281 1.3862944 0.0000000 1
## 282 NA NA 11
## 283 1.0986123 0.0000000 1
## 284 0.0000000 1.0986123 4
## 285 NA NA 1
## 286 NA NA 12
## 287 1.6094379 0.0000000 1
## 288 1.6094379 0.0000000 68
## 289 1.9459101 0.0000000 2
## 290 NA NA 6
## 291 0.0000000 1.3862944 3
## 292 0.0000000 1.0986123 7
## 293 1.0986123 0.0000000 2
## 294 1.3862944 0.0000000 3
## 295 1.9459101 0.0000000 9
## 296 NA NA 4
## 297 1.6094379 0.0000000 1
## 298 1.3862944 0.0000000 1
## 299 2.3025851 0.0000000 1
## 300 1.3862944 0.0000000 2
## 301 1.3862944 0.0000000 2
## 302 1.0986123 0.0000000 1
## 303 1.0986123 0.0000000 1
## 304 0.0000000 1.6094379 1
## 305 0.0000000 1.6094379 6
## 306 1.0986123 0.0000000 1
## 307 1.9459101 0.0000000 5
## 308 NA NA 2
## 309 NA NA 38
## 310 1.0986123 0.0000000 75
## 311 1.6094379 0.0000000 1
## 312 NA NA 29
## 313 0.0000000 0.0000000 2
## 314 2.0794415 0.0000000 1
## 315 1.9459101 0.0000000 16
## 316 1.6094379 0.0000000 19
## 317 1.9459101 0.0000000 35
## 318 1.9459101 0.0000000 4
## 319 1.9459101 0.0000000 9
## 320 1.0986123 0.0000000 1
## 321 1.6094379 0.0000000 26
## 322 1.6094379 0.0000000 4
## 323 0.0000000 1.0986123 2
## 324 NA NA 3
## 325 NA NA 12
## 326 1.0986123 0.0000000 12
## 327 2.0794415 0.0000000 13
## 328 2.0794415 0.0000000 8
## 329 1.9459101 0.0000000 17
## 330 0.0000000 1.0986123 2
## 331 1.9459101 0.0000000 22
## 332 1.0986123 0.0000000 2
## 333 1.6094379 0.0000000 2
## 334 1.7917595 0.0000000 4
## 335 1.6094379 0.0000000 2
## 336 1.3862944 0.0000000 3
## 337 NA NA 8
## 338 1.0986123 0.0000000 87
## 339 1.9459101 0.0000000 2
## 340 1.0986123 0.0000000 2
## 341 1.7917595 0.0000000 15
## 342 0.0000000 1.0986123 18
## 343 NA NA 12
## 344 NA NA 18
## 345 0.0000000 1.0986123 1
## 346 0.0000000 1.3862944 3
## 347 1.7917595 0.0000000 1
## 348 NA NA 9
## 349 1.6094379 0.0000000 21
## 350 1.6094379 0.0000000 3
## 351 1.9459101 0.0000000 8
## 352 1.9459101 0.0000000 6
## 353 1.3862944 0.0000000 122
## 354 0.0000000 1.0986123 1
## 355 1.6094379 0.0000000 1
## 356 1.0986123 0.0000000 2
## 357 1.6094379 0.0000000 1
## 358 1.0986123 0.0000000 149
## 359 1.0986123 0.0000000 7
## 360 1.3862944 0.0000000 4
## 361 2.0794415 0.0000000 8
## 362 0.0000000 1.6094379 6
## 363 0.0000000 1.0986123 6
## 364 0.0000000 1.6094379 1
## 365 1.9459101 0.0000000 38
## 366 1.6094379 0.0000000 7
## 367 1.6094379 0.0000000 1
## 368 1.0986123 0.0000000 3
## 369 0.0000000 1.6094379 1
## 370 2.3025851 0.0000000 2
## 371 1.6094379 0.0000000 62
## 372 1.6094379 0.0000000 2
## 373 1.0986123 0.0000000 1
## 374 NA NA 62
## 375 0.0000000 2.1972246 12
## 376 1.6094379 0.0000000 177
## 377 0.0000000 1.6094379 3
## 378 1.6094379 0.0000000 4
## 379 NA NA 176
## 380 1.6094379 0.0000000 1
## 381 2.1972246 0.0000000 5
## 382 1.9459101 0.0000000 3
## 383 1.9459101 0.0000000 1
## 384 1.3862944 0.0000000 1
## 385 1.0986123 0.0000000 2
## 386 2.3025851 0.0000000 1
## 387 1.9459101 0.0000000 1
## 388 1.0986123 0.0000000 1
## 389 2.3025851 0.0000000 1
## 390 2.3025851 0.0000000 1
## 391 1.9459101 0.0000000 1
## 392 0.0000000 1.0986123 120
## 393 0.0000000 1.0986123 91
## 394 1.6094379 0.0000000 1
## 395 1.0986123 0.0000000 2
## 396 0.0000000 1.0986123 2
## 397 0.0000000 1.0986123 4
## 398 1.0986123 0.0000000 2
## 399 1.6094379 0.0000000 1
## 400 1.0986123 0.0000000 36
## 401 1.6094379 0.0000000 21
## 402 0.0000000 1.0986123 23
## 403 0.0000000 1.0986123 7
## 404 0.0000000 0.6931472 6
## 405 0.0000000 1.0986123 1
## 406 1.6094379 0.0000000 1
## 407 1.7917595 0.0000000 33
## 408 1.0986123 0.0000000 11
## 409 1.6094379 0.0000000 13
## 410 1.0986123 0.0000000 19
## 411 1.6094379 0.0000000 1
## 412 1.6094379 0.0000000 5
## 413 1.7917595 0.0000000 2
## 414 0.0000000 1.9459101 1
## 415 1.6094379 0.0000000 2
## 416 1.6094379 0.0000000 2
## 417 1.6094379 0.0000000 14
## 418 1.6094379 0.0000000 11
## 419 1.3862944 0.0000000 1
## 420 0.0000000 1.0986123 2
## 421 0.0000000 1.0986123 1
## 422 0.0000000 1.0986123 203
## 423 1.6094379 0.0000000 32
## 424 1.6094379 0.0000000 1
## 425 1.6094379 0.0000000 17
## 426 1.6094379 0.0000000 2
## 427 NA NA 12
## 428 1.7917595 0.0000000 8
## 429 1.6094379 0.0000000 2
## 430 1.7917595 0.0000000 2
## 431 0.0000000 1.0986123 1
## 432 NA NA 18
## 433 0.0000000 1.0986123 39
## 434 1.0986123 0.0000000 1
## 435 1.0986123 0.0000000 32
## 436 1.7917595 0.0000000 1
## 437 1.0986123 0.0000000 163
## 438 1.6094379 0.0000000 3
## 439 1.7917595 0.0000000 36
## 440 0.0000000 1.3862944 7
## 441 0.0000000 1.3862944 1
## 442 0.0000000 1.0986123 44
## 443 1.0986123 0.0000000 12
## 444 1.6094379 0.0000000 13
## 445 1.6094379 0.0000000 4
## 446 0.0000000 1.0986123 2
## 447 NA NA 28
## 448 0.0000000 1.0986123 1
## 449 0.0000000 0.6931472 1
## 450 1.6094379 0.0000000 13
## 451 1.6094379 0.0000000 3
## 452 0.0000000 1.6094379 1
## 453 1.6094379 0.0000000 2
## 454 0.0000000 1.9459101 9
## 455 2.1972246 0.0000000 42
## 456 0.0000000 1.0986123 5
## 457 NA NA 26
## 458 1.7917595 0.0000000 1
## 459 1.7917595 0.0000000 6
## 460 1.0986123 0.0000000 6
## 461 1.0986123 0.0000000 2
## 462 1.0986123 0.0000000 3
## 463 1.3862944 0.0000000 1
## 464 1.3862944 0.0000000 11
## 465 0.0000000 1.0986123 3
## 466 1.0986123 0.0000000 1
## 467 NA NA 41
## 468 1.6094379 0.0000000 14
## 469 0.0000000 1.0986123 11
## 470 0.0000000 1.0986123 1
## 471 NA NA 2
## 472 0.0000000 1.0986123 8
## 473 1.6094379 0.0000000 46
## 474 1.0986123 0.0000000 13
## 475 1.6094379 0.0000000 2
## 476 1.0986123 0.0000000 2
## 477 1.6094379 0.0000000 1
## 478 1.0986123 0.0000000 23
## 479 1.0986123 0.0000000 45
## 480 0.0000000 1.0986123 56
## 481 0.0000000 1.6094379 9
## 482 0.0000000 1.6094379 2
## 483 1.6094379 0.0000000 83
## 484 0.0000000 1.0986123 2
## 485 1.6094379 0.0000000 3
## 486 NA NA 2
## 487 1.0986123 0.0000000 78
## 488 1.3862944 0.0000000 40
## 489 0.0000000 1.0986123 110
## 490 0.0000000 0.6931472 16
## 491 1.0986123 0.0000000 3
## 492 1.9459101 0.0000000 5
## 493 1.6094379 0.0000000 5
## 494 1.6094379 0.0000000 14
## 495 1.9459101 0.0000000 22
## 496 0.0000000 2.1972246 5
## 497 0.0000000 2.0794415 3
## 498 1.6094379 0.0000000 3
## 499 1.0986123 0.0000000 45
## 500 1.6094379 0.0000000 2
## 501 NA NA 9
## 502 0.0000000 1.0986123 4
## 503 1.0986123 0.0000000 28
## 504 NA NA 2
## 505 1.0986123 0.0000000 1
## 506 1.0986123 0.0000000 68
## 507 NA NA 5
## 508 1.6094379 0.0000000 4
## 509 0.0000000 1.0986123 2
## 510 1.6094379 0.0000000 5
## 511 1.6094379 0.0000000 1
## 512 0.0000000 1.0986123 72
## 513 1.0986123 0.0000000 3
## 514 0.0000000 0.6931472 1
## 515 0.0000000 1.0986123 34
## 516 1.6094379 0.0000000 1
## 517 0.0000000 1.0986123 83
## 518 1.0986123 0.0000000 4
## 519 1.0986123 0.0000000 23
## 520 0.0000000 1.0986123 24
## 521 1.0986123 0.0000000 27
## 522 1.0986123 0.0000000 25
## 523 1.0986123 0.0000000 1
## 524 1.7917595 0.0000000 30
## 525 0.0000000 1.3862944 2
## 526 0.0000000 1.3862944 1
## 527 0.0000000 0.6931472 1
## 528 1.3862944 0.0000000 3
## 529 1.0986123 0.0000000 1
## 530 1.3862944 0.0000000 1
## 531 1.9459101 0.0000000 55
## 532 0.0000000 2.1972246 89
## 533 0.0000000 0.6931472 2
## 534 1.0986123 0.0000000 16
## 535 1.6094379 0.0000000 1
## 536 1.7917595 0.0000000 26
## 537 0.0000000 1.0986123 21
## 538 1.6094379 0.0000000 2
## 539 1.3862944 0.0000000 24
## 540 1.3862944 0.0000000 2
## 541 1.6094379 0.0000000 1
## 542 1.7917595 0.0000000 63
## 543 1.0986123 0.0000000 22
## 544 1.6094379 0.0000000 2
## 545 0.0000000 0.6931472 5
## 546 1.0986123 0.0000000 2
## 547 1.0986123 0.0000000 1
## 548 1.6094379 0.0000000 18
## 549 1.6094379 0.0000000 14
## 550 0.0000000 1.3862944 2
## 551 0.0000000 1.3862944 1
## 552 0.0000000 1.3862944 9
## 553 1.0986123 0.0000000 133
## 554 1.0986123 0.0000000 5
## 555 1.0986123 0.0000000 8
## 556 1.0986123 0.0000000 12
## 557 1.0986123 0.0000000 7
## 558 1.0986123 0.0000000 9
## 559 1.0986123 0.0000000 5
## 560 1.0986123 0.0000000 2
## 561 1.0986123 0.0000000 2
## 562 1.0986123 0.0000000 2
## 563 1.0986123 0.0000000 6
## 564 1.0986123 0.0000000 12
## 565 0.0000000 0.6931472 1
## 566 1.0986123 0.0000000 1
## 567 1.6094379 0.0000000 1
## 568 0.0000000 1.0986123 23
## 569 1.0986123 0.0000000 1
## 570 1.0986123 0.0000000 2
## 571 1.0986123 0.0000000 2
## 572 1.6094379 0.0000000 1
## 573 1.7917595 0.0000000 7
## 574 1.0986123 0.0000000 1
## 575 1.0986123 0.0000000 6
## 576 1.0986123 0.0000000 2
## 577 1.0986123 0.0000000 1
## 578 1.6094379 0.0000000 6
## 579 0.0000000 1.0986123 2
## 580 1.3862944 0.0000000 4
## 581 1.3862944 0.0000000 23
## 582 1.3862944 0.0000000 5
## 583 0.0000000 1.0986123 1
## 584 NA NA 4
## 585 1.6094379 0.0000000 2
## 586 1.3862944 0.0000000 3
## 587 1.0986123 0.0000000 1
## 588 1.6094379 0.0000000 4
## 589 1.0986123 0.0000000 2
## 590 0.0000000 1.0986123 4
## 591 0.0000000 1.0986123 1
## 592 1.3862944 0.0000000 6
## 593 1.0986123 0.0000000 23
## 594 0.0000000 1.3862944 2
## 595 1.0986123 0.0000000 6
## 596 0.0000000 0.6931472 1
## 597 1.0986123 0.0000000 4
## 598 1.3862944 0.0000000 2
## 599 NA NA 8
## 600 1.0986123 0.0000000 47
## 601 1.6094379 0.0000000 2
## 602 1.0986123 0.0000000 31
## 603 0.0000000 1.0986123 10
## 604 0.0000000 1.3862944 4
## 605 0.0000000 1.9459101 22
## 606 NA NA 15
## 607 0.0000000 0.0000000 4
## 608 1.0986123 0.0000000 1
## 609 1.0986123 0.0000000 23
## 610 0.0000000 1.0986123 3
## 611 2.0794415 0.0000000 2
## 612 2.1972246 0.0000000 1
## 613 0.0000000 1.3862944 1
## 614 0.0000000 1.3862944 1
## 615 1.0986123 0.0000000 1
## 616 1.6094379 0.0000000 2
## 617 1.3862944 0.0000000 1
## 618 1.0986123 0.0000000 7
## 619 1.0986123 0.0000000 7
## 620 1.7917595 0.0000000 20
## 621 1.9459101 0.0000000 2
## 622 0.0000000 1.6094379 1
## 623 0.0000000 0.6931472 1
## 624 NA NA 1
## 625 1.6094379 0.0000000 1
## 626 1.0986123 0.0000000 4
## 627 1.0986123 0.0000000 1
## 628 1.3862944 0.0000000 2
## 629 1.6094379 0.0000000 1
## 630 1.9459101 0.0000000 45
## 631 1.0986123 0.0000000 53
## 632 1.0986123 0.0000000 13
## 633 1.0986123 0.0000000 16
## 634 1.0986123 0.0000000 14
## 635 0.0000000 1.0986123 2
## 636 1.0986123 0.0000000 27
## 637 1.0986123 0.0000000 1
## 638 1.0986123 0.0000000 18
## 639 1.0986123 0.0000000 18
## 640 NA NA 3
## 641 1.0986123 0.0000000 199
## 642 NA NA 9
## 643 NA NA 25
## 644 1.0986123 0.0000000 1
## 645 NA NA 1
## 646 1.0986123 0.0000000 8
## 647 1.3862944 0.0000000 5
## 648 0.0000000 1.6094379 3
## 649 0.0000000 1.3862944 3
## 650 NA NA 2
## 651 1.6094379 0.0000000 2
## 652 1.6094379 0.0000000 12
## 653 0.0000000 2.0794415 2
## 654 NA NA 2
## 655 0.0000000 1.6094379 2
## 656 NA NA 2
## 657 0.0000000 1.0986123 2
## 658 0.0000000 1.0986123 19
## 659 0.0000000 1.0986123 3
## 660 0.0000000 1.0986123 3
## 661 0.0000000 1.0986123 2
## 662 0.0000000 1.0986123 7
## 663 1.3862944 0.0000000 20
## 664 NA NA 13
## 665 0.0000000 1.0986123 13
## 666 0.0000000 1.0986123 19
## 667 0.0000000 1.0986123 6
## 668 0.0000000 1.0986123 11
## 669 0.0000000 1.0986123 2
## 670 1.0986123 0.0000000 5
## 671 1.0986123 0.0000000 2
## 672 1.0986123 0.0000000 1
## 673 1.6094379 0.0000000 1
## 674 0.0000000 0.0000000 1
## 675 1.0986123 0.0000000 4
## 676 0.0000000 1.0986123 25
## 677 0.0000000 0.6931472 2
## 678 0.0000000 1.0986123 1
## 679 1.3862944 0.0000000 23
## 680 1.3862944 0.0000000 104
## 681 1.6094379 0.0000000 13
## 682 1.0986123 0.0000000 68
## 683 0.0000000 1.0986123 1
## 684 0.0000000 1.0986123 2
## 685 0.0000000 1.0986123 118
## 686 1.0986123 0.0000000 49
## 687 0.0000000 1.0986123 6
## 688 1.6094379 0.0000000 4
## 689 NA NA 6
## 690 1.7917595 0.0000000 29
## 691 1.0986123 0.0000000 4
## 692 0.0000000 1.0986123 28
## 693 1.0986123 0.0000000 3
## 694 1.0986123 0.0000000 1
## 695 1.3862944 0.0000000 2
## 696 1.6094379 0.0000000 9
## 697 0.0000000 1.3862944 1
## 698 0.0000000 0.6931472 42
## 699 1.3862944 0.0000000 42
## 700 1.0986123 0.0000000 12
## 701 1.0986123 0.0000000 6
## 702 1.3862944 0.0000000 48
## 703 0.0000000 1.0986123 1
## 704 1.0986123 0.0000000 1
## 705 0.0000000 1.0986123 7
## 706 1.0986123 0.0000000 1
## 707 0.0000000 1.0986123 1
## 708 0.0000000 1.0986123 1
## 709 0.0000000 1.0986123 2
## 710 0.0000000 1.3862944 2
## 711 0.0000000 1.3862944 3
## 712 0.0000000 1.3862944 1
## 713 0.0000000 1.3862944 2
## 714 0.0000000 1.3862944 2
## 715 1.3862944 0.0000000 6
## 716 0.0000000 0.6931472 1
## 717 1.7917595 0.0000000 96
## 718 1.6094379 0.0000000 103
## 719 1.7917595 0.0000000 1
## 720 1.0986123 0.0000000 23
## 721 1.0986123 0.0000000 22
## 722 1.3862944 0.0000000 2
## 723 1.6094379 0.0000000 7
## 724 1.0986123 0.0000000 2
## 725 0.0000000 1.0986123 11
## 726 1.0986123 0.0000000 5
## 727 1.0986123 0.0000000 3
## 728 1.6094379 0.0000000 66
## 729 1.0986123 0.0000000 7
## 730 1.0986123 0.0000000 1
## 731 1.7917595 0.0000000 3
## 732 1.0986123 0.0000000 2
## 733 0.0000000 1.0986123 2
## 734 NA NA 5
## 735 1.0986123 0.0000000 2
## 736 1.6094379 0.0000000 30
## 737 1.6094379 0.0000000 2
## 738 0.0000000 1.0986123 4
## 739 0.0000000 1.0986123 2
## 740 NA NA 8
## 741 0.6931472 0.0000000 17
## 742 1.6094379 0.0000000 53
## 743 1.0986123 0.0000000 11
## 744 0.0000000 1.0986123 1
## 745 1.0986123 0.0000000 5
## 746 0.0000000 1.0986123 33
## 747 0.0000000 1.0986123 93
## 748 0.0000000 1.0986123 1
## 749 1.0986123 0.0000000 1
## 750 1.0986123 0.0000000 4
## 751 0.0000000 1.0986123 1
## 752 0.0000000 1.6094379 1
## 753 1.0986123 0.0000000 65
## 754 0.0000000 1.0986123 1
## 755 1.0986123 0.0000000 3
## 756 0.0000000 1.0986123 265
## 757 0.0000000 0.6931472 52
## 758 0.0000000 1.0986123 4
## 759 1.0986123 0.0000000 6
## 760 0.0000000 1.0986123 3
## 761 0.0000000 1.0986123 1
## 762 0.0000000 1.0986123 3
## 763 NA NA 4
## 764 1.0986123 0.0000000 1
## 765 1.7917595 0.0000000 62
## 766 1.6094379 0.0000000 18
## 767 1.6094379 0.0000000 16
## 768 1.6094379 0.0000000 11
## 769 1.6094379 0.0000000 24
## 770 1.6094379 0.0000000 21
## 771 0.0000000 1.3862944 3
## 772 0.0000000 1.3862944 1
## 773 0.0000000 0.0000000 9
## 774 0.0000000 1.6094379 2
## 775 0.0000000 1.3862944 4
## 776 0.0000000 1.0986123 3
## 777 0.0000000 1.0986123 5
## 778 1.0986123 0.0000000 22
## 779 0.0000000 1.3862944 2
## 780 NA NA 42
## 781 0.0000000 1.0986123 4
## 782 0.0000000 1.0986123 2
## 783 0.0000000 1.0986123 1
## 784 1.0986123 0.0000000 5
## 785 0.0000000 1.0986123 1
## 786 1.0986123 0.0000000 69
## 787 1.0986123 0.0000000 1
## 788 0.0000000 0.0000000 2
## 789 1.7917595 0.0000000 6
## 790 0.0000000 1.0986123 128
## 791 0.0000000 2.0794415 60
## 792 0.0000000 1.9459101 1
## 793 1.0986123 0.0000000 15
## 794 NA NA 5
## 795 1.6094379 0.0000000 6
## 796 1.3862944 0.0000000 12
## 797 0.0000000 1.0986123 28
## 798 1.0986123 0.0000000 25
## 799 0.0000000 1.0986123 10
## 800 0.0000000 1.0986123 11
## 801 0.0000000 1.0986123 9
## 802 0.0000000 1.7917595 45
## 803 NA NA 3
## 804 1.0986123 0.0000000 2
## 805 1.3862944 0.0000000 2
## 806 0.0000000 1.0986123 7
## 807 0.0000000 1.0986123 2
## 808 1.0986123 0.0000000 8
## 809 NA NA 2
## 810 NA NA 4
## 811 NA NA 2
## 812 NA NA 7
## 813 0.0000000 1.0986123 1
## 814 0.0000000 0.6931472 1
## 815 0.0000000 1.0986123 1
## 816 0.0000000 1.9459101 4
## 817 1.6094379 0.0000000 18
## 818 1.0986123 0.0000000 4
## 819 1.0986123 0.0000000 4
## 820 1.0986123 0.0000000 20
## 821 0.0000000 1.9459101 1
## 822 0.0000000 1.0986123 81
## 823 0.0000000 1.0986123 17
## 824 0.0000000 1.0986123 4
## 825 0.0000000 1.0986123 2
## 826 1.0986123 0.0000000 5
## 827 0.0000000 1.0986123 1
## 828 1.0986123 0.0000000 1
## 829 1.0986123 0.0000000 4
## 830 1.0986123 0.0000000 2
## 831 1.0986123 0.0000000 4
## 832 1.0986123 0.0000000 2
## 833 1.0986123 0.0000000 17
## 834 0.0000000 0.6931472 79
## 835 0.0000000 1.9459101 16
## 836 NA NA 11
## 837 0.0000000 1.0986123 1
## 838 1.0986123 0.0000000 1
## 839 NA NA 17
## 840 1.0986123 0.0000000 1
## 841 1.0986123 0.0000000 11
## 842 1.0986123 0.0000000 1
## 843 1.3862944 0.0000000 1
## 844 1.0986123 0.0000000 4
## 845 1.0986123 0.0000000 15
## 846 1.0986123 0.0000000 11
## 847 0.0000000 1.0986123 1
## 848 0.0000000 1.0986123 1
## 849 0.0000000 1.0986123 1
## 850 0.0000000 1.0986123 1
## 851 0.6931472 0.0000000 53
## 852 1.6094379 0.0000000 3
## 853 1.6094379 0.0000000 8
## 854 1.0986123 0.0000000 2
## 855 1.0986123 0.0000000 37
## 856 1.0986123 0.0000000 1
## 857 1.0986123 0.0000000 13
## 858 1.0986123 0.0000000 3
## 859 1.0986123 0.0000000 3
## 860 NA NA 12
## 861 0.0000000 0.6931472 10
## 862 1.0986123 0.0000000 2
## 863 1.0986123 0.0000000 1
## 864 0.0000000 1.0986123 6
## 865 0.0000000 1.0986123 14
## 866 0.0000000 1.6094379 1
## 867 0.0000000 1.0986123 5
## 868 1.7917595 0.0000000 2
## 869 1.0986123 0.0000000 3
## 870 0.0000000 1.6094379 1
## 871 0.0000000 1.6094379 2
## 872 1.6094379 0.0000000 81
## 873 1.7917595 0.0000000 10
## 874 1.6094379 0.0000000 11
## 875 1.6094379 0.0000000 13
## 876 0.0000000 1.6094379 1
## 877 0.6931472 0.0000000 1
## 878 0.0000000 0.6931472 2
## 879 0.0000000 1.0986123 92
## 880 0.0000000 1.6094379 6
## 881 1.3862944 0.0000000 3
## 882 1.0986123 0.0000000 16
## 883 0.0000000 1.0986123 15
## 884 0.0000000 1.6094379 4
## 885 1.3862944 0.0000000 2
## 886 1.0986123 0.0000000 2
## 887 1.0986123 0.0000000 7
## 888 0.0000000 1.3862944 56
## 889 1.0986123 0.0000000 14
## 890 1.0986123 0.0000000 14
## 891 0.6931472 0.0000000 2
## 892 1.0986123 0.0000000 31
## 893 1.0986123 0.0000000 15
## 894 0.0000000 1.3862944 14
## 895 1.0986123 0.0000000 1
## 896 0.0000000 0.6931472 4
## 897 0.0000000 1.6094379 1
## 898 0.0000000 1.0986123 167
## 899 1.6094379 0.0000000 6
## 900 1.0986123 0.0000000 16
## 901 0.0000000 1.0986123 6
## 902 0.0000000 1.0986123 1
## 903 0.0000000 1.0986123 3
## 904 0.0000000 0.6931472 10
## 905 NA NA 36
## 906 NA NA 7
## 907 0.0000000 1.3862944 4
## 908 0.0000000 1.6094379 1
## 909 0.0000000 0.6931472 2
## 910 0.0000000 1.0986123 47
## 911 1.6094379 0.0000000 3
## 912 0.0000000 1.0986123 10
## 913 0.0000000 1.0986123 3
## 914 1.3862944 0.0000000 1
## 915 1.0986123 0.0000000 1
## 916 NA NA 3
## 917 1.0986123 0.0000000 2
## 918 0.0000000 1.6094379 2
## 919 1.7917595 0.0000000 10
## 920 0.0000000 1.0986123 54
## 921 1.0986123 0.0000000 42
## 922 1.0986123 0.0000000 5
## 923 0.0000000 1.0986123 5
## 924 1.3862944 0.0000000 6
## 925 0.0000000 1.0986123 1
## 926 0.0000000 1.3862944 13
## 927 1.0986123 0.0000000 1
## 928 0.0000000 0.6931472 6
## 929 1.3862944 0.0000000 1
## 930 1.3862944 0.0000000 1
## 931 0.0000000 1.0986123 4
## 932 0.0000000 1.0986123 7
## 933 0.0000000 1.0986123 6
## 934 0.0000000 0.6931472 9
## 935 NA NA 3
## 936 0.0000000 1.6094379 2
## 937 0.0000000 1.7917595 15
## 938 0.0000000 1.0986123 47
## 939 0.0000000 1.0986123 7
## 940 1.0986123 0.0000000 14
## 941 0.0000000 1.0986123 1
## 942 1.0986123 0.0000000 28
## 943 0.0000000 0.6931472 5
## 944 1.0986123 0.0000000 25
## 945 0.0000000 1.9459101 2
## 946 0.0000000 0.0000000 2
## 947 0.0000000 1.0986123 17
## 948 0.0000000 1.6094379 11
## 949 NA NA 3
## 950 0.0000000 1.0986123 16
## 951 0.0000000 1.0986123 4
## 952 NA NA 1
## 953 1.0986123 0.0000000 1
## 954 0.0000000 0.0000000 2
## 955 0.0000000 1.0986123 1
## 956 1.0986123 0.0000000 1
## 957 0.0000000 1.0986123 13
## 958 0.0000000 1.3862944 3
## 959 0.0000000 1.3862944 1
## 960 0.0000000 1.3862944 1
## 961 0.0000000 1.3862944 4
## 962 0.0000000 1.3862944 6
## 963 0.0000000 1.3862944 2
## 964 0.0000000 1.3862944 4
## 965 0.6931472 0.0000000 5
## 966 0.0000000 1.0986123 15
## 967 0.0000000 1.9459101 7
## 968 1.0986123 0.0000000 1
## 969 0.0000000 1.3862944 3
## 970 0.0000000 1.3862944 3
## 971 0.0000000 1.0986123 3
## 972 0.0000000 1.3862944 29
## 973 0.0000000 1.3862944 13
## 974 1.0986123 0.0000000 1
## 975 0.0000000 1.0986123 1
## 976 1.3862944 0.0000000 15
## 977 1.0986123 0.0000000 2
## 978 0.0000000 1.0986123 1
## 979 1.0986123 0.0000000 45
## 980 0.0000000 1.9459101 45
## 981 1.0986123 0.0000000 42
## 982 0.0000000 0.6931472 4
## 983 0.0000000 1.0986123 32
## 984 0.0000000 0.6931472 13
## 985 1.0986123 0.0000000 1
## 986 1.6094379 0.0000000 45
## 987 1.0986123 0.0000000 13
## 988 1.0986123 0.0000000 66
## 989 0.0000000 1.9459101 14
## 990 0.0000000 0.6931472 25
## 991 0.0000000 1.6094379 13
## 992 1.0986123 0.0000000 9
## 993 1.0986123 0.0000000 135
## 994 0.0000000 1.0986123 12
## 995 1.0986123 0.0000000 69
## 996 0.0000000 1.0986123 1
## 997 0.0000000 1.0986123 6
## 998 NA NA 3
## 999 0.0000000 1.0986123 2
## 1000 0.0000000 1.0986123 17
## 1001 0.0000000 1.0986123 12
## 1002 0.0000000 1.0986123 2
## 1003 1.0986123 0.0000000 5
## 1004 1.0986123 0.0000000 3
## 1005 1.0986123 0.0000000 3
## 1006 NA NA 23
## 1007 1.0986123 0.0000000 2
## 1008 1.6094379 0.0000000 3
## 1009 0.0000000 1.0986123 2
## 1010 0.0000000 1.0986123 27
## 1011 1.0986123 0.0000000 7
## 1012 0.0000000 0.6931472 12
## 1013 NA NA 6
## 1014 1.0986123 0.0000000 1
## 1015 0.0000000 1.3862944 1
## 1016 0.0000000 2.0794415 2
## 1017 1.0986123 0.0000000 12
## 1018 0.0000000 1.0986123 9
## 1019 0.0000000 0.6931472 13
## 1020 0.0000000 1.0986123 1
## 1021 1.0986123 0.0000000 6
## 1022 0.0000000 1.3862944 17
## 1023 1.0986123 0.0000000 7
## 1024 0.0000000 1.3862944 41
## 1025 0.0000000 1.0986123 23
## 1026 0.0000000 1.0986123 12
## 1027 1.0986123 0.0000000 6
## 1028 0.0000000 0.6931472 1
## 1029 0.0000000 1.0986123 19
## 1030 0.0000000 1.0986123 19
## 1031 1.0986123 0.0000000 16
## 1032 0.0000000 1.0986123 10
## 1033 0.0000000 0.6931472 7
## 1034 0.0000000 1.6094379 14
## 1035 0.0000000 1.3862944 25
## 1036 0.6931472 0.0000000 6
## 1037 0.0000000 0.6931472 9
## 1038 0.0000000 1.0986123 4
## 1039 1.0986123 0.0000000 77
## 1040 1.0986123 0.0000000 8
## 1041 1.0986123 0.0000000 6
## 1042 0.0000000 1.3862944 26
## 1043 0.0000000 1.3862944 20
## 1044 0.0000000 1.6094379 2
## 1045 1.0986123 0.0000000 57
## 1046 0.0000000 1.0986123 16
## 1047 0.0000000 1.0986123 31
## 1048 1.0986123 0.0000000 9
## 1049 0.0000000 1.0986123 13
## 1050 0.0000000 0.6931472 3
## 1051 0.0000000 0.6931472 2
## 1052 1.0986123 0.0000000 4
## 1053 0.0000000 1.3862944 5
## 1054 1.0986123 0.0000000 1
## 1055 0.0000000 1.0986123 1
## 1056 0.0000000 1.0986123 15
## 1057 0.0000000 0.0000000 1
## 1058 1.0986123 0.0000000 47
## 1059 1.0986123 0.0000000 2
## 1060 0.0000000 1.0986123 4
## 1061 0.0000000 1.0986123 6
## 1062 0.0000000 1.3862944 3
## 1063 1.0986123 0.0000000 103
## 1064 0.0000000 1.0986123 3
## 1065 0.0000000 0.6931472 5
## 1066 1.0986123 0.0000000 1
## 1067 0.0000000 0.6931472 2
## 1068 0.0000000 0.6931472 1
## 1069 1.0986123 0.0000000 6
## 1070 0.0000000 1.0986123 3
## 1071 1.0986123 0.0000000 1
## 1072 0.0000000 1.3862944 1
## 1073 0.0000000 0.6931472 53
## 1074 0.0000000 0.6931472 48
## 1075 1.0986123 0.0000000 1
## 1076 1.0986123 0.0000000 4
## 1077 1.0986123 0.0000000 2
## 1078 0.0000000 0.6931472 41
## 1079 1.0986123 0.0000000 1
## 1080 0.6931472 0.0000000 23
## 1081 0.0000000 1.0986123 1
## 1082 0.0000000 0.6931472 12
## 1083 1.0986123 0.0000000 2
## 1084 1.0986123 0.0000000 7
## 1085 1.0986123 0.0000000 1
## 1086 0.0000000 1.0986123 1
## 1087 0.0000000 0.6931472 2
## 1088 1.0986123 0.0000000 1
## 1089 1.0986123 0.0000000 100
## 1090 0.0000000 1.0986123 7
## 1091 1.0986123 0.0000000 7
## 1092 0.0000000 1.0986123 2
## 1093 0.0000000 1.0986123 2
## 1094 1.0986123 0.0000000 19
## 1095 0.0000000 1.6094379 16
## 1096 0.0000000 1.0986123 17
## 1097 0.0000000 1.0986123 3
## 1098 0.0000000 1.6094379 4
## 1099 1.0986123 0.0000000 9
## 1100 0.6931472 0.0000000 5
## 1101 0.0000000 1.0986123 2
## 1102 0.0000000 0.0000000 11
## 1103 0.0000000 0.6931472 3
## 1104 0.0000000 1.0986123 8
## 1105 1.0986123 0.0000000 21
## 1106 1.0986123 0.0000000 91
## 1107 1.0986123 0.0000000 17
## 1108 0.0000000 1.0986123 18
## 1109 0.0000000 1.0986123 26
## 1110 1.0986123 0.0000000 14
## 1111 1.0986123 0.0000000 23
## 1112 1.0986123 0.0000000 30
## 1113 1.0986123 0.0000000 9
## 1114 1.0986123 0.0000000 6
## 1115 1.0986123 0.0000000 5
## 1116 1.0986123 0.0000000 3
## 1117 1.0986123 0.0000000 3
## 1118 0.0000000 1.3862944 4
## 1119 0.0000000 1.3862944 19
## 1120 1.0986123 0.0000000 5
## 1121 1.0986123 0.0000000 4
## 1122 0.6931472 0.0000000 4
## 1123 0.0000000 1.0986123 5
## 1124 1.0986123 0.0000000 3
## 1125 0.0000000 0.6931472 2
## 1126 0.0000000 1.0986123 5
## 1127 0.0000000 0.6931472 28
## 1128 1.3862944 0.0000000 2
## 1129 1.0986123 0.0000000 20
## 1130 0.0000000 1.9459101 36
## 1131 1.0986123 0.0000000 16
## 1132 1.0986123 0.0000000 22
## 1133 1.0986123 0.0000000 14
## 1134 1.0986123 0.0000000 3
## 1135 0.0000000 1.0986123 14
## 1136 1.0986123 0.0000000 2
## 1137 0.0000000 0.6931472 11
## 1138 1.0986123 0.0000000 5
## 1139 0.0000000 1.7917595 6
## 1140 1.0986123 0.0000000 37
## 1141 0.0000000 1.0986123 92
## 1142 1.0986123 0.0000000 1
## 1143 0.0000000 1.3862944 62
## 1144 0.0000000 1.0986123 1
## 1145 0.0000000 1.6094379 3
## 1146 0.0000000 1.0986123 4
## 1147 0.0000000 1.0986123 2
## 1148 1.3862944 0.0000000 1
## 1149 0.0000000 1.0986123 42
## 1150 0.0000000 1.0986123 1
## 1151 0.0000000 1.0986123 1
## 1152 0.0000000 1.0986123 16
## 1153 0.0000000 1.0986123 2
## 1154 0.0000000 0.6931472 3
## 1155 0.0000000 0.0000000 2
## 1156 0.0000000 0.0000000 1
## 1157 0.0000000 1.0986123 6
## 1158 0.0000000 0.6931472 1
## 1159 1.0986123 0.0000000 1
## 1160 0.0000000 1.7917595 1
## 1161 0.0000000 1.0986123 2
## 1162 1.0986123 0.0000000 35
## 1163 0.0000000 1.0986123 5
## 1164 1.0986123 0.0000000 9
## 1165 0.0000000 0.6931472 23
## 1166 0.0000000 0.6931472 1
## 1167 0.0000000 1.0986123 33
## 1168 0.0000000 0.6931472 14
## 1169 0.0000000 1.7917595 4
## 1170 1.0986123 0.0000000 23
## 1171 0.0000000 1.0986123 32
## 1172 0.0000000 1.0986123 5
## 1173 0.0000000 0.6931472 5
## 1174 1.0986123 0.0000000 15
## 1175 1.0986123 0.0000000 10
## 1176 1.0986123 0.0000000 6
## 1177 0.0000000 0.6931472 1
## 1178 0.0000000 0.6931472 2
## 1179 1.0986123 0.0000000 22
## 1180 0.0000000 1.0986123 15
## 1181 0.0000000 1.0986123 1
## 1182 0.0000000 1.0986123 13
## 1183 0.0000000 0.6931472 3
## 1184 0.0000000 1.0986123 2
## 1185 0.0000000 1.0986123 21
## 1186 0.0000000 1.0986123 5
## 1187 1.0986123 0.0000000 11
## 1188 1.0986123 0.0000000 14
## 1189 0.0000000 1.0986123 7
## 1190 0.0000000 1.0986123 11
## 1191 0.0000000 1.0986123 10
## 1192 0.0000000 1.0986123 5
## 1193 1.0986123 0.0000000 10
## 1194 0.0000000 1.0986123 13
## 1195 0.0000000 0.6931472 2
## 1196 1.0986123 0.0000000 8
## 1197 1.0986123 0.0000000 2
## 1198 1.0986123 0.0000000 2
## 1199 1.0986123 0.0000000 10
## 1200 1.0986123 0.0000000 7
## 1201 1.0986123 0.0000000 7
## 1202 0.0000000 1.0986123 17
## 1203 0.6931472 0.0000000 8
## 1204 1.0986123 0.0000000 35
## 1205 0.0000000 1.0986123 8
## 1206 1.0986123 0.0000000 12
## 1207 0.6931472 0.0000000 7
## 1208 1.0986123 0.0000000 16
## 1209 0.0000000 1.0986123 4
## 1210 1.0986123 0.0000000 7
## 1211 0.0000000 1.6094379 1
## 1212 1.0986123 0.0000000 4
## 1213 0.0000000 2.0794415 33
## 1214 0.0000000 1.7917595 38
## 1215 1.0986123 0.0000000 35
## 1216 1.0986123 0.0000000 14
## 1217 1.0986123 0.0000000 34
## 1218 1.0986123 0.0000000 11
## 1219 0.0000000 1.0986123 12
## 1220 0.0000000 1.0986123 33
## 1221 0.0000000 1.6094379 3
## 1222 0.0000000 1.0986123 51
## 1223 0.0000000 1.0986123 25
## 1224 0.0000000 0.6931472 11
## 1225 0.0000000 1.0986123 19
## 1226 0.0000000 0.6931472 1
## 1227 1.0986123 0.0000000 1
## 1228 0.0000000 1.0986123 15
## 1229 0.0000000 0.6931472 1
## 1230 0.0000000 0.6931472 2
## 1231 0.0000000 0.6931472 1
## 1232 0.0000000 0.6931472 34
## 1233 0.0000000 1.0986123 8
## 1234 0.0000000 1.0986123 3
## 1235 0.0000000 1.0986123 5
## 1236 0.0000000 0.6931472 1
## 1237 0.0000000 0.6931472 1
## 1238 0.0000000 1.0986123 89
## 1239 0.0000000 0.6931472 2
## 1240 0.0000000 0.6931472 1
## 1241 0.0000000 0.6931472 2
## 1242 0.0000000 0.6931472 1
## 1243 0.0000000 0.6931472 1
## 1244 0.0000000 0.6931472 2
## 1245 0.0000000 0.6931472 1
## 1246 0.0000000 0.6931472 1
## 1247 0.0000000 0.6931472 5
## 1248 0.0000000 0.6931472 1
## 1249 0.0000000 0.6931472 2
## 1250 0.0000000 0.6931472 1
## 1251 0.0000000 0.6931472 1
## 1252 0.0000000 0.6931472 1
## 1253 0.0000000 0.6931472 1
## 1254 1.0986123 0.0000000 8
## 1255 1.0986123 0.0000000 23
## 1256 0.0000000 1.0986123 31
## 1257 0.0000000 1.3862944 3
## 1258 0.0000000 1.0986123 52
## 1259 1.0986123 0.0000000 4
## 1260 1.0986123 0.0000000 8
## 1261 1.0986123 0.0000000 10
## 1262 1.0986123 0.0000000 3
## 1263 1.0986123 0.0000000 2
## 1264 0.0000000 1.0986123 24
## 1265 0.0000000 1.0986123 2
## 1266 1.0986123 0.0000000 26
## 1267 NA NA 16
## 1268 0.0000000 1.0986123 21
## 1269 0.0000000 0.6931472 1
## 1270 0.0000000 1.3862944 4
## 1271 0.0000000 1.3862944 22
## 1272 0.0000000 1.0986123 6
## 1273 NA NA 141
## 1274 0.0000000 0.6931472 1
## 1275 0.0000000 0.6931472 11
## 1276 1.0986123 0.0000000 21
## 1277 0.0000000 0.0000000 10
## 1278 0.0000000 0.6931472 2
## 1279 0.0000000 0.6931472 2
## 1280 0.0000000 0.6931472 21
## 1281 1.6094379 0.0000000 1
## 1282 0.0000000 1.0986123 6
## 1283 0.0000000 1.0986123 2
## 1284 1.0986123 0.0000000 33
## 1285 0.0000000 0.6931472 1
## 1286 0.0000000 0.6931472 28
## 1287 0.0000000 1.0986123 89
## 1288 0.0000000 0.6931472 21
## 1289 0.0000000 1.0986123 60
## 1290 0.0000000 1.0986123 4
## 1291 0.0000000 0.6931472 11
## 1292 0.0000000 1.0986123 19
## 1293 0.0000000 1.0986123 1
## 1294 1.0986123 0.0000000 1
## 1295 0.0000000 0.6931472 2
## 1296 0.0000000 1.0986123 12
## 1297 0.0000000 1.0986123 3
## 1298 0.0000000 1.0986123 46
## 1299 0.0000000 1.0986123 62
## 1300 0.0000000 1.0986123 15
## 1301 0.0000000 1.0986123 18
## 1302 0.0000000 1.0986123 27
## 1303 0.0000000 1.0986123 24
## 1304 1.0986123 0.0000000 11
## 1305 0.0000000 1.0986123 37
## 1306 0.0000000 1.0986123 17
## 1307 0.0000000 1.0986123 118
## 1308 0.0000000 0.6931472 1
## 1309 0.0000000 0.6931472 2
## 1310 0.0000000 1.0986123 21
## 1311 0.0000000 1.0986123 15
## 1312 0.0000000 1.0986123 30
## 1313 0.0000000 1.0986123 4
## 1314 0.0000000 1.0986123 35
## 1315 0.0000000 1.0986123 2
## 1316 0.0000000 1.0986123 4
## 1317 0.0000000 1.0986123 7
## 1318 0.0000000 1.0986123 1
## 1319 0.0000000 0.0000000 37
## 1320 NA NA 22
## 1321 1.0986123 0.0000000 14
## 1322 0.0000000 1.0986123 1
## 1323 0.0000000 1.3862944 3
## 1324 0.0000000 1.0986123 25
## 1325 0.0000000 1.0986123 3
## 1326 0.0000000 1.0986123 6
## 1327 0.0000000 1.0986123 25
## 1328 0.0000000 1.3862944 49
## 1329 0.0000000 1.3862944 35
## 1330 0.0000000 0.6931472 1
## 1331 0.0000000 0.6931472 4
## 1332 0.0000000 1.0986123 1
## 1333 0.0000000 1.3862944 32
## 1334 0.0000000 0.0000000 28
## 1335 0.0000000 0.6931472 3
## 1336 0.0000000 1.0986123 26
## 1337 0.0000000 1.0986123 5
## 1338 0.0000000 1.0986123 1
## 1339 0.0000000 1.3862944 44
## 1340 0.0000000 0.6931472 6
## 1341 0.0000000 1.0986123 7
## 1342 0.0000000 0.6931472 3
## 1343 0.0000000 1.0986123 21
## 1344 0.0000000 0.6931472 16
## 1345 0.0000000 1.0986123 3
## 1346 0.0000000 1.0986123 59
## 1347 0.0000000 1.0986123 1
## 1348 0.0000000 1.3862944 27
## 1349 0.0000000 0.6931472 1
## 1350 0.0000000 1.0986123 83
## 1351 0.0000000 0.6931472 18
## 1352 0.0000000 1.0986123 2
## 1353 0.0000000 0.6931472 67
## 1354 0.0000000 1.0986123 22
## 1355 0.0000000 1.0986123 1
## 1356 0.0000000 1.3862944 3
## 1357 0.0000000 1.0986123 1
## 1358 0.0000000 1.0986123 4
## 1359 0.0000000 0.6931472 5
## 1360 0.0000000 1.0986123 2
## 1361 0.0000000 1.0986123 5
## 1362 0.0000000 0.6931472 2
## 1363 0.0000000 0.6931472 1
## 1364 0.0000000 0.6931472 2
## 1365 0.0000000 1.0986123 3
## 1366 0.0000000 0.6931472 15
## 1367 0.0000000 0.0000000 1
## 1368 0.0000000 0.6931472 5
## 1369 0.0000000 0.0000000 5
## 1370 0.0000000 0.6931472 2
## 1371 0.0000000 0.6931472 1
## 1372 0.0000000 0.6931472 3
## 1373 0.0000000 0.6931472 1
## 1374 0.0000000 0.6931472 1
## 1375 0.0000000 1.0986123 5
## 1376 0.0000000 1.0986123 15
## 1377 0.0000000 0.6931472 1
## 1378 0.0000000 0.6931472 1
## 1379 0.0000000 0.6931472 5
## 1380 0.0000000 0.6931472 1
## 1381 0.0000000 0.6931472 1
## 1382 0.0000000 0.6931472 1
## 1383 0.0000000 0.6931472 1
## 1384 0.0000000 0.6931472 1
## 1385 0.0000000 0.6931472 2
## 1386 0.0000000 0.6931472 1
## 1387 0.0000000 0.6931472 1
## 1388 0.0000000 0.6931472 2
## 1389 0.0000000 0.6931472 2
## 1390 0.0000000 0.6931472 4
## 1391 0.0000000 0.6931472 1
## 1392 0.0000000 0.6931472 2
## 1393 0.0000000 1.3862944 9
## 1394 0.0000000 0.6931472 1
## 1395 0.0000000 0.6931472 2
## 1396 0.0000000 0.6931472 1
## 1397 0.0000000 0.6931472 1
## 1398 0.0000000 0.6931472 2
## 1399 0.0000000 0.6931472 20
## 1400 0.0000000 0.6931472 2
## 1401 0.0000000 1.0986123 30
## 1402 0.0000000 0.6931472 5
## 1403 0.0000000 0.6931472 2
## 1404 0.0000000 1.0986123 6
## 1405 0.0000000 0.6931472 51
## 1406 0.0000000 1.0986123 12
## 1407 0.0000000 1.0986123 3
## 1408 0.0000000 0.6931472 5
## 1409 0.0000000 1.3862944 32
## 1410 NA NA 40
## 1411 0.0000000 0.6931472 11
## 1412 0.0000000 1.0986123 3
## 1413 0.0000000 1.0986123 1
## 1414 0.0000000 1.3862944 34
## 1415 0.0000000 0.0000000 2
## 1416 0.0000000 1.0986123 30
## 1417 0.0000000 0.0000000 2
## 1418 0.0000000 1.0986123 1
## 1419 0.0000000 0.6931472 21
## 1420 0.0000000 1.6094379 34
## 1421 0.0000000 0.6931472 8
## 1422 0.0000000 1.3862944 2
## 1423 0.0000000 1.6094379 24
## 1424 0.0000000 0.6931472 1
## 1425 0.0000000 1.3862944 1
## 1426 0.0000000 0.6931472 1
## 1427 0.0000000 0.6931472 2
## 1428 0.0000000 0.0000000 1
## 1429 0.0000000 0.6931472 3
## 1430 0.0000000 1.0986123 1
## 1431 0.0000000 0.0000000 1
## 1432 0.0000000 0.6931472 1
## 1433 0.0000000 0.0000000 8
## 1434 0.0000000 0.6931472 5
## 1435 0.0000000 0.6931472 25
## 1436 0.0000000 0.6931472 17
## 1437 0.0000000 0.6931472 9
## 1438 0.0000000 1.3862944 1
## 1439 0.0000000 0.0000000 7
## 1440 0.0000000 0.6931472 1
## 1441 0.0000000 1.3862944 30
## 1442 0.0000000 1.0986123 1
## 1443 0.0000000 0.0000000 8
## 1444 0.6931472 0.0000000 1
## 1445 0.0000000 0.6931472 10
## 1446 0.0000000 0.6931472 2
## 1447 0.0000000 1.0986123 26
## 1448 0.0000000 1.0986123 110
## 1449 0.0000000 1.0986123 2
## 1450 0.0000000 1.0986123 1
## 1451 0.0000000 0.6931472 40
## 1452 0.0000000 1.0986123 40
## 1453 0.0000000 1.0986123 16
## 1454 0.0000000 1.0986123 27
## 1455 0.0000000 1.3862944 2
## 1456 0.0000000 1.3862944 3
## 1457 0.0000000 1.0986123 10
## 1458 0.0000000 1.0986123 1
## 1459 0.0000000 1.0986123 10
## 1460 0.0000000 1.0986123 1
## 1461 0.0000000 1.3862944 1
## 1462 0.0000000 0.0000000 1
## 1463 0.0000000 0.6931472 1
## 1464 0.0000000 0.6931472 21
## 1465 0.0000000 1.0986123 15
## 1466 0.0000000 0.6931472 8
## 1467 0.0000000 0.6931472 2
## 1468 0.0000000 0.6931472 2
## 1469 0.0000000 0.6931472 2
## 1470 0.0000000 1.0986123 1
## 1471 0.0000000 1.0986123 13
## 1472 0.0000000 0.6931472 2
## 1473 0.0000000 1.0986123 56
## 1474 0.0000000 0.6931472 1
## 1475 0.0000000 0.6931472 3
## 1476 0.0000000 0.0000000 1
## 1477 0.0000000 0.6931472 1
## 1478 0.0000000 1.0986123 32
## 1479 0.0000000 0.6931472 1
## 1480 0.0000000 0.6931472 1
## 1481 0.0000000 0.6931472 2
## 1482 0.0000000 0.6931472 1
## 1483 0.0000000 0.6931472 2
## 1484 0.0000000 0.6931472 2
## 1485 0.0000000 1.0986123 43
## 1486 0.0000000 0.6931472 1
## 1487 0.0000000 0.6931472 2
## 1488 0.0000000 0.6931472 1
## 1489 0.0000000 0.6931472 1
## 1490 0.0000000 0.6931472 2
## 1491 0.0000000 0.6931472 1
## 1492 0.0000000 0.6931472 1
## 1493 0.0000000 0.6931472 1
## 1494 0.0000000 0.6931472 1
## 1495 0.0000000 0.6931472 1
## 1496 0.0000000 0.0000000 12
## 1497 NA NA 16
## 1498 NA NA 6
## 1499 0.0000000 1.0986123 33
## 1500 0.0000000 0.6931472 1
## 1501 0.0000000 0.6931472 1
## 1502 0.0000000 0.6931472 3
## 1503 0.0000000 0.6931472 1
## 1504 0.0000000 0.6931472 2
## 1505 0.0000000 1.0986123 1
## 1506 0.0000000 0.6931472 1
## 1507 0.0000000 0.6931472 2
## 1508 0.0000000 0.6931472 4
## 1509 0.0000000 0.6931472 1
## 1510 0.0000000 0.6931472 1
## 1511 0.0000000 1.0986123 3
## 1512 0.0000000 0.6931472 1
## 1513 0.0000000 0.6931472 1
## 1514 0.0000000 0.6931472 3
## 1515 0.0000000 0.6931472 1
## 1516 0.0000000 0.6931472 1
## 1517 0.0000000 0.6931472 1
## 1518 0.0000000 0.6931472 1
## 1519 0.0000000 0.6931472 1
## 1520 0.0000000 0.6931472 1
## 1521 0.0000000 0.6931472 1
## 1522 0.0000000 0.6931472 2
## 1523 0.0000000 0.6931472 1
## 1524 0.0000000 0.6931472 24
## 1525 0.0000000 1.0986123 55
## 1526 0.0000000 1.0986123 47
## 1527 0.0000000 1.3862944 47
## 1528 0.0000000 1.3862944 25
## 1529 0.0000000 0.0000000 50
## 1530 0.0000000 0.6931472 1
## 1531 0.0000000 0.0000000 1
## 1532 0.0000000 1.0986123 5
## 1533 0.0000000 1.3862944 2
## 1534 NA NA 8
## 1535 NA NA 3
## 1536 0.0000000 1.3862944 17
## 1537 0.0000000 0.6931472 1
## 1538 0.0000000 0.6931472 9
## bookings_since_2019
## 1 52
## 2 2
## 3 2
## 4 2
## 5 74
## 6 4
## 7 2
## 8 2
## 9 2
## 10 20
## 11 2
## 12 12
## 13 8
## 14 28
## 15 6
## 16 2
## 17 8
## 18 16
## 19 2
## 20 2
## 21 8
## 22 22
## 23 2
## 24 2
## 25 22
## 26 2
## 27 24
## 28 2
## 29 2
## 30 8
## 31 4
## 32 6
## 33 2
## 34 2
## 35 2
## 36 24
## 37 6
## 38 4
## 39 10
## 40 2
## 41 2
## 42 4
## 43 4
## 44 2
## 45 46
## 46 2
## 47 6
## 48 28
## 49 16
## 50 20
## 51 2
## 52 6
## 53 20
## 54 2
## 55 132
## 56 10
## 57 2
## 58 86
## 59 94
## 60 2
## 61 2
## 62 32
## 63 14
## 64 14
## 65 2
## 66 2
## 67 132
## 68 2
## 69 2
## 70 6
## 71 2
## 72 6
## 73 4
## 74 2
## 75 2
## 76 8
## 77 12
## 78 2
## 79 12
## 80 2
## 81 122
## 82 114
## 83 2
## 84 8
## 85 2
## 86 20
## 87 4
## 88 2
## 89 10
## 90 4
## 91 2
## 92 2
## 93 2
## 94 14
## 95 78
## 96 2
## 97 100
## 98 114
## 99 106
## 100 12
## 101 26
## 102 2
## 103 20
## 104 28
## 105 2
## 106 12
## 107 14
## 108 4
## 109 24
## 110 2
## 111 8
## 112 2
## 113 8
## 114 2
## 115 92
## 116 2
## 117 86
## 118 106
## 119 14
## 120 14
## 121 18
## 122 2
## 123 2
## 124 2
## 125 14
## 126 10
## 127 2
## 128 2
## 129 4
## 130 160
## 131 16
## 132 46
## 133 16
## 134 6
## 135 106
## 136 4
## 137 2
## 138 2
## 139 8
## 140 28
## 141 16
## 142 22
## 143 2
## 144 20
## 145 152
## 146 2
## 147 92
## 148 6
## 149 4
## 150 434
## 151 42
## 152 20
## 153 6
## 154 4
## 155 2
## 156 30
## 157 90
## 158 30
## 159 50
## 160 106
## 161 114
## 162 34
## 163 16
## 164 2
## 165 22
## 166 2
## 167 8
## 168 4
## 169 2
## 170 10
## 171 14
## 172 16
## 173 2
## 174 76
## 175 2
## 176 2
## 177 12
## 178 2
## 179 6
## 180 86
## 181 78
## 182 288
## 183 2
## 184 6
## 185 6
## 186 12
## 187 8
## 188 10
## 189 4
## 190 16
## 191 24
## 192 2
## 193 2
## 194 2
## 195 12
## 196 12
## 197 14
## 198 26
## 199 82
## 200 2
## 201 30
## 202 6
## 203 2
## 204 14
## 205 22
## 206 4
## 207 20
## 208 18
## 209 10
## 210 120
## 211 98
## 212 150
## 213 2
## 214 10
## 215 10
## 216 4
## 217 20
## 218 12
## 219 4
## 220 10
## 221 6
## 222 2
## 223 6
## 224 2
## 225 12
## 226 16
## 227 2
## 228 2
## 229 8
## 230 14
## 231 2
## 232 4
## 233 20
## 234 40
## 235 20
## 236 10
## 237 2
## 238 30
## 239 6
## 240 82
## 241 20
## 242 4
## 243 112
## 244 18
## 245 6
## 246 40
## 247 4
## 248 2
## 249 72
## 250 50
## 251 2
## 252 2
## 253 4
## 254 2
## 255 6
## 256 2
## 257 40
## 258 10
## 259 4
## 260 114
## 261 6
## 262 2
## 263 2
## 264 2
## 265 66
## 266 2
## 267 2
## 268 4
## 269 2
## 270 2
## 271 28
## 272 32
## 273 4
## 274 2
## 275 24
## 276 2
## 277 28
## 278 16
## 279 60
## 280 52
## 281 2
## 282 22
## 283 2
## 284 8
## 285 2
## 286 24
## 287 2
## 288 136
## 289 4
## 290 12
## 291 6
## 292 14
## 293 4
## 294 6
## 295 18
## 296 8
## 297 2
## 298 2
## 299 2
## 300 4
## 301 4
## 302 2
## 303 2
## 304 2
## 305 12
## 306 2
## 307 10
## 308 4
## 309 76
## 310 150
## 311 2
## 312 58
## 313 4
## 314 2
## 315 32
## 316 38
## 317 70
## 318 8
## 319 18
## 320 2
## 321 52
## 322 8
## 323 4
## 324 6
## 325 24
## 326 24
## 327 26
## 328 16
## 329 34
## 330 4
## 331 44
## 332 4
## 333 4
## 334 8
## 335 4
## 336 6
## 337 16
## 338 174
## 339 4
## 340 4
## 341 30
## 342 36
## 343 24
## 344 36
## 345 2
## 346 6
## 347 2
## 348 18
## 349 42
## 350 6
## 351 16
## 352 12
## 353 244
## 354 2
## 355 2
## 356 4
## 357 2
## 358 298
## 359 14
## 360 8
## 361 16
## 362 12
## 363 12
## 364 2
## 365 76
## 366 14
## 367 2
## 368 6
## 369 2
## 370 4
## 371 124
## 372 4
## 373 2
## 374 124
## 375 24
## 376 354
## 377 6
## 378 8
## 379 352
## 380 2
## 381 10
## 382 6
## 383 2
## 384 2
## 385 4
## 386 2
## 387 2
## 388 2
## 389 2
## 390 2
## 391 2
## 392 240
## 393 182
## 394 2
## 395 4
## 396 4
## 397 8
## 398 4
## 399 2
## 400 72
## 401 42
## 402 46
## 403 14
## 404 12
## 405 2
## 406 2
## 407 66
## 408 22
## 409 26
## 410 38
## 411 2
## 412 10
## 413 4
## 414 2
## 415 4
## 416 4
## 417 28
## 418 22
## 419 2
## 420 4
## 421 2
## 422 406
## 423 64
## 424 2
## 425 34
## 426 4
## 427 24
## 428 16
## 429 4
## 430 4
## 431 2
## 432 36
## 433 78
## 434 2
## 435 64
## 436 2
## 437 326
## 438 6
## 439 72
## 440 14
## 441 2
## 442 88
## 443 24
## 444 26
## 445 8
## 446 4
## 447 56
## 448 2
## 449 2
## 450 26
## 451 6
## 452 2
## 453 4
## 454 18
## 455 84
## 456 10
## 457 52
## 458 2
## 459 12
## 460 12
## 461 4
## 462 6
## 463 2
## 464 22
## 465 6
## 466 2
## 467 82
## 468 28
## 469 22
## 470 2
## 471 4
## 472 16
## 473 92
## 474 26
## 475 4
## 476 4
## 477 2
## 478 46
## 479 90
## 480 112
## 481 18
## 482 4
## 483 166
## 484 4
## 485 6
## 486 4
## 487 156
## 488 80
## 489 220
## 490 32
## 491 6
## 492 10
## 493 10
## 494 28
## 495 44
## 496 10
## 497 6
## 498 6
## 499 90
## 500 4
## 501 18
## 502 8
## 503 56
## 504 4
## 505 2
## 506 136
## 507 10
## 508 8
## 509 4
## 510 10
## 511 2
## 512 144
## 513 6
## 514 2
## 515 68
## 516 2
## 517 166
## 518 8
## 519 46
## 520 48
## 521 54
## 522 50
## 523 2
## 524 60
## 525 4
## 526 2
## 527 2
## 528 6
## 529 2
## 530 2
## 531 110
## 532 178
## 533 4
## 534 32
## 535 2
## 536 52
## 537 42
## 538 4
## 539 48
## 540 4
## 541 2
## 542 126
## 543 44
## 544 4
## 545 10
## 546 4
## 547 2
## 548 36
## 549 28
## 550 4
## 551 2
## 552 18
## 553 266
## 554 10
## 555 16
## 556 24
## 557 14
## 558 18
## 559 10
## 560 4
## 561 4
## 562 4
## 563 12
## 564 24
## 565 2
## 566 2
## 567 2
## 568 46
## 569 2
## 570 4
## 571 4
## 572 2
## 573 14
## 574 2
## 575 12
## 576 4
## 577 2
## 578 12
## 579 4
## 580 8
## 581 46
## 582 10
## 583 2
## 584 8
## 585 4
## 586 6
## 587 2
## 588 8
## 589 4
## 590 8
## 591 2
## 592 12
## 593 46
## 594 4
## 595 12
## 596 2
## 597 8
## 598 4
## 599 16
## 600 94
## 601 4
## 602 62
## 603 20
## 604 8
## 605 44
## 606 30
## 607 8
## 608 2
## 609 46
## 610 6
## 611 4
## 612 2
## 613 2
## 614 2
## 615 2
## 616 4
## 617 2
## 618 14
## 619 14
## 620 40
## 621 4
## 622 2
## 623 2
## 624 2
## 625 2
## 626 8
## 627 2
## 628 4
## 629 2
## 630 90
## 631 106
## 632 26
## 633 32
## 634 28
## 635 4
## 636 54
## 637 2
## 638 36
## 639 36
## 640 6
## 641 398
## 642 18
## 643 50
## 644 2
## 645 2
## 646 16
## 647 10
## 648 6
## 649 6
## 650 4
## 651 4
## 652 24
## 653 4
## 654 4
## 655 4
## 656 4
## 657 4
## 658 38
## 659 6
## 660 6
## 661 4
## 662 14
## 663 40
## 664 26
## 665 26
## 666 38
## 667 12
## 668 22
## 669 4
## 670 10
## 671 4
## 672 2
## 673 2
## 674 2
## 675 8
## 676 50
## 677 4
## 678 2
## 679 46
## 680 208
## 681 26
## 682 136
## 683 2
## 684 4
## 685 236
## 686 98
## 687 12
## 688 8
## 689 12
## 690 58
## 691 8
## 692 56
## 693 6
## 694 2
## 695 4
## 696 18
## 697 2
## 698 84
## 699 84
## 700 24
## 701 12
## 702 96
## 703 2
## 704 2
## 705 14
## 706 2
## 707 2
## 708 2
## 709 4
## 710 4
## 711 6
## 712 2
## 713 4
## 714 4
## 715 12
## 716 2
## 717 192
## 718 206
## 719 2
## 720 46
## 721 44
## 722 4
## 723 14
## 724 4
## 725 22
## 726 10
## 727 6
## 728 132
## 729 14
## 730 2
## 731 6
## 732 4
## 733 4
## 734 10
## 735 4
## 736 60
## 737 4
## 738 8
## 739 4
## 740 16
## 741 34
## 742 106
## 743 22
## 744 2
## 745 10
## 746 66
## 747 186
## 748 2
## 749 2
## 750 8
## 751 2
## 752 2
## 753 130
## 754 2
## 755 6
## 756 530
## 757 104
## 758 8
## 759 12
## 760 6
## 761 2
## 762 6
## 763 8
## 764 2
## 765 124
## 766 36
## 767 32
## 768 22
## 769 48
## 770 42
## 771 6
## 772 2
## 773 18
## 774 4
## 775 8
## 776 6
## 777 10
## 778 44
## 779 4
## 780 84
## 781 8
## 782 4
## 783 2
## 784 10
## 785 2
## 786 138
## 787 2
## 788 4
## 789 12
## 790 256
## 791 120
## 792 2
## 793 30
## 794 10
## 795 12
## 796 24
## 797 56
## 798 50
## 799 20
## 800 22
## 801 18
## 802 90
## 803 6
## 804 4
## 805 4
## 806 14
## 807 4
## 808 16
## 809 4
## 810 8
## 811 4
## 812 14
## 813 2
## 814 2
## 815 2
## 816 8
## 817 36
## 818 8
## 819 8
## 820 40
## 821 2
## 822 162
## 823 34
## 824 8
## 825 4
## 826 10
## 827 2
## 828 2
## 829 8
## 830 4
## 831 8
## 832 4
## 833 34
## 834 158
## 835 32
## 836 22
## 837 2
## 838 2
## 839 34
## 840 2
## 841 22
## 842 2
## 843 2
## 844 8
## 845 30
## 846 22
## 847 2
## 848 2
## 849 2
## 850 2
## 851 106
## 852 6
## 853 16
## 854 4
## 855 74
## 856 2
## 857 26
## 858 6
## 859 6
## 860 24
## 861 20
## 862 4
## 863 2
## 864 12
## 865 28
## 866 2
## 867 10
## 868 4
## 869 6
## 870 2
## 871 4
## 872 162
## 873 20
## 874 22
## 875 26
## 876 2
## 877 2
## 878 4
## 879 184
## 880 12
## 881 6
## 882 32
## 883 30
## 884 8
## 885 4
## 886 4
## 887 14
## 888 112
## 889 28
## 890 28
## 891 4
## 892 62
## 893 30
## 894 28
## 895 2
## 896 8
## 897 2
## 898 334
## 899 12
## 900 32
## 901 12
## 902 2
## 903 6
## 904 20
## 905 72
## 906 14
## 907 8
## 908 2
## 909 4
## 910 94
## 911 6
## 912 20
## 913 6
## 914 2
## 915 2
## 916 6
## 917 4
## 918 4
## 919 20
## 920 108
## 921 84
## 922 10
## 923 10
## 924 12
## 925 2
## 926 26
## 927 2
## 928 12
## 929 2
## 930 2
## 931 8
## 932 14
## 933 12
## 934 18
## 935 6
## 936 4
## 937 30
## 938 94
## 939 14
## 940 28
## 941 2
## 942 56
## 943 10
## 944 50
## 945 4
## 946 4
## 947 34
## 948 22
## 949 6
## 950 32
## 951 8
## 952 2
## 953 2
## 954 4
## 955 2
## 956 2
## 957 26
## 958 6
## 959 2
## 960 2
## 961 8
## 962 12
## 963 4
## 964 8
## 965 10
## 966 30
## 967 14
## 968 2
## 969 6
## 970 6
## 971 6
## 972 58
## 973 26
## 974 2
## 975 2
## 976 30
## 977 4
## 978 2
## 979 90
## 980 90
## 981 84
## 982 8
## 983 64
## 984 26
## 985 2
## 986 90
## 987 26
## 988 132
## 989 28
## 990 50
## 991 26
## 992 18
## 993 270
## 994 24
## 995 138
## 996 2
## 997 12
## 998 6
## 999 4
## 1000 34
## 1001 24
## 1002 4
## 1003 10
## 1004 6
## 1005 6
## 1006 46
## 1007 4
## 1008 6
## 1009 4
## 1010 54
## 1011 14
## 1012 24
## 1013 12
## 1014 2
## 1015 2
## 1016 4
## 1017 24
## 1018 18
## 1019 26
## 1020 2
## 1021 12
## 1022 34
## 1023 14
## 1024 82
## 1025 46
## 1026 24
## 1027 12
## 1028 2
## 1029 38
## 1030 38
## 1031 32
## 1032 20
## 1033 14
## 1034 28
## 1035 50
## 1036 12
## 1037 18
## 1038 8
## 1039 154
## 1040 16
## 1041 12
## 1042 52
## 1043 40
## 1044 4
## 1045 114
## 1046 32
## 1047 62
## 1048 18
## 1049 26
## 1050 6
## 1051 4
## 1052 8
## 1053 10
## 1054 2
## 1055 2
## 1056 30
## 1057 2
## 1058 94
## 1059 4
## 1060 8
## 1061 12
## 1062 6
## 1063 206
## 1064 6
## 1065 10
## 1066 2
## 1067 4
## 1068 2
## 1069 12
## 1070 6
## 1071 2
## 1072 2
## 1073 106
## 1074 96
## 1075 2
## 1076 8
## 1077 4
## 1078 82
## 1079 2
## 1080 46
## 1081 2
## 1082 24
## 1083 4
## 1084 14
## 1085 2
## 1086 2
## 1087 4
## 1088 2
## 1089 200
## 1090 14
## 1091 14
## 1092 4
## 1093 4
## 1094 38
## 1095 32
## 1096 34
## 1097 6
## 1098 8
## 1099 18
## 1100 10
## 1101 4
## 1102 22
## 1103 6
## 1104 16
## 1105 42
## 1106 182
## 1107 34
## 1108 36
## 1109 52
## 1110 28
## 1111 46
## 1112 60
## 1113 18
## 1114 12
## 1115 10
## 1116 6
## 1117 6
## 1118 8
## 1119 38
## 1120 10
## 1121 8
## 1122 8
## 1123 10
## 1124 6
## 1125 4
## 1126 10
## 1127 56
## 1128 4
## 1129 40
## 1130 72
## 1131 32
## 1132 44
## 1133 28
## 1134 6
## 1135 28
## 1136 4
## 1137 22
## 1138 10
## 1139 12
## 1140 74
## 1141 184
## 1142 2
## 1143 124
## 1144 2
## 1145 6
## 1146 8
## 1147 4
## 1148 2
## 1149 84
## 1150 2
## 1151 2
## 1152 32
## 1153 4
## 1154 6
## 1155 4
## 1156 2
## 1157 12
## 1158 2
## 1159 2
## 1160 2
## 1161 4
## 1162 70
## 1163 10
## 1164 18
## 1165 46
## 1166 2
## 1167 66
## 1168 28
## 1169 8
## 1170 46
## 1171 64
## 1172 10
## 1173 10
## 1174 30
## 1175 20
## 1176 12
## 1177 2
## 1178 4
## 1179 44
## 1180 30
## 1181 2
## 1182 26
## 1183 6
## 1184 4
## 1185 42
## 1186 10
## 1187 22
## 1188 28
## 1189 14
## 1190 22
## 1191 20
## 1192 10
## 1193 20
## 1194 26
## 1195 4
## 1196 16
## 1197 4
## 1198 4
## 1199 20
## 1200 14
## 1201 14
## 1202 34
## 1203 16
## 1204 70
## 1205 16
## 1206 24
## 1207 14
## 1208 32
## 1209 8
## 1210 14
## 1211 2
## 1212 8
## 1213 66
## 1214 76
## 1215 70
## 1216 28
## 1217 68
## 1218 22
## 1219 24
## 1220 66
## 1221 6
## 1222 102
## 1223 50
## 1224 22
## 1225 38
## 1226 2
## 1227 2
## 1228 30
## 1229 2
## 1230 4
## 1231 2
## 1232 68
## 1233 16
## 1234 6
## 1235 10
## 1236 2
## 1237 2
## 1238 178
## 1239 4
## 1240 2
## 1241 4
## 1242 2
## 1243 2
## 1244 4
## 1245 2
## 1246 2
## 1247 10
## 1248 2
## 1249 4
## 1250 2
## 1251 2
## 1252 2
## 1253 2
## 1254 16
## 1255 46
## 1256 62
## 1257 6
## 1258 104
## 1259 8
## 1260 16
## 1261 20
## 1262 6
## 1263 4
## 1264 48
## 1265 4
## 1266 52
## 1267 32
## 1268 42
## 1269 2
## 1270 8
## 1271 44
## 1272 12
## 1273 282
## 1274 2
## 1275 22
## 1276 42
## 1277 20
## 1278 4
## 1279 4
## 1280 42
## 1281 2
## 1282 12
## 1283 4
## 1284 66
## 1285 2
## 1286 56
## 1287 178
## 1288 42
## 1289 120
## 1290 8
## 1291 22
## 1292 38
## 1293 2
## 1294 2
## 1295 4
## 1296 24
## 1297 6
## 1298 92
## 1299 124
## 1300 30
## 1301 36
## 1302 54
## 1303 48
## 1304 22
## 1305 74
## 1306 34
## 1307 236
## 1308 2
## 1309 4
## 1310 42
## 1311 30
## 1312 60
## 1313 8
## 1314 70
## 1315 4
## 1316 8
## 1317 14
## 1318 2
## 1319 74
## 1320 44
## 1321 28
## 1322 2
## 1323 6
## 1324 50
## 1325 6
## 1326 12
## 1327 50
## 1328 98
## 1329 70
## 1330 2
## 1331 8
## 1332 2
## 1333 64
## 1334 56
## 1335 6
## 1336 52
## 1337 10
## 1338 2
## 1339 88
## 1340 12
## 1341 14
## 1342 6
## 1343 42
## 1344 32
## 1345 6
## 1346 118
## 1347 2
## 1348 54
## 1349 2
## 1350 166
## 1351 36
## 1352 4
## 1353 134
## 1354 44
## 1355 2
## 1356 6
## 1357 2
## 1358 8
## 1359 10
## 1360 4
## 1361 10
## 1362 4
## 1363 2
## 1364 4
## 1365 6
## 1366 30
## 1367 2
## 1368 10
## 1369 10
## 1370 4
## 1371 2
## 1372 6
## 1373 2
## 1374 2
## 1375 10
## 1376 30
## 1377 2
## 1378 2
## 1379 10
## 1380 2
## 1381 2
## 1382 2
## 1383 2
## 1384 2
## 1385 4
## 1386 2
## 1387 2
## 1388 4
## 1389 4
## 1390 8
## 1391 2
## 1392 4
## 1393 18
## 1394 2
## 1395 4
## 1396 2
## 1397 2
## 1398 4
## 1399 40
## 1400 4
## 1401 60
## 1402 10
## 1403 4
## 1404 12
## 1405 102
## 1406 24
## 1407 6
## 1408 10
## 1409 64
## 1410 80
## 1411 22
## 1412 6
## 1413 2
## 1414 68
## 1415 4
## 1416 60
## 1417 4
## 1418 2
## 1419 42
## 1420 68
## 1421 16
## 1422 4
## 1423 48
## 1424 2
## 1425 2
## 1426 2
## 1427 4
## 1428 2
## 1429 6
## 1430 2
## 1431 2
## 1432 2
## 1433 16
## 1434 10
## 1435 50
## 1436 34
## 1437 18
## 1438 2
## 1439 14
## 1440 2
## 1441 60
## 1442 2
## 1443 16
## 1444 2
## 1445 20
## 1446 4
## 1447 52
## 1448 220
## 1449 4
## 1450 2
## 1451 80
## 1452 80
## 1453 32
## 1454 54
## 1455 4
## 1456 6
## 1457 20
## 1458 2
## 1459 20
## 1460 2
## 1461 2
## 1462 2
## 1463 2
## 1464 42
## 1465 30
## 1466 16
## 1467 4
## 1468 4
## 1469 4
## 1470 2
## 1471 26
## 1472 4
## 1473 112
## 1474 2
## 1475 6
## 1476 2
## 1477 2
## 1478 64
## 1479 2
## 1480 2
## 1481 4
## 1482 2
## 1483 4
## 1484 4
## 1485 86
## 1486 2
## 1487 4
## 1488 2
## 1489 2
## 1490 4
## 1491 2
## 1492 2
## 1493 2
## 1494 2
## 1495 2
## 1496 24
## 1497 32
## 1498 12
## 1499 66
## 1500 2
## 1501 2
## 1502 6
## 1503 2
## 1504 4
## 1505 2
## 1506 2
## 1507 4
## 1508 8
## 1509 2
## 1510 2
## 1511 6
## 1512 2
## 1513 2
## 1514 6
## 1515 2
## 1516 2
## 1517 2
## 1518 2
## 1519 2
## 1520 2
## 1521 2
## 1522 4
## 1523 2
## 1524 48
## 1525 110
## 1526 94
## 1527 94
## 1528 50
## 1529 100
## 1530 2
## 1531 2
## 1532 10
## 1533 4
## 1534 16
## 1535 6
## 1536 34
## 1537 2
## 1538 18
## [ reached 'max' / getOption("max.print") -- omitted 187 rows ]
list_after_2019.sin %>% arrange(desc(reviews_since_2019))
## id Price Reviews Beds Baths Capacity Monthly_Reviews
## 1 43337094 134 265 1 NA 2 13.27
## 2 31527262 344 217 1 NA 2 6.24
## 3 42078904 188 203 1 NA 2 9.12
## 4 25793757 147 224 1 NA 2 5.31
## 5 37907711 199 177 3 NA 4 6.23
## 6 21415749 198 206 1 NA 1 4.24
## 7 42417293 113 167 1 NA 2 7.59
## 8 4541183 180 226 1 NA 2 2.62
## 9 1024986 200 255 1 NA 2 2.57
## 10 8277151 305 174 1 NA 3 2.28
## 11 32411075 66 141 1 NA 1 4.32
## 12 24659042 97 181 1 NA 2 4.10
## 13 20950425 155 153 3 NA 2 3.05
## 14 43336673 130 128 1 NA 2 6.41
## 15 25998215 45 168 1 NA 2 3.91
## 16 22745179 203 143 1 NA 3 2.99
## 17 42079535 198 120 1 NA 2 5.25
## 18 12484261 64 274 1 NA 2 4.60
## 19 15792808 142 146 1 NA 2 2.40
## 20 8038199 168 167 1 NA 2 2.26
## 21 10848771 50 354 1 NA 2 4.99
## 22 30687199 143 105 2 NA 3 2.87
## 23 12162272 139 253 3 NA 4 3.80
## 24 24664051 89 134 2 NA 2 3.10
## 25 5355795 86 251 1 NA 2 3.02
## 26 2129215 139 369 3 NA 5 3.81
## 27 43379651 135 93 1 NA 2 4.70
## 28 16891958 80 233 1 NA 2 3.89
## 29 43407835 119 92 1 NA 2 4.65
## 30 4499317 196 124 1 NA 2 1.43
## 31 5377342 84 294 1 NA 2 3.54
## 32 23760158 65 89 1 NA 2 2.55
## 33 24707713 69 129 2 NA 2 2.93
## 34 28747912 159 103 3 NA 8 2.62
## 35 35818699 211 87 1 NA 2 3.29
## 36 17928170 161 96 1 NA 2 1.71
## 37 24979153 60 113 1 NA 2 2.59
## 38 28359844 170 106 2 NA 4 2.65
## 39 9901369 119 179 3 NA 4 2.46
## 40 42885911 125 81 1 NA 2 3.98
## 41 23446208 366 120 3 NA 8 2.62
## 42 15792137 123 105 1 NA 1 1.71
## 43 11972403 38 227 1 NA 1 3.25
## 44 33388955 169 78 3 NA 2 2.56
## 45 22051870 36 159 1 NA 2 3.29
## 46 24984672 90 110 1 NA 2 2.51
## 47 16502098 42 141 2 NA 2 2.47
## 48 28748709 350 92 7 NA 16 2.35
## 49 33111805 280 75 3 NA 6 2.23
## 50 37853876 223 75 1 NA 2 2.79
## 51 47911042 163 72 1 NA 2 7.40
## 52 33604718 29 70 1 NA 1 2.35
## 53 5376182 96 205 1 NA 2 2.51
## 54 33669171 130 69 2 NA 2 2.23
## 55 4973227 163 119 1 NA 2 1.43
## 56 33108041 234 68 2 NA 4 2.01
## 57 33634552 143 68 2 NA 2 2.19
## 58 35744548 60 67 1 NA 1 2.19
## 59 11817134 98 133 1 NA 2 1.94
## 60 28821061 137 71 3 NA 4 1.83
## 61 31851838 480 66 3 NA 8 1.88
## 62 33112617 537 66 4 NA 8 1.96
## 63 33604276 134 65 2 NA 2 2.14
## 64 14245740 157 148 3 NA 5 2.39
## 65 4108082 130 312 3 NA 5 3.57
## 66 4360902 64 210 1 NA 2 2.42
## 67 22021293 199 95 1 NA 2 1.93
## 68 25282863 80 103 4 NA 3 2.36
## 69 41314524 200 62 3 NA 4 2.66
## 70 22454647 457 97 3 NA 6 2.02
## 71 5493930 129 266 3 NA 7 3.22
## 72 24571017 43 89 2 NA 2 1.99
## 73 31201327 65 60 1 NA 2 1.68
## 74 33111387 280 60 3 NA 6 1.78
## 75 11971734 44 179 1 NA 1 2.61
## 76 21358634 60 86 1 NA 2 1.72
## 77 29015768 40 62 1 NA 2 1.66
## 78 25892078 328 78 3 NA 4 1.81
## 79 31114726 90 57 1 NA 2 1.60
## 80 33111884 457 57 3 NA 4 1.69
## 81 33112577 250 57 4 NA 8 1.70
## 82 33112624 420 57 5 NA 8 1.69
## 83 10598600 49 215 1 NA 2 3.17
## 84 11381088 116 164 2 NA 3 2.33
## 85 38134989 171 56 1 NA 2 2.12
## 86 39641568 258 56 1 NA 2 2.18
## 87 9464059 48 107 1 NA 2 1.77
## 88 16620686 159 113 2 NA 6 1.97
## 89 24546514 39 82 1 NA 2 1.86
## 90 10819460 109 145 1 NA 2 2.05
## 91 12367388 27 158 12 NA 12 2.31
## 92 982909 120 247 1 NA 1 2.32
## 93 9532788 88 206 NA NA 1 2.82
## 94 19107598 148 80 2 NA 2 1.46
## 95 24276647 328 73 2 NA 4 1.64
## 96 33111278 135 53 2 NA 4 1.57
## 97 33112080 360 53 4 NA 8 1.58
## 98 33112676 420 53 5 NA 8 1.58
## 99 35786312 385 53 5 NA 9 1.73
## 100 18235755 68 138 1 NA 2 2.41
## 101 47945468 134 52 1 NA 1 4.92
## 102 9635192 58 188 NA NA 1 2.55
## 103 26683920 70 69 1 NA 2 1.64
## 104 22114845 45 79 1 NA 3 1.62
## 105 27513348 48 50 3 NA 3 1.51
## 106 33111200 420 50 2 NA 4 1.48
## 107 6352827 62 126 1 NA 3 2.14
## 108 33111749 280 49 3 NA 6 1.46
## 109 35102472 142 49 2 NA 2 1.58
## 110 9746208 88 157 1 NA 1 2.18
## 111 23717333 140 51 2 NA 3 1.15
## 112 11642282 105 103 1 NA 2 1.48
## 113 11865360 89 98 1 NA 2 1.41
## 114 12947194 110 101 2 NA 2 1.50
## 115 20888336 48 99 1 NA 2 1.92
## 116 22143968 48 77 2 NA 3 1.57
## 117 22666446 46 67 1 NA 3 1.42
## 118 32318920 150 47 1 NA 2 1.39
## 119 34235543 29 47 8 NA 8 1.45
## 120 35788857 505 47 5 NA 12 1.54
## 121 4360679 64 133 1 NA 2 1.53
## 122 33110734 349 46 2 NA 4 1.37
## 123 35635103 173 46 2 NA 4 1.53
## 124 35786308 391 46 5 NA 9 1.50
## 125 4664392 99 102 1 NA 2 1.20
## 126 5494971 99 209 3 NA 6 2.55
## 127 5908083 98 77 2 NA 4 0.97
## 128 10214097 148 71 5 NA 6 1.26
## 129 32837771 128 45 2 NA 5 1.33
## 130 33111029 331 45 2 NA 4 1.35
## 131 34526007 165 45 2 NA 2 1.46
## 132 34579286 171 45 1 NA 2 1.47
## 133 5827998 60 296 1 NA 3 3.62
## 134 18395154 180 127 1 NA 2 2.26
## 135 24528929 49 76 1 NA 2 1.71
## 136 35786311 385 43 4 NA 9 1.40
## 137 35788859 519 43 5 NA 12 1.40
## 138 41481981 307 43 2 NA 4 1.88
## 139 4412603 179 66 1 NA 8 0.76
## 140 11863888 99 77 1 NA 2 1.12
## 141 17928273 140 50 1 NA 1 0.88
## 142 19831199 140 90 2 NA 3 1.67
## 143 24763826 130 48 2 NA 2 1.20
## 144 26369349 109 63 1 NA 2 1.48
## 145 29302695 80 42 2 NA 2 1.18
## 146 4926634 90 168 2 NA 3 1.99
## 147 16309636 88 69 1 NA 1 1.14
## 148 21063861 259 83 2 NA 4 1.61
## 149 21820005 176 69 1 NA 1 1.41
## 150 32320934 290 41 5 NA 6 1.20
## 151 34288604 29 41 6 NA 6 1.27
## 152 5889741 168 212 3 NA 3 2.60
## 153 15902723 50 45 1 NA 1 0.72
## 154 16231627 50 167 1 NA 2 2.72
## 155 23072323 46 66 1 NA 2 1.46
## 156 28165463 57 46 36 NA 6 1.15
## 157 29579499 182 43 1 NA 2 1.15
## 158 35786305 422 39 4 NA 9 1.27
## 159 41482560 307 39 2 NA 4 1.85
## 160 5827713 70 286 1 NA 5 3.53
## 161 21428446 223 59 1 NA 2 1.23
## 162 23934649 200 69 5 NA 6 1.52
## 163 30024441 314 39 2 NA 4 1.07
## 164 1678744 63 150 1 NA 1 1.52
## 165 8313545 64 95 1 NA 2 1.25
## 166 15722934 80 61 1 NA 2 0.99
## 167 23277415 120 38 1 NA 2 0.88
## 168 29836188 1015 43 3 NA 6 1.14
## 169 5919270 80 247 1 NA 6 3.04
## 170 8200542 180 190 4 NA 5 2.48
## 171 14515500 30 85 1 NA 3 1.31
## 172 24704585 255 46 1 NA 4 1.05
## 173 34071837 111 36 1 NA 2 1.14
## 174 35818082 193 36 1 NA 2 1.20
## 175 6099703 70 147 1 NA 2 1.81
## 176 12859055 78 83 1 NA 2 1.22
## 177 13418425 72 92 1 NA 2 1.48
## 178 27272375 64 43 1 NA 2 1.04
## 179 28321986 62 39 1 NA 3 1.02
## 180 33782992 220 35 3 NA 6 1.10
## 181 7662310 70 83 1 NA 2 1.09
## 182 12367245 27 72 10 NA 10 1.08
## 183 12475063 69 72 1 NA 1 1.05
## 184 17769862 56 104 2 NA 3 1.80
## 185 18184250 55 117 3 NA 4 2.08
## 186 25130085 43 48 1 NA 3 1.11
## 187 49100433 162 34 1 NA 2 4.16
## 188 5798211 70 151 1 NA 7 1.91
## 189 15364548 190 57 3 NA 5 0.90
## 190 18052476 70 52 1 NA 2 0.92
## 191 20815980 65 53 1 NA 2 1.04
## 192 33536365 78 33 3 NA 2 1.00
## 193 34288179 28 33 8 NA 8 1.03
## 194 35818917 249 33 1 NA 2 1.46
## 195 36216542 49 33 2 NA 2 1.16
## 196 42885763 135 33 1 NA 2 1.64
## 197 8180346 45 203 1 NA 2 2.67
## 198 11465411 77 40 2 NA 2 0.69
## 199 16565287 57 81 1 NA 3 1.35
## 200 18434466 49 68 1 NA 2 1.24
## 201 21854687 181 51 1 NA 2 1.05
## 202 23169041 61 51 2 NA 3 1.10
## 203 25435388 99 52 1 NA 2 1.23
## 204 34631987 28 32 8 NA 8 1.01
## 205 35634164 186 32 1 NA 4 1.07
## 206 13703898 68 59 2 NA 2 1.06
## 207 24636842 115 36 1 NA 2 0.87
## 208 31634142 90 31 1 NA 2 0.87
## 209 32205289 40 31 1 NA 1 0.89
## 210 33025531 150 31 1 NA 2 1.02
## 211 14248210 83 48 1 NA 2 0.73
## 212 21605333 240 54 1 NA 2 1.10
## 213 25246986 64 45 1 NA 2 1.04
## 214 27406451 51 40 1 NA 3 1.00
## 215 31886652 56 30 1 NA 2 0.85
## 216 34053192 136 30 1 NA 4 1.01
## 217 39308924 160 30 3 NA 5 1.13
## 218 40909907 59 30 1 NA 2 1.24
## 219 11228389 34 83 1 NA 1 1.23
## 220 17627294 141 56 4 NA 5 0.97
## 221 29020376 221 29 1 NA 2 0.84
## 222 31218304 100 29 2 NA 3 0.80
## 223 18202395 128 29 1 NA 2 0.78
## 224 21854678 164 57 1 NA 2 1.16
## 225 22987507 65 46 1 NA 1 1.08
## 226 24511964 61 38 1 NA 1 0.88
## 227 28400701 141 28 2 NA 2 0.80
## 228 29614706 81 28 1 NA 1 0.77
## 229 33982757 180 28 2 NA 3 0.98
## 230 36760495 105 28 1 NA 2 0.95
## 231 4990392 64 81 1 NA 2 0.96
## 232 16231781 50 127 2 NA 2 2.09
## 233 23277237 60 50 2 NA 3 1.07
## 234 31003554 148 27 1 NA 2 0.74
## 235 32114293 160 27 1 NA 2 0.77
## 236 35991648 95 27 1 NA 2 0.89
## 237 606784 83 80 1 NA 2 0.89
## 238 4561484 67 62 1 NA 2 0.75
## 239 9320962 50 95 2 NA 2 1.30
## 240 16936558 219 89 3 NA 4 1.49
## 241 17917998 158 67 1 NA 5 1.18
## 242 20247516 2500 55 4 NA 5 1.05
## 243 21887155 40 90 2 NA 2 1.81
## 244 21888054 240 46 1 NA 2 1.07
## 245 26309079 179 41 1 NA 2 1.00
## 246 27709128 90 29 2 NA 3 0.73
## 247 38417543 38 26 1 NA 1 0.93
## 248 42696868 61 26 1 NA 2 1.20
## 249 2451003 104 50 1 NA 2 0.53
## 250 12762246 52 62 1 NA 1 0.92
## 251 19615310 128 44 1 NA 2 0.81
## 252 20512779 90 38 1 NA 3 0.78
## 253 22348216 48 50 1 NA 3 1.05
## 254 26964529 147 39 1 NA 2 0.96
## 255 30571312 70 27 1 NA 2 0.74
## 256 31573008 98 25 1 NA 1 0.70
## 257 33232136 160 25 1 NA 2 0.75
## 258 33748928 63 25 1 NA 2 0.77
## 259 37916346 331 25 1 NA 2 0.92
## 260 40881888 63 25 1 NA 2 1.05
## 261 43379899 144 25 1 NA 2 1.27
## 262 43792252 255 25 2 NA 4 1.36
## 263 344803 48 58 1 NA 1 0.49
## 264 4833408 40 124 8 NA 15 1.46
## 265 5118006 64 67 1 NA 2 0.80
## 266 7381770 130 57 2 NA 4 0.73
## 267 8195397 28 131 1 NA 1 1.71
## 268 8345350 28 80 8 NA 1 1.08
## 269 24863189 55 52 2 NA 4 1.18
## 270 29581373 160 27 1 NA 2 0.72
## 271 33436577 158 24 1 NA 3 0.73
## 272 40267527 68 24 1 NA 2 0.94
## 273 6381495 83 60 1 NA 2 0.75
## 274 6481052 364 35 NA NA 3 0.44
## 275 6630341 90 99 1 NA 2 1.28
## 276 6906010 77 55 1 NA 2 0.71
## 277 10718463 150 36 NA NA 2 0.51
## 278 12614519 68 71 1 NA 2 1.03
## 279 20018299 138 37 1 NA 2 0.70
## 280 21804950 160 41 1 NA 2 0.82
## 281 24294968 143 30 3 NA 3 0.68
## 282 26435923 78 30 1 NA 1 0.73
## 283 26931333 171 36 1 NA 2 0.88
## 284 31204753 88 23 1 NA 1 0.65
## 285 37655038 150 23 1 NA 2 0.87
## 286 38421932 96 23 1 NA 2 0.82
## 287 38539790 153 23 2 NA 3 0.86
## 288 40439164 569 23 2 NA 5 1.38
## 289 47912877 155 23 1 NA 2 2.14
## 290 51076382 193 23 1 NA 2 4.63
## 291 1678755 63 93 1 NA 1 0.97
## 292 6128096 80 66 NA NA 2 0.84
## 293 18508828 66 40 2 NA 3 0.72
## 294 18905203 43 31 NA NA 1 0.62
## 295 19231081 130 25 1 NA 2 0.60
## 296 20060105 138 32 1 NA 2 0.60
## 297 21015880 157 30 1 NA 2 0.63
## 298 21765670 75 32 1 NA 2 0.66
## 299 34237086 150 22 6 NA 6 0.69
## 300 36285087 60 22 1 NA 2 0.74
## 301 39091992 168 22 2 NA 6 1.08
## 302 43629592 214 22 4 NA 6 1.22
## 303 369145 66 165 1 NA 2 1.40
## 304 4252548 84 66 1 NA 2 0.76
## 305 4616523 65 96 1 NA 2 1.12
## 306 7898449 130 58 2 NA 4 0.77
## 307 9716208 38 92 1 NA 1 1.26
## 308 11980197 55 71 1 NA 1 1.10
## 309 13286282 65 50 1 NA 1 0.75
## 310 16231818 60 98 1 NA 2 1.63
## 311 17949590 40 50 1 NA 2 1.10
## 312 23947783 342 30 1 NA 2 0.66
## 313 24927780 64 37 1 NA 2 0.85
## 314 28789161 65 21 1 NA 1 0.60
## 315 29552643 158 23 1 NA 2 0.62
## 316 31854536 50 21 1 NA 1 0.61
## 317 34318004 205 21 1 NA 4 0.67
## 318 36212391 27 21 1 NA 1 0.70
## 319 37059139 193 21 1 NA 4 0.72
## 320 41120765 75 21 1 NA 2 0.88
## 321 2838555 80 61 1 NA 2 0.66
## 322 4138944 260 59 1 NA 2 0.68
## 323 15197371 149 52 2 NA 5 0.84
## 324 22979766 38 32 1 NA 2 0.68
## 325 28264364 145 26 1 NA 3 0.65
## 326 31076781 90 20 2 NA 3 0.55
## 327 31812483 257 20 1 NA 2 0.58
## 328 40267722 59 20 1 NA 1 0.78
## 329 40904017 125 20 1 NA 2 0.88
## 330 47295315 251 20 1 NA 2 1.86
## 331 71903 82 47 2 NA 3 0.36
## 332 3863231 85 67 1 NA 2 0.75
## 333 12687038 90 74 1 NA 2 1.09
## 334 16370834 90 32 1 NA 2 0.54
## 335 24761439 145 22 1 NA 2 0.50
## 336 25888807 220 23 2 NA 4 0.59
## 337 27253602 190 20 1 NA 2 0.54
## 338 28794509 22 22 10 NA 10 0.56
## 339 34489654 70 19 1 NA 2 0.61
## 340 34834829 65 19 1 NA 2 0.62
## 341 47912630 145 19 1 NA 2 2.15
## 342 4656316 64 49 1 NA 2 0.58
## 343 5024661 130 78 2 NA 4 0.96
## 344 13038831 125 47 1 NA 4 0.69
## 345 21416331 207 48 1 NA 1 0.98
## 346 27078318 183 32 2 NA 4 0.77
## 347 31775980 60 18 1 NA 1 0.51
## 348 37999599 209 18 1 NA 2 0.66
## 349 39612331 156 18 1 NA 4 0.86
## 350 41014060 148 18 1 NA 2 1.34
## 351 41014661 148 18 1 NA 2 0.76
## 352 43393378 84 18 1 NA 2 0.91
## 353 294281 72 133 1 NA 2 1.10
## 354 4584539 90 87 1 NA 3 1.01
## 355 6983613 84 45 1 NA 2 0.58
## 356 8313660 64 72 1 NA 2 0.95
## 357 9928008 123 92 1 NA 2 1.26
## 358 11965790 85 30 1 NA 2 0.44
## 359 16140165 214 28 2 NA 6 0.49
## 360 16519375 52 18 2 NA 1 0.49
## 361 22158920 47 31 1 NA 3 0.66
## 362 23315012 135 24 1 NA 1 0.58
## 363 24000763 96 23 1 NA 2 0.51
## 364 26217724 328 23 1 NA 4 0.55
## 365 27405538 185 20 1 NA 4 0.49
## 366 34071596 122 17 1 NA 2 0.52
## 367 43408005 125 17 1 NA 2 0.90
## 368 45854835 103 17 1 NA 2 1.20
## 369 6117032 80 130 1 NA 2 1.60
## 370 6426551 130 60 2 NA 4 0.76
## 371 8890247 85 45 4 NA 4 0.61
## 372 13717530 168 24 1 NA 1 0.62
## 373 16231741 50 88 2 NA 2 1.43
## 374 16413107 90 32 1 NA 2 0.53
## 375 17454856 123 58 2 NA 6 1.00
## 376 19509543 60 35 1 NA 1 0.65
## 377 20040797 148 33 1 NA 2 0.61
## 378 21937326 500 25 1 NA 1 0.51
## 379 24883137 220 36 2 NA 6 0.84
## 380 31520512 90 16 1 NA 2 0.44
## 381 35008965 72 16 1 NA 2 0.54
## 382 35082329 49 16 1 NA 1 0.51
## 383 35885309 67 16 1 NA 2 0.54
## 384 36581961 102 16 1 NA 2 0.54
## 385 36808814 118 16 1 NA 2 0.55
## 386 40855337 80 16 1 NA 2 0.66
## 387 41015331 159 16 1 NA 2 0.66
## 388 43915749 245 16 2 NA 5 1.34
## 389 44121816 113 16 1 NA 2 0.92
## 390 369141 69 81 1 NA 2 0.81
## 391 4645834 64 50 1 NA 2 0.59
## 392 6300043 75 51 1 NA 2 0.73
## 393 7733844 89 66 1 NA 2 0.86
## 394 9268058 105 35 5 NA 5 0.49
## 395 9563744 59 95 1 NA 1 1.29
## 396 15454153 209 19 3 NA 5 0.33
## 397 15656782 129 32 1 NA 2 0.53
## 398 17736530 100 32 1 NA 2 0.59
## 399 18619859 59 22 1 NA 2 0.50
## 400 23438702 75 19 1 NA 2 0.42
## 401 24975249 64 20 1 NA 2 0.46
## 402 28536238 336 15 1 NA 3 0.94
## 403 29525951 260 18 1 NA 1 0.48
## 404 31457968 115 15 1 NA 2 0.46
## 405 32227139 50 15 1 NA 2 0.43
## 406 33888989 331 15 1 NA 3 0.53
## 407 34727793 290 15 1 NA 2 0.49
## 408 35818107 150 15 6 NA 6 0.50
## 409 40198092 118 15 1 NA 2 0.60
## 410 40552643 34 15 6 NA 6 0.60
## 411 40809355 121 15 1 NA 2 0.70
## 412 43658074 100 15 1 NA 3 0.80
## 413 3859180 63 81 1 NA 2 0.91
## 414 6142390 83 31 1 NA 2 0.38
## 415 6431505 74 65 1 NA 2 0.82
## 416 6619955 80 64 1 NA 2 0.83
## 417 6993627 70 88 1 NA 2 1.12
## 418 8264717 80 148 1 NA 2 1.94
## 419 10041012 42 34 16 NA 16 0.47
## 420 12345284 29 92 1 NA 1 1.34
## 421 12992216 813 31 3 NA 6 0.45
## 422 14740975 115 62 1 NA 2 0.97
## 423 15087980 115 26 1 NA 2 0.42
## 424 19229162 105 16 1 NA 2 0.39
## 425 20059256 148 25 1 NA 2 0.47
## 426 20397202 90 19 1 NA 4 0.42
## 427 22116641 98 28 2 NA 6 0.57
## 428 24238015 357 19 1 NA 2 0.45
## 429 24660198 407 21 2 NA 4 0.49
## 430 34186257 78 14 1 NA 1 0.44
## 431 34632139 25 14 6 NA 6 0.45
## 432 35770430 115 14 2 NA 3 0.46
## 433 37062341 168 14 1 NA 4 0.51
## 434 37063111 189 14 1 NA 4 0.70
## 435 38308020 120 14 1 NA 2 0.50
## 436 42081657 241 14 2 NA 4 0.62
## 437 42985510 176 14 3 NA 4 0.66
## 438 43521009 245 14 2 NA 5 0.77
## 439 43731117 156 14 1 NA 4 0.75
## 440 48232774 556 14 2 NA 5 1.41
## 441 1229614 290 39 1 NA 2 0.40
## 442 3209752 98 13 1 NA 1 0.46
## 443 6271100 98 33 1 NA 2 0.42
## 444 6718219 100 58 2 NA 2 0.74
## 445 14489603 30 60 20 NA 16 0.92
## 446 18572753 119 24 1 NA 4 0.46
## 447 19975545 148 23 1 NA 2 0.43
## 448 20084815 416 20 1 NA 2 0.40
## 449 24701064 180 28 2 NA 4 0.65
## 450 25561906 190 31 2 NA 4 0.72
## 451 30487030 120 13 1 NA 2 0.44
## 452 31095224 75 13 1 NA 2 0.36
## 453 31219674 100 13 3 NA 3 0.36
## 454 31965730 92 13 1 NA 1 0.41
## 455 32526213 145 13 1 NA 2 0.39
## 456 33026305 143 13 1 NA 4 0.39
## 457 33244499 90 13 2 NA 2 0.40
## 458 34138136 215 13 4 NA 7 0.40
## 459 36888718 74 13 1 NA 2 0.44
## 460 36970328 173 13 1 NA 2 0.45
## 461 37067343 180 13 1 NA 4 0.47
## 462 38361167 98 13 2 NA 4 0.47
## 463 39334937 108 13 1 NA 3 0.50
## 464 43177325 50 13 1 NA 2 0.64
## 465 46144509 145 13 1 NA 2 0.96
## 466 5854894 45 23 1 NA 2 0.30
## 467 6242964 128 17 3 NA 3 0.22
## 468 6300577 94 25 1 NA 1 0.32
## 469 6718514 90 75 1 NA 2 0.95
## 470 8196180 33 25 1 NA 1 0.33
## 471 8432015 400 35 4 NA 5 0.46
## 472 9017107 93 13 1 NA 2 0.24
## 473 13274598 28 17 13 NA 13 0.25
## 474 16236835 72 24 1 NA 2 0.41
## 475 16823251 70 38 1 NA 2 0.64
## 476 19184503 300 21 1 NA 3 0.39
## 477 19369423 616 19 3 NA 5 0.39
## 478 21015876 155 17 1 NA 2 0.35
## 479 21314866 140 22 1 NA 2 0.44
## 480 21854697 180 25 1 NA 2 0.51
## 481 23673101 215 30 1 NA 2 0.66
## 482 24000873 96 25 1 NA 2 0.55
## 483 29554536 651 14 1 NA 2 0.37
## 484 29858416 208 13 1 NA 2 0.35
## 485 32388223 216 12 1 NA 2 0.37
## 486 32903109 146 12 2 NA 4 0.36
## 487 34072244 120 12 1 NA 1 0.39
## 488 34073545 235 12 2 NA 4 0.38
## 489 34236901 199 12 8 NA 8 0.38
## 490 34454047 88 12 1 NA 1 0.38
## 491 34692602 49 12 10 NA 2 0.39
## 492 34919150 185 12 1 NA 2 0.38
## 493 40316461 65 12 2 NA 2 0.49
## 494 40941821 244 12 3 NA 6 0.53
## 495 41032819 155 12 1 NA 2 0.51
## 496 42910492 97 12 1 NA 2 0.57
## 497 43542472 58 12 1 NA 2 0.63
## 498 2922184 65 13 1 NA 1 0.18
## 499 5551665 56 18 1 NA 1 0.22
## 500 6120794 64 66 1 NA 2 0.81
## 501 6183734 74 86 1 NA 2 1.08
## 502 6679887 130 49 2 NA 4 0.62
## 503 7830009 74 34 1 NA 2 0.44
## 504 9584573 80 12 1 NA 1 0.32
## 505 14191894 102 38 2 NA 4 0.59
## 506 16118606 70 15 1 NA 2 0.24
## 507 17929055 123 11 1 NA 1 0.36
## 508 18517165 119 31 2 NA 4 0.56
## 509 19091188 35 11 1 NA 1 0.31
## 510 19595827 662 20 3 NA 5 0.39
## 511 19668740 128 15 1 NA 2 0.28
## 512 21416445 324 14 1 NA 2 0.29
## 513 22282038 190 18 1 NA 2 0.37
## 514 25815030 85 16 2 NA 2 0.37
## 515 28944421 287 11 1 NA 2 0.31
## 516 31948394 70 11 1 NA 1 0.32
## 517 31960343 356 11 1 NA 2 0.35
## 518 32385687 239 11 1 NA 2 0.34
## 519 33490643 65 11 1 NA 1 0.35
## 520 35359778 681 11 2 NA 6 0.36
## 521 36516629 178 11 1 NA 3 0.38
## 522 38026889 135 11 NA NA 2 0.44
## 523 38104971 122 11 1 NA 2 0.40
## 524 39716810 189 11 1 NA 4 0.56
## 525 40708485 138 11 1 NA 2 0.45
## 526 42796574 121 11 1 NA 2 0.83
## 527 47911419 175 11 1 NA 2 1.03
## 528 49099810 145 11 1 NA 2 1.61
## 529 1233249 284 36 2 NA 3 0.37
## 530 1302185 109 91 2 NA 5 0.88
## 531 1833950 260 28 1 NA 2 0.29
## 532 2156372 50 14 1 NA 1 0.16
## 533 4026199 350 35 3 NA 4 0.40
## 534 4054698 28 49 12 NA 12 0.57
## 535 4683314 410 26 4 NA 5 0.31
## 536 6529707 40 38 2 NA 2 0.48
## 537 6889842 75 61 1 NA 2 0.77
## 538 7830012 74 22 1 NA 2 0.29
## 539 8196417 30 40 1 NA 1 0.53
## 540 8654132 31 38 8 NA 8 0.51
## 541 10001615 65 44 4 NA 16 0.60
## 542 13377049 119 15 1 NA 5 0.25
## 543 16966634 90 28 2 NA 2 0.47
## 544 17179470 38 12 1 NA 2 0.29
## 545 17595156 50 24 1 NA 2 0.41
## 546 18199481 111 10 1 NA 1 0.29
## 547 19650919 128 17 1 NA 2 0.31
## 548 19714010 110 19 1 NA 2 0.38
## 549 21061528 50 29 1 NA 2 0.58
## 550 21670282 961 21 4 NA 7 0.44
## 551 21805009 73 12 1 NA 2 0.26
## 552 22000933 68 18 1 NA 2 0.37
## 553 24056026 74 14 1 NA 2 0.32
## 554 24070730 260 17 1 NA 2 0.39
## 555 32345618 273 10 1 NA 2 0.33
## 556 33394388 150 10 1 NA 2 0.55
## 557 36570785 120 10 1 NA 1 0.34
## 558 39305198 25 10 1 NA 2 0.39
## 559 41032597 445 10 1 NA 2 0.41
## 560 43694447 259 10 2 NA 5 0.60
## 561 47211647 545 10 2 NA 5 1.04
## 562 47296851 338 10 1 NA 2 0.88
## 563 51122058 554 10 1 NA 2 2.26
## 564 71609 179 20 3 NA 6 0.16
## 565 5609608 46 69 1 NA 1 0.86
## 566 7154662 140 11 2 NA 4 0.14
## 567 8212422 130 31 4 NA 4 0.42
## 568 14697600 83 39 1 NA 2 0.61
## 569 16057988 229 35 4 NA 6 0.65
## 570 16291031 78 34 1 NA 2 0.56
## 571 16964241 27 36 10 NA 12 0.61
## 572 19642785 85 15 1 NA 2 0.28
## 573 19685674 128 10 1 NA 2 0.24
## 574 20234954 281 13 1 NA 3 0.28
## 575 21015977 155 9 1 NA 2 0.25
## 576 22021287 90 9 1 NA 1 0.26
## 577 23952242 170 9 2 NA 4 0.25
## 578 25816812 147 33 1 NA 2 0.77
## 579 26176258 205 16 2 NA 4 0.38
## 580 26344207 38 17 1 NA 2 0.42
## 581 28137638 92 11 1 NA 2 0.27
## 582 29552115 106 11 1 NA 1 0.29
## 583 31729758 90 9 1 NA 2 0.28
## 584 35961334 59 9 1 NA 3 0.32
## 585 38916143 165 9 2 NA 2 0.38
## 586 43684773 220 9 2 NA 6 0.48
## 587 43915791 385 9 3 NA 8 0.82
## 588 45895673 98 9 1 NA 2 0.63
## 589 46322024 52 9 1 NA 1 0.74
## 590 46384557 156 9 2 NA 3 0.71
## 591 47558087 258 9 2 NA 5 1.00
## 592 6142880 72 33 1 NA 1 0.41
## 593 6477665 68 55 1 NA 2 0.69
## 594 6958476 73 38 1 NA 2 0.48
## 595 8017511 200 34 5 NA 7 0.49
## 596 10040969 47 59 16 NA 16 0.81
## 597 13936031 120 11 2 NA 4 0.23
## 598 15919067 364 9 1 NA 2 0.16
## 599 15991345 72 29 1 NA 2 0.47
## 600 16006904 69 12 1 NA 2 0.25
## 601 16846533 126 23 1 NA 2 0.40
## 602 17929053 240 8 2 NA 3 0.22
## 603 18675202 135 16 1 NA 2 0.30
## 604 19184502 300 21 1 NA 3 0.39
## 605 19953933 766 11 4 NA 7 0.21
## 606 21015874 155 11 1 NA 2 0.23
## 607 21502138 68 16 1 NA 2 0.33
## 608 23457264 55 17 1 NA 1 0.37
## 609 23672746 319 9 3 NA 4 0.23
## 610 25273104 90 13 1 NA 2 0.31
## 611 25980558 150 15 1 NA 2 0.35
## 612 26370803 365 10 1 NA 2 0.25
## 613 28998161 54 9 1 NA 1 0.24
## 614 29580481 173 8 1 NA 2 0.22
## 615 30385249 555 8 2 NA 4 0.24
## 616 32031648 328 8 3 NA 6 0.23
## 617 32245578 357 8 5 NA 6 0.25
## 618 32317824 204 8 3 NA 6 0.23
## 619 32370549 211 8 1 NA 2 0.25
## 620 33460906 50 8 1 NA 1 0.25
## 621 34236667 51 8 10 NA 2 0.25
## 622 34804905 215 8 4 NA 7 0.31
## 623 37274297 27 8 1 NA 1 0.30
## 624 40340084 185 8 2 NA 5 0.34
## 625 41509578 27 8 1 NA 1 0.38
## 626 44044776 147 8 1 NA 2 0.45
## 627 46096669 268 8 2 NA 4 0.57
## 628 46589112 85 8 1 NA 2 0.65
## 629 1210268 400 45 4 NA 5 0.46
## 630 4916186 90 24 1 NA 2 0.29
## 631 4979889 200 22 1 NA 2 0.26
## 632 5052014 149 9 1 NA 2 0.11
## 633 5233415 149 12 1 NA 2 0.15
## 634 7829853 74 13 1 NA 2 0.17
## 635 8654673 36 21 8 NA 8 0.28
## 636 9054629 51 23 1 NA 1 0.31
## 637 11365125 60 46 1 NA 2 0.65
## 638 11679463 180 8 1 NA 3 0.21
## 639 16044788 106 14 1 NA 2 0.23
## 640 16758638 105 14 1 NA 2 0.23
## 641 18117026 90 15 1 NA 1 0.28
## 642 20096441 496 10 3 NA 5 0.22
## 643 20177941 493 14 3 NA 5 0.27
## 644 20481470 100 11 1 NA 6 0.22
## 645 21015881 155 8 1 NA 2 0.19
## 646 21847888 73 16 1 NA 2 0.34
## 647 22947456 73 9 1 NA 2 0.21
## 648 23380147 126 10 1 NA 2 0.23
## 649 24211014 138 10 2 NA 4 0.24
## 650 24763675 145 8 1 NA 2 0.20
## 651 24874562 200 7 2 NA 4 0.26
## 652 28415998 86 9 2 NA 2 0.23
## 653 29209668 154 7 1 NA 5 0.20
## 654 29972407 137 7 1 NA 2 0.19
## 655 30385453 376 7 1 NA 2 0.20
## 656 30881232 72 7 1 NA 1 0.20
## 657 31664598 140 7 1 NA 2 0.20
## 658 31960810 320 7 1 NA 2 0.20
## 659 32475586 86 7 1 NA 2 0.22
## 660 33604552 31 7 1 NA 1 0.26
## 661 33740994 45 7 1 NA 1 0.24
## 662 34943627 88 7 1 NA 2 0.23
## 663 35077531 111 7 1 NA 1 0.23
## 664 35302676 32 7 1 NA 1 0.23
## 665 36214603 43 7 2 NA 2 0.26
## 666 36925569 64 7 1 NA 2 0.25
## 667 38407910 72 7 1 NA 2 0.26
## 668 39293936 95 7 2 NA 2 0.31
## 669 40765066 295 7 3 NA 4 0.31
## 670 41570615 35 7 1 NA 2 0.30
## 671 43416835 385 7 3 NA 8 0.89
## 672 43520895 385 7 3 NA 8 0.91
## 673 44171737 117 7 1 NA 2 0.39
## 674 44283744 127 7 1 NA 2 0.41
## 675 47945986 231 7 1 NA 2 0.72
## 676 48033436 192 7 1 NA 2 1.41
## 677 48402783 266 7 2 NA 5 0.72
## 678 50433019 288 7 2 NA 5 2.50
## 679 51257283 428 7 3 NA 8 2.14
## 680 4069756 28 21 12 NA 12 0.24
## 681 4576362 90 77 1 NA 2 0.90
## 682 4586160 128 9 6 NA 4 0.11
## 683 4613432 88 27 1 NA 2 0.31
## 684 5464246 112 11 1 NA 2 0.15
## 685 5584157 40 112 1 NA 2 1.38
## 686 6831622 150 23 1 NA 3 0.29
## 687 7138922 75 32 1 NA 2 0.42
## 688 7321238 58 34 1 NA 2 0.46
## 689 7595693 90 11 1 NA 2 0.15
## 690 8114003 100 12 1 NA 3 0.16
## 691 8721639 461 20 2 NA 6 0.30
## 692 9828451 60 10 1 NA 1 0.14
## 693 10027442 24 30 16 NA 16 0.41
## 694 11581560 417 10 1 NA 2 0.23
## 695 11660178 200 6 2 NA 4 0.17
## 696 12738896 79 7 1 NA 2 0.10
## 697 13472462 80 10 1 NA 5 0.18
## 698 14718255 83 20 1 NA 2 0.31
## 699 15274648 299 11 2 NA 2 0.19
## 700 15428715 65 24 1 NA 2 0.38
## 701 15687109 200 6 1 NA 2 0.22
## 702 16036564 89 11 1 NA 2 0.18
## 703 16742820 141 12 1 NA 2 0.20
## 704 17275135 106 15 1 NA 2 0.26
## 705 17684352 150 47 1 NA 2 0.92
## 706 19184011 300 7 1 NA 3 0.19
## 707 19595322 312 13 1 NA 2 0.25
## 708 21314479 90 6 1 NA 1 0.18
## 709 21420790 232 7 1 NA 1 0.14
## 710 22544362 140 10 1 NA 2 0.22
## 711 23999593 96 11 2 NA 2 0.26
## 712 24212593 942 7 2 NA 4 0.17
## 713 25866359 90 8 1 NA 2 0.19
## 714 29319213 22 6 10 NA 10 0.18
## 715 30188702 179 6 3 NA 5 0.17
## 716 30261649 66 6 1 NA 2 0.19
## 717 31959810 270 6 1 NA 2 0.22
## 718 32010385 118 6 4 NA 4 0.20
## 719 33050985 204 6 3 NA 6 0.19
## 720 35883311 49 6 1 NA 1 0.20
## 721 35883439 94 6 1 NA 2 0.20
## 722 36618900 402 6 3 NA 6 0.22
## 723 37060879 179 6 1 NA 2 0.27
## 724 37353696 63 6 2 NA 2 0.22
## 725 37986233 120 6 1 NA 2 0.21
## 726 38862445 461 6 2 NA 4 0.22
## 727 39123066 29 6 2 NA 2 0.23
## 728 39338786 295 6 1 NA 2 0.23
## 729 40517115 268 6 3 NA 8 0.24
## 730 40641448 133 6 1 NA 2 0.24
## 731 40809655 154 6 1 NA 2 0.44
## 732 40809914 155 6 1 NA 2 0.44
## 733 41296812 34 6 6 NA 6 0.26
## 734 41312870 154 6 2 NA 4 0.29
## 735 42362577 130 6 3 NA 5 0.56
## 736 42588720 108 6 1 NA 1 0.52
## 737 43404091 109 6 1 NA 3 0.34
## 738 43959679 113 6 3 NA 4 0.48
## 739 46385713 228 6 2 NA 4 0.49
## 740 48033280 145 6 1 NA 2 1.34
## 741 48033351 142 6 2 NA 2 1.62
## 742 49048346 192 6 1 NA 1 0.98
## 743 49133042 140 6 1 NA 3 0.92
## 744 275343 52 20 1 NA 1 0.19
## 745 756267 250 70 1 NA 2 0.64
## 746 3790364 82 26 1 NA 2 0.30
## 747 4541072 76 16 1 NA 2 0.23
## 748 6638508 76 15 1 NA 1 0.19
## 749 7765392 57 12 1 NA 1 0.16
## 750 8330622 74 8 1 NA 2 0.11
## 751 9269260 165 9 8 NA 8 0.13
## 752 11993987 59 11 1 NA 1 0.20
## 753 12211385 59 25 12 NA 2 0.36
## 754 12366958 29 26 10 NA 10 0.38
## 755 13275737 80 56 1 NA 2 0.84
## 756 14131949 278 15 1 NA 2 0.29
## 757 16007139 78 12 1 NA 2 0.21
## 758 16007789 83 17 1 NA 2 0.29
## 759 16832754 276 16 2 NA 3 0.27
## 760 17191773 100 8 1 NA 1 0.15
## 761 17927897 179 8 1 NA 2 0.16
## 762 18109887 59 15 1 NA 2 0.27
## 763 18169687 130 6 1 NA 2 0.14
## 764 18858584 136 8 1 NA 2 0.15
## 765 19184500 300 13 2 NA 3 0.28
## 766 19367655 375 9 1 NA 3 0.19
## 767 20426981 81 6 1 NA 2 0.13
## 768 20628822 69 7 1 NA 2 0.17
## 769 21015873 155 6 1 NA 2 0.15
## 770 21312604 85 11 1 NA 1 0.22
## 771 23045739 155 5 1 NA 2 0.28
## 772 23094299 530 7 3 NA 5 0.15
## 773 23506068 144 7 1 NA 2 0.15
## 774 24511491 29 7 1 NA 1 0.17
## 775 24919927 59 5 1 NA 1 0.17
## 776 25083771 168 8 2 NA 6 0.19
## 777 25748458 260 7 1 NA 2 0.16
## 778 25877353 432 5 3 NA 6 0.14
## 779 25981021 168 13 1 NA 4 0.30
## 780 26583889 82 5 1 NA 2 0.16
## 781 27342137 320 7 2 NA 3 0.17
## 782 27638361 130 7 1 NA 2 0.18
## 783 29917321 280 5 3 NA 6 0.14
## 784 31725137 610 5 3 NA 6 0.15
## 785 32292453 109 5 1 NA 2 0.16
## 786 32671732 96 5 1 NA 2 0.18
## 787 33604275 30 5 1 NA 1 0.16
## 788 33999107 37 5 1 NA 1 0.16
## 789 34071208 129 5 1 NA 2 0.16
## 790 35237622 109 5 1 NA 2 0.16
## 791 36226718 69 5 1 NA 1 0.18
## 792 38965851 157 5 1 NA 1 0.19
## 793 38986709 163 5 1 NA 2 0.21
## 794 39077406 89 5 1 NA 1 0.19
## 795 39451454 90 5 2 NA 3 0.19
## 796 40453611 198 5 6 NA 8 0.21
## 797 40765359 138 5 1 NA 2 0.21
## 798 41033189 135 5 1 NA 2 0.36
## 799 41788641 190 5 2 NA 4 0.22
## 800 42545850 60 5 1 NA 1 0.24
## 801 42569842 48 5 1 NA 2 0.24
## 802 42697304 61 5 1 NA 2 0.25
## 803 43492196 120 5 1 NA 2 0.27
## 804 43934034 152 5 2 NA 3 0.28
## 805 43954242 163 5 2 NA 4 0.39
## 806 43967264 60 5 1 NA 2 0.29
## 807 44080236 147 5 2 NA 3 0.29
## 808 45440615 59 5 NA NA 1 0.41
## 809 47296644 270 5 1 NA 2 0.47
## 810 47912647 125 5 NA NA 2 0.55
## 811 48265114 105 5 1 NA 1 0.56
## 812 48723619 226 5 2 NA 6 0.56
## 813 53181539 75 5 1 NA 2 3.00
## 814 71896 82 24 1 NA 3 0.19
## 815 819044 150 71 1 NA 2 0.65
## 816 4380000 101 8 1 NA 2 0.09
## 817 4450681 320 16 2 NA 3 0.19
## 818 5006143 61 5 1 NA 1 0.07
## 819 5253599 70 12 1 NA 2 0.15
## 820 5448209 200 7 1 NA 3 0.10
## 821 5739284 82 42 1 NA 2 0.51
## 822 7250803 66 25 1 NA 3 0.36
## 823 8113936 100 6 1 NA 3 0.09
## 824 9268500 125 8 6 NA 6 0.12
## 825 9459389 106 24 1 NA 2 0.33
## 826 9866917 38 70 1 NA 1 0.98
## 827 9967697 29 24 5 NA 10 0.33
## 828 10030323 24 67 16 NA 16 0.94
## 829 13243736 198 49 3 NA 4 0.79
## 830 13274269 28 16 13 NA 13 0.24
## 831 13965663 85 12 4 NA 4 0.18
## 832 14680376 88 9 1 NA 2 0.18
## 833 15918822 394 4 1 NA 2 0.23
## 834 15978100 89 6 1 NA 2 0.12
## 835 16150227 100 4 1 NA 3 0.14
## 836 16150642 130 4 1 NA 3 0.13
## 837 17672050 34 43 16 NA 16 0.74
## 838 17929045 131 4 2 NA 2 0.13
## 839 19176815 68 30 1 NA 2 0.55
## 840 19184013 300 4 1 NA 3 0.11
## 841 19200431 35 7 1 NA 1 0.13
## 842 19351097 153 28 2 NA 3 0.53
## 843 19834053 160 5 1 NA 2 0.10
## 844 19847774 151 5 3 NA 3 0.13
## 845 20156054 462 6 3 NA 5 0.12
## 846 21013726 99 4 1 NA 1 0.11
## 847 21200260 141 10 1 NA 2 0.20
## 848 21283595 126 10 1 NA 2 0.20
## 849 21671407 150 5 1 NA 2 0.14
## 850 22577896 235 10 NA NA 2 0.22
## 851 22798533 769 8 4 NA 7 0.17
## 852 22990457 883 6 2 NA 3 0.13
## 853 23362544 82 10 2 NA 1 0.22
## 854 23733935 90 5 1 NA 2 0.12
## 855 24764493 130 7 2 NA 2 0.16
## 856 24782626 125 6 1 NA 2 0.15
## 857 25250570 180 15 2 NA 4 0.35
## 858 26405063 400 7 4 NA 5 0.17
## 859 27271822 64 6 1 NA 2 0.15
## 860 27513625 80 5 2 NA 2 0.12
## 861 29076794 35 4 1 NA 1 0.12
## 862 29320287 22 8 10 NA 10 0.21
## 863 29522642 213 5 3 NA 5 0.14
## 864 31687465 65 4 1 NA 2 0.14
## 865 31796994 40 4 1 NA 1 0.12
## 866 32223767 124 4 1 NA 2 0.17
## 867 32488562 37 4 1 NA 1 0.12
## 868 32528723 151 4 2 NA 4 0.13
## 869 33347361 124 4 1 NA 2 0.14
## 870 33734018 150 4 2 NA 3 0.14
## 871 34237286 359 4 14 NA 14 0.13
## 872 34733071 59 4 1 NA 1 0.15
## 873 35300977 30 4 1 NA 1 0.13
## 874 35747289 229 4 8 NA 8 0.14
## 875 36920538 64 4 1 NA 2 0.14
## 876 36999903 150 4 2 NA 2 0.14
## 877 37419221 72 4 1 NA 2 0.14
## 878 38689712 90 4 1 NA 2 0.15
## 879 38889119 688 4 3 NA 4 0.15
## 880 39009057 163 4 2 NA 4 0.15
## 881 39212874 121 4 1 NA 2 0.18
## 882 39638066 49 4 1 NA 1 0.16
## 883 40048607 220 4 5 NA 6 0.16
## 884 40120307 125 4 1 NA 2 0.17
## 885 40213569 118 4 2 NA 4 0.16
## 886 40543696 450 4 9 NA 16 0.17
## 887 40642638 149 4 1 NA 2 0.31
## 888 40748069 144 4 1 NA 2 0.17
## 889 41160705 643 4 1 NA 3 0.17
## 890 41340735 111 4 1 NA 3 0.17
## 891 41613235 27 4 6 NA 6 0.17
## 892 42545364 60 4 1 NA 2 0.18
## 893 46144841 125 4 1 NA 2 0.48
## 894 46145057 136 4 1 NA 2 0.30
## 895 46424078 195 4 1 NA 2 0.31
## 896 46865144 219 4 2 NA 4 0.38
## 897 47295777 266 4 1 NA 2 0.37
## 898 47945703 165 4 1 NA 2 0.49
## 899 48496237 78 4 1 NA 5 0.41
## 900 49660129 142 4 2 NA 4 0.55
## 901 50737006 135 4 1 NA 2 0.99
## 902 51476593 134 4 1 NA 2 1.56
## 903 53000273 115 4 1 NA 1 3.43
## 904 275344 40 13 1 NA 1 0.11
## 905 815685 40 14 1 NA 1 0.14
## 906 819034 300 40 2 NA 4 0.37
## 907 1615074 79 5 1 NA 1 0.11
## 908 3717217 146 49 4 NA 4 0.56
## 909 6287204 180 11 2 NA 4 0.15
## 910 6663906 88 18 1 NA 2 0.23
## 911 7250709 59 5 5 NA 2 0.08
## 912 7662314 80 25 1 NA 2 0.33
## 913 7927886 56 29 1 NA 2 0.39
## 914 8111502 130 8 1 NA 3 0.11
## 915 8113712 100 5 1 NA 3 0.11
## 916 8355592 30 13 1 NA 1 0.18
## 917 8625349 31 8 9 NA 9 0.12
## 918 8626676 36 17 6 NA 6 0.24
## 919 8705956 211 10 1 NA 3 0.14
## 920 9269848 165 4 7 NA 7 0.07
## 921 9269981 300 7 16 NA 16 0.10
## 922 10023519 24 28 16 NA 16 0.39
## 923 12211392 26 39 16 NA 16 0.57
## 924 12299369 85 6 1 NA 2 0.10
## 925 13283938 288 65 4 NA 6 0.96
## 926 13574617 120 14 2 NA 4 0.26
## 927 14332483 24 33 6 NA 6 0.50
## 928 14435012 60 4 1 NA 1 0.08
## 929 15364942 68 4 1 NA 3 0.08
## 930 15441196 59 6 1 NA 1 0.09
## 931 15725449 337 5 3 NA 6 0.08
## 932 15893111 49 17 1 NA 1 0.27
## 933 16183428 47 11 16 NA 16 0.19
## 934 16260783 130 5 1 NA 2 0.09
## 935 16701352 137 35 1 NA 2 0.64
## 936 16743909 127 19 1 NA 2 0.32
## 937 17046048 50 4 2 NA 3 0.07
## 938 17053896 45 5 2 NA 2 0.12
## 939 17768467 89 10 2 NA 3 0.18
## 940 17900978 30 7 1 NA 2 0.12
## 941 17929049 147 4 2 NA 2 0.11
## 942 17929054 252 3 2 NA 4 0.12
## 943 18484277 110 21 1 NA 4 0.37
## 944 20019928 168 7 1 NA 2 0.14
## 945 20426982 69 4 1 NA 2 0.08
## 946 20581173 63 3 2 NA 3 0.09
## 947 20806898 473 5 NA NA 2 0.10
## 948 21069176 60 3 1 NA 2 0.09
## 949 22627321 70 5 4 NA 4 0.11
## 950 23097015 39 5 1 NA 1 0.11
## 951 23403996 364 8 2 NA 3 0.18
## 952 23951500 110 4 1 NA 2 0.09
## 953 23952759 146 3 2 NA 3 0.09
## 954 23999596 96 3 2 NA 2 0.09
## 955 24763374 145 5 1 NA 2 0.12
## 956 24763494 145 3 1 NA 2 0.08
## 957 24950322 613 6 3 NA 4 0.15
## 958 25183623 100 5 1 NA 3 0.12
## 959 25184205 100 3 1 NA 3 0.16
## 960 26791029 630 5 4 NA 6 0.13
## 961 27513236 80 6 2 NA 4 0.15
## 962 29049813 141 4 1 NA 2 0.10
## 963 29295230 89 5 2 NA 2 0.13
## 964 29860691 165 3 2 NA 4 0.10
## 965 30413459 100 3 1 NA 2 0.08
## 966 30578632 307 3 5 NA 6 0.09
## 967 31726026 471 3 2 NA 5 0.09
## 968 32223363 151 3 2 NA 3 0.11
## 969 32292005 118 3 2 NA 3 0.09
## 970 32534020 120 3 1 NA 2 0.09
## 971 32815398 120 3 1 NA 2 0.09
## 972 32906878 789 3 3 NA 5 0.12
## 973 34052336 250 3 2 NA 3 0.10
## 974 35048026 75 3 1 NA 1 0.11
## 975 35077950 106 3 1 NA 2 0.10
## 976 35469684 102 3 1 NA 2 0.10
## 977 35483332 347 3 2 NA 5 0.11
## 978 35647924 68 3 1 NA 2 0.11
## 979 36080117 85 3 1 NA 1 0.10
## 980 36244182 63 3 1 NA 2 2.25
## 981 36315855 83 3 1 NA 2 0.11
## 982 36747812 260 3 1 NA 2 0.10
## 983 36855460 96 3 1 NA 2 0.12
## 984 36857064 96 3 1 NA 2 0.12
## 985 37757787 110 3 1 NA 2 0.12
## 986 37788787 82 3 1 NA 2 0.13
## 987 37984003 90 3 1 NA 1 0.11
## 988 38105126 132 3 1 NA 2 0.13
## 989 38935611 49 3 1 NA 1 0.22
## 990 38951604 545 3 2 NA 8 0.12
## 991 38986386 217 3 1 NA 2 0.12
## 992 39104189 61 3 NA NA 1 0.12
## 993 39119453 205 3 1 NA 4 0.13
## 994 39488323 60 3 1 NA 3 0.15
## 995 39589304 232 3 3 NA 3 0.12
## 996 39603119 150 3 1 NA 2 0.13
## 997 39641124 179 3 1 NA 2 0.17
## 998 39657837 180 3 2 NA 4 0.12
## 999 39689162 200 3 1 NA 2 0.12
## 1000 40456301 269 3 8 NA 8 0.12
## 1001 40457664 198 3 2 NA 6 0.13
## 1002 40663631 30 3 1 NA 1 0.12
## 1003 40681844 162 3 1 NA 2 0.22
## 1004 40712903 65 3 1 NA 2 0.12
## 1005 40766379 134 3 1 NA 2 0.23
## 1006 40816592 55 3 1 NA 1 0.13
## 1007 41033173 269 3 8 NA 8 0.12
## 1008 41112238 49 3 2 NA 2 0.13
## 1009 41323209 49 3 1 NA 1 0.13
## 1010 41536506 25 3 1 NA 2 0.13
## 1011 42720595 137 3 3 NA 5 0.23
## 1012 43354914 140 3 1 NA 3 0.16
## 1013 45131086 132 3 2 NA 2 0.22
## 1014 46385269 199 3 2 NA 4 0.28
## 1015 46423926 206 3 1 NA 3 0.25
## 1016 46446227 83 3 1 NA 2 0.26
## 1017 46491972 170 3 1 NA 4 0.28
## 1018 47912530 120 3 NA NA 2 1.02
## 1019 47927882 258 3 NA NA 2 1.17
## 1020 48313505 38 3 1 NA 2 0.36
## 1021 49863259 177 3 1 NA 2 0.43
## 1022 50294480 42 3 1 NA 1 0.49
## 1023 51122424 559 3 1 NA 2 2.73
## 1024 51217722 230 3 2 NA 3 0.63
## 1025 51613814 112 3 1 NA 2 1.08
## 1026 51834127 58 3 1 NA 2 0.79
## 1027 51880948 160 3 1 NA 3 0.87
## 1028 52525651 96 3 2 NA 4 1.15
## 1029 324945 49 14 1 NA 1 0.12
## 1030 330089 59 10 1 NA 1 0.10
## 1031 1941719 119 77 1 NA 4 0.81
## 1032 3034137 88 9 1 NA 1 0.10
## 1033 3075620 110 7 1 NA 1 0.08
## 1034 3667894 69 2 1 NA 1 0.06
## 1035 4926170 45 4 1 NA 3 0.10
## 1036 6603464 135 9 1 NA 2 0.12
## 1037 6824319 233 9 4 NA 6 0.12
## 1038 6891630 59 4 1 NA 1 0.06
## 1039 7666349 188 7 2 NA 2 0.10
## 1040 7769781 584 29 2 NA 1 0.38
## 1041 8061522 400 21 3 NA 6 0.28
## 1042 8343880 33 6 1 NA 1 0.09
## 1043 8345921 36 8 1 NA 1 0.11
## 1044 8508225 250 32 2 NA 3 0.43
## 1045 9054941 103 2 2 NA 2 0.06
## 1046 9055103 79 26 1 NA 2 0.35
## 1047 9075438 80 9 1 NA 2 0.12
## 1048 9268680 145 15 7 NA 7 0.21
## 1049 9281075 50 29 1 NA 1 0.39
## 1050 9555530 41 23 1 NA 1 0.32
## 1051 9683612 29 13 4 NA 1 0.18
## 1052 9866970 38 13 1 NA 1 0.18
## 1053 10021610 24 33 16 NA 16 0.46
## 1054 10040456 24 7 16 NA 16 0.11
## 1055 10126030 130 6 4 NA 4 0.12
## 1056 10626378 78 14 1 NA 2 0.20
## 1057 11723491 189 9 4 NA 5 0.13
## 1058 12347038 29 67 1 NA 1 0.98
## 1059 12434512 65 5 1 NA 1 0.07
## 1060 12556334 100 2 1 NA 3 0.11
## 1061 12975736 59 2 1 NA 1 0.07
## 1062 13132703 73 16 1 NA 2 0.24
## 1063 13150852 73 12 1 NA 2 0.20
## 1064 13183241 150 3 2 NA 3 0.05
## 1065 13226950 50 3 2 NA 2 0.05
## 1066 13241591 65 4 1 NA 1 0.09
## 1067 13559548 42 8 2 NA 2 0.12
## 1068 13809823 136 19 1 NA 2 0.31
## 1069 14530157 89 9 1 NA 2 0.14
## 1070 14682068 88 22 1 NA 2 0.34
## 1071 15589669 210 4 5 NA 6 0.07
## 1072 15773382 65 4 1 NA 2 0.07
## 1073 15775439 38 2 1 NA 1 0.08
## 1074 15796599 256 2 2 NA 3 0.07
## 1075 16177101 24 89 16 NA 16 1.44
## 1076 16213115 225 18 10 NA 10 0.30
## 1077 16524551 27 11 10 NA 10 0.18
## 1078 16750061 127 8 1 NA 2 0.14
## 1079 17015281 50 4 1 NA 3 0.07
## 1080 17641382 115 5 1 NA 1 0.12
## 1081 17805144 19 9 1 NA 3 0.17
## 1082 18086207 149 9 4 NA 6 0.16
## 1083 18203227 75 10 1 NA 1 0.18
## 1084 18513260 40 2 1 NA 2 0.07
## 1085 18674998 145 7 1 NA 2 0.13
## 1086 18759060 120 11 1 NA 2 0.20
## 1087 18939913 40 11 1 NA 1 0.20
## 1088 19184501 300 10 2 NA 3 0.20
## 1089 19231371 130 2 1 NA 3 0.29
## 1090 19849029 320 2 3 NA 6 0.41
## 1091 20016671 127 3 2 NA 3 0.06
## 1092 20065234 145 4 2 NA 4 0.08
## 1093 20803693 126 3 1 NA 2 0.07
## 1094 21402272 138 2 2 NA 3 0.06
## 1095 21722898 39 2 1 NA 1 0.07
## 1096 21791154 230 2 1 NA 2 0.06
## 1097 21888290 136 25 1 NA 2 0.51
## 1098 21916263 49 3 1 NA 1 0.07
## 1099 22376153 49 2 1 NA 1 0.07
## 1100 22395492 49 2 1 NA 1 0.06
## 1101 22561172 145 5 1 NA 2 0.11
## 1102 22594189 126 4 1 NA 2 0.08
## 1103 23063409 195 2 1 NA 2 0.25
## 1104 23084195 431 2 3 NA 6 0.06
## 1105 23329869 164 3 1 NA 16 0.08
## 1106 23952436 173 7 2 NA 4 0.17
## 1107 23952623 170 3 2 NA 4 0.08
## 1108 23952884 146 3 2 NA 3 0.07
## 1109 24000355 96 5 1 NA 2 0.11
## 1110 24000938 96 10 1 NA 2 0.23
## 1111 24001023 253 4 3 NA 6 0.10
## 1112 24170288 85 3 1 NA 2 0.07
## 1113 24420175 64 6 1 NA 1 0.13
## 1114 24447655 214 3 1 NA 2 0.08
## 1115 24741587 145 6 1 NA 2 0.14
## 1116 24763572 145 2 1 NA 2 0.07
## 1117 24765067 130 2 2 NA 2 0.08
## 1118 24821628 55 2 2 NA 3 0.07
## 1119 25385698 169 2 1 NA 2 0.07
## 1120 25505227 30 5 1 NA 2 0.12
## 1121 25760233 150 4 1 NA 3 0.10
## 1122 25985995 345 2 2 NA 4 0.06
## 1123 26849028 148 6 1 NA 2 0.14
## 1124 27003693 213 2 2 NA 4 0.08
## 1125 27581596 80 2 1 NA 2 0.06
## 1126 28198324 180 2 1 NA 2 0.06
## 1127 28729521 144 2 1 NA 2 0.07
## 1128 28772425 69 2 1 NA 1 0.07
## 1129 28944791 95 7 1 NA 2 0.18
## 1130 28998191 56 2 1 NA 1 0.07
## 1131 29319686 22 2 10 NA 10 0.08
## 1132 29320487 25 2 10 NA 10 0.06
## 1133 29355663 49 2 1 NA 1 0.06
## 1134 29525240 443 2 1 NA 2 0.06
## 1135 29665981 158 3 2 NA 4 0.08
## 1136 30165301 189 2 2 NA 4 0.51
## 1137 30494592 39 2 1 NA 1 0.07
## 1138 30783602 49 2 1 NA 1 0.07
## 1139 30922260 55 4 1 NA 1 0.11
## 1140 30966211 59 2 1 NA 1 0.06
## 1141 31094939 90 2 1 NA 4 0.07
## 1142 31214273 64 2 1 NA 2 0.06
## 1143 31295956 244 2 1 NA 2 0.06
## 1144 31364014 157 2 2 NA 4 0.11
## 1145 31424549 170 2 1 NA 2 0.17
## 1146 32003564 185 2 2 NA 4 0.06
## 1147 32171204 69 2 1 NA 1 0.14
## 1148 32194580 138 2 1 NA 2 0.07
## 1149 32198860 151 2 2 NA 4 0.06
## 1150 32528971 124 2 1 NA 2 0.07
## 1151 32533152 150 2 2 NA 4 0.07
## 1152 32621960 286 2 2 NA 4 0.06
## 1153 32730296 146 2 2 NA 4 0.07
## 1154 32777778 69 2 1 NA 1 0.07
## 1155 32818879 41 2 1 NA 1 0.11
## 1156 32821167 470 2 2 NA 5 0.06
## 1157 32821771 41 2 1 NA 1 0.06
## 1158 32874731 41 2 1 NA 1 0.06
## 1159 33722089 59 2 1 NA 1 0.06
## 1160 33953077 189 2 2 NA 4 0.09
## 1161 34076777 59 2 1 NA 1 0.07
## 1162 34082010 39 2 1 NA 1 0.07
## 1163 34352644 158 2 2 NA 3 0.10
## 1164 34582881 60 2 1 NA 2 0.06
## 1165 34943409 88 2 1 NA 2 0.08
## 1166 35048987 50 2 1 NA 1 0.07
## 1167 35144181 50 2 1 NA 1 0.08
## 1168 35336070 36 2 1 NA 1 0.07
## 1169 35483354 612 2 3 NA 6 0.07
## 1170 35508758 59 2 1 NA 1 0.07
## 1171 36325967 130 2 4 NA 4 0.08
## 1172 36456243 27 2 1 NA 1 0.08
## 1173 36855972 124 2 1 NA 2 0.47
## 1174 36857645 120 2 1 NA 2 0.11
## 1175 36989732 50 2 1 NA 1 0.07
## 1176 37169326 1000 2 4 NA 8 0.07
## 1177 37334803 360 2 3 NA 6 0.07
## 1178 37435377 69 2 1 NA 1 0.07
## 1179 37579558 213 2 1 NA 4 0.09
## 1180 37619286 56 2 4 NA 2 0.07
## 1181 37721714 179 2 1 NA 2 0.07
## 1182 37790507 136 2 2 NA 4 0.09
## 1183 37984524 90 2 1 NA 1 0.17
## 1184 38049336 59 2 1 NA 1 0.07
## 1185 38496138 96 2 1 NA 2 0.09
## 1186 38648139 75 2 1 NA 2 0.08
## 1187 38681479 117 2 1 NA 2 0.27
## 1188 38682873 165 2 2 NA 4 0.10
## 1189 39014610 261 2 2 NA 3 0.16
## 1190 39062013 86 2 1 NA 2 0.07
## 1191 39158146 65 2 2 NA 1 0.08
## 1192 39218665 119 2 NA NA 1 0.08
## 1193 39244281 46 2 1 NA 1 0.08
## 1194 39281565 81 2 1 NA 3 0.11
## 1195 39380253 49 2 1 NA 1 0.08
## 1196 39488084 49 2 1 NA 1 0.08
## 1197 39641470 194 2 1 NA 2 1.22
## 1198 39692652 68 2 1 NA 2 0.08
## 1199 39731410 172 2 2 NA 4 0.08
## 1200 40120214 157 2 1 NA 2 0.09
## 1201 40202857 40 2 1 NA 2 0.08
## 1202 40223018 39 2 1 NA 1 0.08
## 1203 40226189 59 2 1 NA 1 0.08
## 1204 40433757 150 2 3 NA 7 0.09
## 1205 40457299 59 2 NA NA 1 0.08
## 1206 40516462 68 2 1 NA 2 0.08
## 1207 40544662 200 2 4 NA 9 0.08
## 1208 40736423 155 2 1 NA 2 0.08
## 1209 40736566 155 2 1 NA 2 0.09
## 1210 40745871 228 2 1 NA 3 0.08
## 1211 40809447 155 2 1 NA 2 0.08
## 1212 40809878 154 2 1 NA 2 0.15
## 1213 40875632 201 2 1 NA 2 2.00
## 1214 40904925 101 2 4 NA 4 0.08
## 1215 40921448 228 2 1 NA 3 0.08
## 1216 40925829 198 2 2 NA 2 0.08
## 1217 40974363 159 2 1 NA 1 0.09
## 1218 41019742 163 2 NA NA 2 0.08
## 1219 41070234 172 2 1 NA 2 0.09
## 1220 41305105 106 2 4 NA 4 0.09
## 1221 41326546 246 2 10 NA 10 0.09
## 1222 41439350 221 2 1 NA 1 0.09
## 1223 41439736 218 2 2 NA 2 0.63
## 1224 41450369 140 2 1 NA 2 0.08
## 1225 41460941 274 2 1 NA 2 0.35
## 1226 41916277 151 2 NA NA 2 0.10
## 1227 41926070 82 2 1 NA 1 2.00
## 1228 42829911 60 2 2 NA 2 0.11
## 1229 43007892 137 2 1 NA 2 0.11
## 1230 43174323 636 2 3 NA 4 0.13
## 1231 43354292 140 2 1 NA 3 0.11
## 1232 43358921 160 2 1 NA 3 0.11
## 1233 43359426 140 2 1 NA 3 0.10
## 1234 43493044 140 2 1 NA 3 0.11
## 1235 43598832 185 2 1 NA 4 0.11
## 1236 43922476 270 2 2 NA 3 0.17
## 1237 43934914 118 2 1 NA 3 0.11
## 1238 44569176 149 2 1 NA 3 0.17
## 1239 45277806 86 2 1 NA 2 0.23
## 1240 45583200 195 2 2 NA 2 0.17
## 1241 45662807 100 2 1 NA 2 0.16
## 1242 45779393 368 2 1 NA 2 1.40
## 1243 45839899 120 2 3 NA 5 0.28
## 1244 46361416 337 2 3 NA 6 0.15
## 1245 46382569 125 2 1 NA 2 0.16
## 1246 46383256 156 2 2 NA 3 1.62
## 1247 47790035 0 2 NA NA 0 0.25
## 1248 47912268 110 2 NA NA 2 0.28
## 1249 47912992 143 2 2 NA 2 0.22
## 1250 48176330 214 2 1 NA 2 2.00
## 1251 48246660 88 2 2 NA 1 0.37
## 1252 48265411 127 2 2 NA 2 0.26
## 1253 48617963 59 2 1 NA 1 0.23
## 1254 48687013 200 2 2 NA 4 0.21
## 1255 48688813 49 2 1 NA 1 0.24
## 1256 48725792 583 2 1 NA 2 2.00
## 1257 48816051 104 2 6 NA 6 0.23
## 1258 49048569 144 2 1 NA 1 0.25
## 1259 49063480 185 2 2 NA 5 0.23
## 1260 49577387 48 2 2 NA 3 1.58
## 1261 49661471 110 2 2 NA 4 0.73
## 1262 49661822 94 2 4 NA 7 1.09
## 1263 50278378 210 2 1 NA 2 0.87
## 1264 50333798 74 2 1 NA 1 1.15
## 1265 50404949 150 2 1 NA 4 0.36
## 1266 50490653 80 2 1 NA 2 1.58
## 1267 50708702 155 2 1 NA 2 0.74
## 1268 50822918 155 2 1 NA 2 0.49
## 1269 51475066 145 2 1 NA 2 1.05
## 1270 51661224 154 2 1 NA 2 0.57
## 1271 51863280 180 2 1 NA 4 1.28
## 1272 51896903 45 2 1 NA 2 0.58
## 1273 52018734 259 2 2 NA 5 1.87
## 1274 53175850 141 2 1 NA 3 2.00
## 1275 747813 119 72 1 NA 4 0.65
## 1276 765579 69 2 1 NA 1 0.02
## 1277 833289 150 2 2 NA 2 0.03
## 1278 1508829 59 9 1 NA 1 0.10
## 1279 2547370 110 2 4 NA 4 0.05
## 1280 3179080 37 18 12 NA 12 0.20
## 1281 3981252 88 2 1 NA 1 0.02
## 1282 4087935 89 14 1 NA 2 0.16
## 1283 4441346 106 5 1 NA 3 0.06
## 1284 4969777 98 6 1 NA 2 0.08
## 1285 5446857 228 3 1 NA 3 0.06
## 1286 6253881 108 1 1 NA 2 0.05
## 1287 6261313 66 10 1 NA 1 0.13
## 1288 6620261 100 3 1 NA 2 0.05
## 1289 7472739 75 20 1 NA 1 0.26
## 1290 7632462 88 12 1 NA 2 0.15
## 1291 7766300 55 1 1 NA 2 0.03
## 1292 7905972 88 5 2 NA 3 0.07
## 1293 8111607 130 1 1 NA 3 0.25
## 1294 8113569 90 3 1 NA 1 0.05
## 1295 8113821 100 4 1 NA 3 0.06
## 1296 8113893 100 6 1 NA 3 0.09
## 1297 8196359 89 3 1 NA 1 0.05
## 1298 8914905 441 1 7 NA 7 0.03
## 1299 9637478 79 5 1 NA 2 0.08
## 1300 9738917 59 4 2 NA 2 0.06
## 1301 9739084 129 1 6 NA 6 0.04
## 1302 9866651 38 13 1 NA 1 0.18
## 1303 9866904 38 26 1 NA 1 0.39
## 1304 9866985 101 4 2 NA 2 0.09
## 1305 10020525 24 15 16 NA 16 0.21
## 1306 10427701 69 2 1 NA 1 0.04
## 1307 10466406 245 6 2 NA 6 0.08
## 1308 11262375 38 5 8 NA 1 0.07
## 1309 11760026 56 2 1 NA 2 0.04
## 1310 12365867 29 9 16 NA 16 0.14
## 1311 12366660 29 4 1 NA 1 0.06
## 1312 12367042 28 4 1 NA 1 0.07
## 1313 12752051 37 9 1 NA 1 0.13
## 1314 12940550 88 9 1 NA 2 0.14
## 1315 13157253 49 3 1 NA 1 0.08
## 1316 13361848 54 2 1 NA 1 0.04
## 1317 13692568 65 5 3 NA 4 0.09
## 1318 13929091 20 6 1 NA 3 0.09
## 1319 13952292 140 4 1 NA 3 0.08
## 1320 13966783 59 2 1 NA 1 0.03
## 1321 13967760 180 1 1 NA 3 0.13
## 1322 14583967 46 4 1 NA 1 0.06
## 1323 14700365 50 2 1 NA 2 0.05
## 1324 14701395 154 2 4 NA 4 0.04
## 1325 15367409 39 4 1 NA 1 0.06
## 1326 15711027 243 1 2 NA 4 0.28
## 1327 15919162 355 1 1 NA 2 0.09
## 1328 15977143 311 2 2 NA 4 0.03
## 1329 16110969 279 10 10 NA 10 0.17
## 1330 16149684 200 1 2 NA 4 0.04
## 1331 16503238 40 1 1 NA 2 0.03
## 1332 16522880 27 15 12 NA 12 0.25
## 1333 16985394 560 2 16 NA 16 0.04
## 1334 16988242 37 3 2 NA 1 0.05
## 1335 17110437 245 1 2 NA 6 0.04
## 1336 17414394 49 16 NA NA 16 0.29
## 1337 17483368 59 2 1 NA 1 0.03
## 1338 17766467 59 2 1 NA 1 0.03
## 1339 17884419 63 7 1 NA 2 0.12
## 1340 18081902 473 9 NA NA 2 0.17
## 1341 18166182 399 4 2 NA 6 0.07
## 1342 18286281 49 2 1 NA 1 0.04
## 1343 18513959 51 1 1 NA 1 0.03
## 1344 18585234 999 7 1 NA 2 0.13
## 1345 19056267 59 2 1 NA 1 0.05
## 1346 19184001 500 3 3 NA 6 0.06
## 1347 19184003 400 1 1 NA 4 0.04
## 1348 19648215 239 6 1 NA 3 0.12
## 1349 19774490 46 2 1 NA 1 0.04
## 1350 19895150 461 4 3 NA 7 0.07
## 1351 20003123 41 1 1 NA 1 0.06
## 1352 20098734 320 1 3 NA 6 0.13
## 1353 20181595 27 3 12 NA 12 0.06
## 1354 20181917 27 1 12 NA 12 0.04
## 1355 20181944 27 1 10 NA 10 0.03
## 1356 20539655 37 21 1 NA 1 0.40
## 1357 20625726 49 1 1 NA 1 0.04
## 1358 20640481 61 4 1 NA 2 0.08
## 1359 20865016 50 41 2 NA 2 0.79
## 1360 21015410 46 1 1 NA 1 0.03
## 1361 21214988 150 1 1 NA 1 0.04
## 1362 21462227 1284 2 4 NA 8 0.04
## 1363 21553387 60 2 2 NA 2 0.04
## 1364 21793363 39 1 1 NA 1 0.04
## 1365 21913235 49 1 1 NA 1 0.04
## 1366 22090557 188 1 2 NA 2 0.03
## 1367 22092656 378 2 2 NA 4 0.05
## 1368 22267147 33 2 1 NA 1 0.05
## 1369 22345943 49 2 1 NA 1 0.04
## 1370 22590845 59 2 1 NA 1 0.04
## 1371 22684718 80 1 1 NA 2 0.04
## 1372 22726244 65 2 1 NA 1 0.05
## 1373 22912035 538 2 1 NA 2 0.04
## 1374 22912163 1356 1 3 NA 5 0.08
## 1375 23211763 50 1 1 NA 2 0.03
## 1376 23279931 100 2 1 NA 2 0.05
## 1377 23361035 64 1 1 NA 1 0.04
## 1378 23658989 420 1 2 NA 4 0.03
## 1379 23863811 140 2 1 NA 2 0.05
## 1380 23999281 96 1 2 NA 2 0.08
## 1381 24000970 253 1 3 NA 6 0.04
## 1382 24003066 253 2 3 NA 6 0.05
## 1383 24023173 75 2 1 NA 2 0.05
## 1384 24241421 220 1 3 NA 7 0.08
## 1385 24254508 205 3 2 NA 5 0.08
## 1386 24367364 88 2 1 NA 2 0.05
## 1387 24403090 60 3 1 NA 1 0.07
## 1388 24609199 235 2 1 NA 2 0.05
## 1389 24618190 485 1 4 NA 8 0.08
## 1390 24635669 69 1 1 NA 1 0.06
## 1391 24636266 69 2 1 NA 1 0.05
## 1392 24704584 185 7 2 NA 4 0.16
## 1393 24765141 130 1 2 NA 2 0.04
## 1394 25087117 59 2 1 NA 1 0.05
## 1395 25402824 43 5 2 NA 2 0.12
## 1396 25516668 80 9 1 NA 2 0.21
## 1397 25711980 378 1 2 NA 4 0.03
## 1398 25860399 55 1 1 NA 1 0.04
## 1399 25926356 314 1 1 NA 2 0.03
## 1400 26183286 46 1 1 NA 2 0.05
## 1401 26290281 38 2 1 NA 1 0.05
## 1402 26722862 39 2 1 NA 1 0.05
## 1403 26791337 119 4 1 NA 4 0.10
## 1404 26853356 110 1 2 NA 3 0.04
## 1405 27173843 59 1 1 NA 1 0.03
## 1406 28115820 41 1 1 NA 2 0.04
## 1407 28116308 50 2 1 NA 3 0.05
## 1408 28729429 198 1 2 NA 4 0.04
## 1409 28793889 55 1 2 NA 3 0.04
## 1410 28874135 80 9 1 NA 3 0.23
## 1411 28992199 120 1 1 NA 2 1.00
## 1412 28998095 105 1 1 NA 2 0.04
## 1413 28998181 50 1 1 NA 1 0.04
## 1414 29068591 189 1 6 NA 6 0.03
## 1415 29319567 22 1 10 NA 10 0.03
## 1416 29325647 49 1 1 NA 1 0.05
## 1417 29343018 149 1 4 NA 4 0.04
## 1418 29525299 260 4 1 NA 1 0.11
## 1419 29525417 179 1 3 NA 5 0.03
## 1420 29526074 1126 1 4 NA 4 0.04
## 1421 29548114 770 1 1 NA 2 0.03
## 1422 29705550 144 1 1 NA 2 0.05
## 1423 29745033 141 1 1 NA 2 0.03
## 1424 29947936 49 1 1 NA 1 0.04
## 1425 29969148 131 1 1 NA 2 0.03
## 1426 29996505 39 1 1 NA 1 0.03
## 1427 30058572 49 1 1 NA 1 0.03
## 1428 30189205 144 1 2 NA 4 0.04
## 1429 30238429 130 2 1 NA 2 0.05
## 1430 30354713 122 1 1 NA 2 0.25
## 1431 30357489 124 1 1 NA 2 0.34
## 1432 30363503 50 1 1 NA 1 0.03
## 1433 30385269 729 1 3 NA 5 0.04
## 1434 30410480 79 1 1 NA 1 0.03
## 1435 30434753 59 1 1 NA 1 0.03
## 1436 30453430 69 1 1 NA 1 0.03
## 1437 30520209 59 1 1 NA 1 0.03
## 1438 30543386 46 1 1 NA 1 0.04
## 1439 30570119 55 1 1 NA 1 0.04
## 1440 30776617 59 1 1 NA 1 0.04
## 1441 30778537 36 1 1 NA 1 0.03
## 1442 30878734 39 2 1 NA 1 0.05
## 1443 31081282 45 1 1 NA 1 0.04
## 1444 31129953 140 1 1 NA 2 0.05
## 1445 31275547 59 1 1 NA 1 0.07
## 1446 31293668 88 1 1 NA 2 0.03
## 1447 31294602 48 1 1 NA 1 0.03
## 1448 31357872 134 1 2 NA 4 0.03
## 1449 31423642 460 1 2 NA 5 0.04
## 1450 31580959 679 1 3 NA 6 0.03
## 1451 31657383 100 1 1 NA 2 0.03
## 1452 32203558 51 1 1 NA 2 0.04
## 1453 32303894 47 1 1 NA 1 0.03
## 1454 32309635 200 1 2 NA 4 0.04
## 1455 32318162 191 1 2 NA 4 0.03
## 1456 32351804 78 1 1 NA 1 0.04
## 1457 32452018 151 1 1 NA 2 0.03
## 1458 32478810 137 1 1 NA 2 0.14
## 1459 32502391 140 1 1 NA 2 0.13
## 1460 32533341 695 1 4 NA 6 0.03
## 1461 32604498 55 1 2 NA 2 0.03
## 1462 32729464 69 1 1 NA 1 0.03
## 1463 32729775 69 1 1 NA 1 0.12
## 1464 32777995 49 1 1 NA 1 0.03
## 1465 33003533 59 1 1 NA 1 0.04
## 1466 33060127 644 1 3 NA 6 0.03
## 1467 33085362 49 1 1 NA 1 0.04
## 1468 33621601 290 1 1 NA 3 0.86
## 1469 33678136 139 1 2 NA 5 0.03
## 1470 33693358 130 1 1 NA 2 0.04
## 1471 33836101 119 1 1 NA 1 0.03
## 1472 33885738 69 1 1 NA 1 0.03
## 1473 33981233 148 1 1 NA 2 0.07
## 1474 34030772 180 1 2 NA 2 0.04
## 1475 34237184 114 1 4 NA 4 0.03
## 1476 34243743 180 1 1 NA 1 0.03
## 1477 34288316 49 1 1 NA 1 0.03
## 1478 34346401 49 1 1 NA 1 0.03
## 1479 34347420 101 1 1 NA 2 1.00
## 1480 34654117 49 1 1 NA 1 0.04
## 1481 34909012 39 1 1 NA 1 0.03
## 1482 34918900 30 1 1 NA 2 0.03
## 1483 34949534 160 1 1 NA 2 0.04
## 1484 34951369 250 1 4 NA 3 1.00
## 1485 34964444 39 1 1 NA 1 0.03
## 1486 35026116 59 1 1 NA 1 0.03
## 1487 35185817 350 1 2 NA 4 0.08
## 1488 35300552 37 1 1 NA 1 0.03
## 1489 35300740 69 1 1 NA 1 0.19
## 1490 35335972 36 1 1 NA 1 0.04
## 1491 35396427 32 1 1 NA 1 0.03
## 1492 35397761 33 1 1 NA 1 0.04
## 1493 35483317 164 1 1 NA 2 0.03
## 1494 35483358 375 1 1 NA 2 0.03
## 1495 35917914 620 1 3 NA 6 0.04
## 1496 35949995 65 1 1 NA 2 0.03
## 1497 36008984 465 1 3 NA 5 0.28
## 1498 36009935 313 1 1 NA 3 0.04
## 1499 36129690 123 1 1 NA 2 0.04
## 1500 36156663 610 1 4 NA 7 0.04
## 1501 36167207 59 1 1 NA 1 0.06
## 1502 36252767 620 1 4 NA 6 0.03
## 1503 36285346 470 1 3 NA 5 0.27
## 1504 36354920 69 1 1 NA 1 0.03
## 1505 36852543 431 1 3 NA 6 0.04
## 1506 36860135 122 1 1 NA 2 0.29
## 1507 37141391 40 1 1 NA 2 0.03
## 1508 37257081 1000 1 4 NA 8 0.03
## 1509 37313724 475 1 2 NA 5 0.20
## 1510 37542721 110 1 1 NA 2 0.04
## 1511 37545814 48 1 1 NA 1 0.04
## 1512 37554967 26 1 6 NA 6 0.03
## 1513 37576690 26 1 4 NA 4 0.03
## 1514 37578949 150 1 1 NA 2 0.04
## 1515 37587133 360 1 3 NA 6 0.03
## 1516 37713213 244 1 1 NA 1 0.04
## 1517 37789401 94 1 1 NA 2 0.17
## 1518 37812795 147 1 1 NA 2 0.04
## 1519 37924392 120 1 1 NA 2 0.04
## 1520 37945388 69 1 1 NA 1 0.04
## 1521 37947662 60 1 NA NA 2 0.05
## 1522 37980033 140 1 2 NA 2 0.10
## 1523 37981411 140 1 2 NA 2 0.04
## 1524 38005247 39 1 1 NA 1 0.04
## 1525 38035489 49 1 1 NA 1 0.04
## 1526 38056679 40 1 1 NA 2 1.00
## 1527 38136195 135 1 1 NA 2 0.04
## 1528 38166428 115 1 1 NA 2 0.06
## 1529 38250487 45 1 1 NA 1 0.67
## 1530 38305984 203 1 1 NA 2 0.04
## 1531 38388737 149 1 1 NA 1 0.08
## 1532 38523541 144 1 6 NA 6 0.04
## 1533 38530815 59 1 1 NA 1 0.04
## 1534 38632350 79 1 1 NA 2 0.04
## 1535 38639800 69 1 1 NA 1 0.17
## 1536 38692545 65 1 1 NA 2 0.05
## 1537 38788624 100 1 1 NA 2 0.04
## 1538 38910295 49 1 1 NA 1 0.04
## Property_Type Room_Type Rating
## 1 Room in boutique hotel Private room 4.81
## 2 Boat Entire home/apt 4.94
## 3 Room in boutique hotel Private room 4.74
## 4 Entire condominium (condo) Entire home/apt 4.78
## 5 Boat Entire home/apt 4.49
## 6 Room in hotel <NA> 4.68
## 7 Room in boutique hotel Private room 4.81
## 8 Entire serviced apartment Entire home/apt 4.81
## 9 Entire rental unit Entire home/apt 4.84
## 10 Entire serviced apartment Entire home/apt 4.72
## 11 Room in bed and breakfast <NA> 4.67
## 12 Entire rental unit Entire home/apt 4.72
## 13 Entire rental unit Entire home/apt 4.74
## 14 Room in boutique hotel Private room 4.73
## 15 Private room in residential home Private room 4.90
## 16 Entire rental unit Entire home/apt 4.93
## 17 Room in boutique hotel Private room 4.68
## 18 Private room in rental unit Private room 4.84
## 19 Room in boutique hotel Private room 4.77
## 20 Room in boutique hotel Private room 4.67
## 21 Private room in residential home Private room 4.83
## 22 Entire condominium (condo) Entire home/apt 4.92
## 23 Entire rental unit Entire home/apt 4.85
## 24 Entire condominium (condo) Entire home/apt 4.63
## 25 Entire rental unit Entire home/apt 4.69
## 26 Entire townhouse Entire home/apt 4.93
## 27 Room in boutique hotel Private room 4.92
## 28 Private room in rental unit Private room 4.74
## 29 Room in boutique hotel Private room 4.82
## 30 Room in boutique hotel Private room 4.77
## 31 Entire rental unit Entire home/apt 4.75
## 32 Private room in rental unit Private room 4.72
## 33 Private room in rental unit Private room 4.60
## 34 Private room in rental unit Private room 4.70
## 35 Entire rental unit Entire home/apt 4.91
## 36 Room in boutique hotel Private room 4.85
## 37 Private room in rental unit Private room 4.62
## 38 Entire rental unit Entire home/apt 4.84
## 39 Entire condominium (condo) Entire home/apt 4.65
## 40 Room in hotel Private room 4.68
## 41 Entire rental unit Entire home/apt 4.78
## 42 Room in boutique hotel Private room 4.80
## 43 Private room in residential home Private room 4.75
## 44 Entire rental unit Entire home/apt 4.73
## 45 Private room in residential home Private room 4.67
## 46 Entire rental unit Entire home/apt 4.69
## 47 Private room in residential home Private room 4.55
## 48 Entire rental unit Entire home/apt 4.87
## 49 Entire condominium (condo) Entire home/apt 4.91
## 50 Entire rental unit Entire home/apt 4.63
## 51 Room in boutique hotel Private room 4.65
## 52 Room in hostel <NA> 4.66
## 53 Entire rental unit Entire home/apt 4.73
## 54 Entire rental unit Entire home/apt 4.84
## 55 Entire serviced apartment Entire home/apt 4.72
## 56 Entire condominium (condo) Entire home/apt 4.81
## 57 Entire rental unit Entire home/apt 4.68
## 58 Private room in residential home Private room 4.91
## 59 Entire loft Entire home/apt 4.68
## 60 Entire condominium (condo) Entire home/apt 4.73
## 61 Entire condominium (condo) Entire home/apt 4.85
## 62 Entire condominium (condo) Entire home/apt 4.83
## 63 Entire rental unit Entire home/apt 4.69
## 64 Entire rental unit Entire home/apt 4.82
## 65 Entire rental unit Entire home/apt 4.59
## 66 Private room in rental unit Private room 4.21
## 67 Room in boutique hotel <NA> 4.26
## 68 Private room in residential home Private room 4.73
## 69 Entire condominium (condo) Entire home/apt 4.60
## 70 Entire rental unit Entire home/apt 4.73
## 71 Private room in residential home Private room 4.77
## 72 Private room in residential home Private room 4.47
## 73 Private room in rental unit Private room 4.77
## 74 Entire condominium (condo) Entire home/apt 4.77
## 75 Private room in residential home Private room 4.81
## 76 Private room Private room 4.59
## 77 Private room in residential home Private room 4.58
## 78 Entire condominium (condo) Entire home/apt 4.64
## 79 Entire guest suite Entire home/apt 4.89
## 80 Entire condominium (condo) Entire home/apt 4.81
## 81 Entire condominium (condo) Entire home/apt 4.86
## 82 Entire condominium (condo) Entire home/apt 4.77
## 83 Private room in rental unit Private room 4.74
## 84 Private room in rental unit Private room 4.86
## 85 Room in boutique hotel Private room 4.89
## 86 Entire serviced apartment Entire home/apt 4.89
## 87 Private room in townhouse Private room 4.33
## 88 Entire townhouse Entire home/apt 4.76
## 89 Private room in residential home Private room 4.45
## 90 Private room in rental unit Private room 4.83
## 91 Room in hostel <NA> 4.34
## 92 Entire rental unit Entire home/apt 4.87
## 93 Private room in condominium (condo) Private room 4.70
## 94 Entire guest suite Entire home/apt 4.74
## 95 Entire condominium (condo) Entire home/apt 4.64
## 96 Entire condominium (condo) Entire home/apt 4.75
## 97 Entire condominium (condo) Entire home/apt 4.96
## 98 Entire condominium (condo) Entire home/apt 4.83
## 99 Entire condominium (condo) Entire home/apt 4.94
## 100 Private room in rental unit Private room 4.75
## 101 Room in boutique hotel Private room 4.87
## 102 Private room in rental unit Private room 4.64
## 103 Private room in rental unit Private room 4.75
## 104 Private room in rental unit Private room 4.52
## 105 Shared room in rental unit Shared room 4.52
## 106 Entire condominium (condo) Entire home/apt 4.94
## 107 Private room in rental unit Private room 4.56
## 108 Entire condominium (condo) Entire home/apt 4.82
## 109 Entire rental unit Entire home/apt 4.84
## 110 Private room in rental unit Private room 4.77
## 111 Entire serviced apartment Entire home/apt 4.65
## 112 Private room in rental unit Private room 4.84
## 113 Entire rental unit Entire home/apt 4.53
## 114 Private room in rental unit Private room 4.87
## 115 Private room in condominium (condo) Private room 4.79
## 116 Private room in townhouse Private room 4.55
## 117 Private room in townhouse Private room 4.53
## 118 Entire rental unit Entire home/apt 4.51
## 119 Room in hostel <NA> 4.52
## 120 Entire condominium (condo) Entire home/apt 4.96
## 121 Private room in rental unit Private room 4.41
## 122 Entire condominium (condo) Entire home/apt 4.96
## 123 Entire condominium (condo) Entire home/apt 4.41
## 124 Entire condominium (condo) Entire home/apt 4.74
## 125 Entire residential home Entire home/apt 4.57
## 126 Private room in residential home Private room 4.80
## 127 Entire residential home Entire home/apt 4.60
## 128 Entire condominium (condo) Entire home/apt 4.52
## 129 Private room in rental unit Private room 4.44
## 130 Entire condominium (condo) Entire home/apt 4.87
## 131 Entire condominium (condo) Entire home/apt 4.78
## 132 Entire rental unit Entire home/apt 4.84
## 133 Private room in residential home Private room 4.84
## 134 Private room in rental unit Private room 4.79
## 135 Private room in residential home Private room 4.50
## 136 Entire condominium (condo) Entire home/apt 4.84
## 137 Entire condominium (condo) Entire home/apt 4.91
## 138 Tiny house Entire home/apt 4.91
## 139 Entire condominium (condo) Entire home/apt 4.79
## 140 Entire residential home Entire home/apt 4.71
## 141 Room in boutique hotel Private room 4.86
## 142 Entire townhouse Entire home/apt 4.73
## 143 Room in hotel <NA> 4.29
## 144 Entire rental unit Entire home/apt 4.89
## 145 Private room in residential home Private room 4.98
## 146 Private room in rental unit Private room 4.44
## 147 Private room in condominium (condo) Private room 4.84
## 148 Entire loft Entire home/apt 4.82
## 149 Room in boutique hotel <NA> 4.48
## 150 Entire condominium (condo) Entire home/apt 4.80
## 151 Shared room in hostel Shared room 4.39
## 152 Entire condominium (condo) Entire home/apt 4.80
## 153 Private room in residential home Private room 4.89
## 154 Private room in bungalow Private room 4.86
## 155 Private room in rental unit Private room 4.58
## 156 Room in hostel <NA> 4.39
## 157 Room in boutique hotel Private room 4.86
## 158 Entire condominium (condo) Entire home/apt 4.82
## 159 Tiny house Entire home/apt 4.97
## 160 Private room in residential home Private room 4.82
## 161 Room in hotel <NA> 4.56
## 162 Entire residential home Entire home/apt 4.40
## 163 Entire condominium (condo) Entire home/apt 4.72
## 164 Shared room in bed and breakfast Shared room 4.56
## 165 Private room in rental unit Private room 4.22
## 166 Entire rental unit Entire home/apt 4.69
## 167 Entire serviced apartment Entire home/apt 4.79
## 168 Entire condominium (condo) Entire home/apt 4.88
## 169 Private room in residential home Private room 4.83
## 170 Entire condominium (condo) Entire home/apt 4.45
## 171 Private room in condominium (condo) Private room 4.74
## 172 Entire rental unit Entire home/apt 4.73
## 173 Room in boutique hotel <NA> 4.33
## 174 Entire rental unit Entire home/apt 4.83
## 175 Entire rental unit Entire home/apt 4.82
## 176 Entire rental unit Entire home/apt 4.80
## 177 Entire rental unit Entire home/apt 4.80
## 178 Private room in rental unit Private room 4.56
## 179 Private room in rental unit Private room 4.56
## 180 Entire rental unit Entire home/apt 4.91
## 181 Entire rental unit Entire home/apt 4.87
## 182 Room in hostel <NA> 4.38
## 183 Private room in rental unit Private room 4.71
## 184 Private room in townhouse Private room 4.51
## 185 Private room in rental unit Private room 4.38
## 186 Private room in townhouse Private room 4.67
## 187 Room in boutique hotel Private room 4.65
## 188 Private room in residential home Private room 4.86
## 189 Entire rental unit Entire home/apt 4.35
## 190 Private room in rental unit Private room 4.70
## 191 Entire condominium (condo) Entire home/apt 4.70
## 192 Private room in residential home Private room 4.76
## 193 Shared room in hostel Shared room 4.52
## 194 Entire rental unit Entire home/apt 4.85
## 195 Private room in residential home Private room 4.58
## 196 Room in hotel Private room 4.48
## 197 Private room in residential home Private room 4.83
## 198 Private room in rental unit Private room 4.56
## 199 Private room in townhouse Private room 4.50
## 200 Private room in townhouse Private room 4.49
## 201 Entire serviced apartment Entire home/apt 4.88
## 202 Private room in townhouse Private room 4.39
## 203 Private room in condominium (condo) Private room 5.00
## 204 Shared room in hostel Shared room 4.41
## 205 Entire rental unit Entire home/apt 4.44
## 206 Private room in rental unit Private room 4.67
## 207 Entire serviced apartment Entire home/apt 4.19
## 208 Private room in rental unit Private room 4.81
## 209 Private room in rental unit Private room 4.45
## 210 Entire rental unit Entire home/apt 4.81
## 211 Entire rental unit Entire home/apt 4.77
## 212 Room in hotel <NA> 4.52
## 213 Private room in rental unit Private room 4.22
## 214 Private room in rental unit Private room 4.56
## 215 Private room in condominium (condo) Private room 4.73
## 216 Entire rental unit Entire home/apt 4.33
## 217 Entire rental unit Entire home/apt 4.70
## 218 Private room in condominium (condo) Private room 4.87
## 219 Private room in residential home Private room 4.78
## 220 Entire rental unit Entire home/apt 4.59
## 221 Room in boutique hotel <NA> 4.79
## 222 Private room in residential home Private room 5.00
## 223 Room in boutique hotel Private room 4.79
## 224 Entire serviced apartment Entire home/apt 4.82
## 225 Private room in condominium (condo) Private room 4.44
## 226 Shared room in hostel Shared room 4.18
## 227 Private room in condominium (condo) Private room 4.86
## 228 Private room in condominium (condo) Private room 5.00
## 229 Room in boutique hotel <NA> 4.57
## 230 Entire rental unit Entire home/apt 4.96
## 231 Private room in rental unit Private room 4.20
## 232 Private room in bungalow Private room 4.90
## 233 Private room in townhouse Private room 4.50
## 234 Entire serviced apartment Entire home/apt 4.93
## 235 Entire serviced apartment Entire home/apt 4.74
## 236 Private room in rental unit Private room 4.89
## 237 Private room in condominium (condo) Private room 4.82
## 238 Entire rental unit Entire home/apt 4.71
## 239 Private room in condominium (condo) Private room 4.75
## 240 Entire condominium (condo) Entire home/apt 4.60
## 241 Entire rental unit Entire home/apt 4.52
## 242 Boat Entire home/apt 4.74
## 243 Private room in villa Private room 4.76
## 244 Private room in rental unit Private room 4.63
## 245 Room in serviced apartment <NA> 4.55
## 246 Private room in rental unit Private room 4.48
## 247 Private room in condominium (condo) Private room 4.81
## 248 Private room in residential home Private room 4.96
## 249 Entire rental unit Entire home/apt 4.06
## 250 Private room in residential home Private room 4.44
## 251 Entire serviced apartment Entire home/apt 4.86
## 252 Private room in residential home Private room 4.97
## 253 Private room in rental unit Private room 4.54
## 254 Room in serviced apartment <NA> 4.45
## 255 Private room in residential home Private room 4.78
## 256 Private room in condominium (condo) Private room 4.80
## 257 Entire rental unit Entire home/apt 4.56
## 258 Private room in rental unit Private room 4.68
## 259 Entire serviced apartment Entire home/apt 4.92
## 260 Private room in condominium (condo) Private room 4.68
## 261 Room in boutique hotel Private room 4.76
## 262 Entire rental unit Entire home/apt 4.60
## 263 Private room in residential home Private room 4.58
## 264 Private room in residential home Private room 4.80
## 265 Private room in rental unit Private room 4.13
## 266 Entire rental unit Entire home/apt 4.73
## 267 Shared room in hostel Shared room 4.09
## 268 Shared room in bed and breakfast Shared room 4.09
## 269 Private room in residential home Private room 4.28
## 270 Room in boutique hotel Private room 4.81
## 271 Entire condominium (condo) Entire home/apt 4.70
## 272 Private room in loft Private room 4.63
## 273 Entire rental unit Entire home/apt 4.87
## 274 Entire serviced apartment Entire home/apt 4.69
## 275 Private room in residential home Private room 4.90
## 276 Entire rental unit Entire home/apt 4.71
## 277 Entire loft Entire home/apt 4.89
## 278 Entire rental unit Entire home/apt 4.85
## 279 Entire serviced apartment Entire home/apt 4.84
## 280 Entire serviced apartment Entire home/apt 4.80
## 281 Entire condominium (condo) Entire home/apt 4.43
## 282 Private room in rental unit Private room 4.70
## 283 Entire condominium (condo) Entire home/apt 4.50
## 284 Entire rental unit Entire home/apt 4.83
## 285 Entire rental unit Entire home/apt 4.78
## 286 Room in rental unit <NA> 4.13
## 287 Entire condominium (condo) Entire home/apt 4.48
## 288 Entire condominium (condo) Entire home/apt 4.87
## 289 Room in boutique hotel Private room 4.74
## 290 Room in boutique hotel Private room 4.43
## 291 Room in bed and breakfast <NA> 4.67
## 292 Entire rental unit Entire home/apt 4.61
## 293 Private room in serviced apartment Private room 4.82
## 294 Private room in residential home Private room 5.00
## 295 Entire serviced apartment Entire home/apt 4.72
## 296 Entire rental unit Entire home/apt 4.94
## 297 Entire serviced apartment Entire home/apt 4.97
## 298 Entire rental unit Entire home/apt 4.84
## 299 Private room in hostel Private room 4.36
## 300 Private room in rental unit Private room 4.77
## 301 Entire rental unit Entire home/apt 4.73
## 302 Entire rental unit Entire home/apt 4.95
## 303 Private room in townhouse Private room 4.39
## 304 Entire rental unit Entire home/apt 4.79
## 305 Entire rental unit Entire home/apt 4.75
## 306 Entire rental unit Entire home/apt 4.76
## 307 Shared room in bed and breakfast Shared room 4.93
## 308 Private room in rental unit Private room 4.87
## 309 Private room in condominium (condo) Private room 4.86
## 310 Private room in bungalow Private room 4.87
## 311 Private room in residential home Private room 4.60
## 312 Room in serviced apartment <NA> 4.90
## 313 Private room in rental unit Private room 4.54
## 314 Private room in condominium (condo) Private room 4.86
## 315 Room in boutique hotel Private room 4.83
## 316 Private room in residential home Private room 4.57
## 317 Entire rental unit Entire home/apt 4.38
## 318 Private room in residential home Private room 4.90
## 319 Entire rental unit Entire home/apt 4.24
## 320 Private room in loft Private room 4.86
## 321 Entire rental unit Entire home/apt 4.75
## 322 Entire residential home Entire home/apt 4.75
## 323 Entire condominium (condo) Entire home/apt 4.57
## 324 Private room in rental unit Private room 4.97
## 325 Entire rental unit Entire home/apt 4.69
## 326 Private room in rental unit Private room 4.65
## 327 Room in boutique hotel <NA> 4.95
## 328 Private room in loft Private room 4.95
## 329 Entire serviced apartment Entire home/apt 4.85
## 330 Entire serviced apartment Entire home/apt 4.80
## 331 Private room in residential home Private room 4.41
## 332 Entire rental unit Entire home/apt 4.85
## 333 Private room in condominium (condo) Private room 4.72
## 334 Private room in townhouse Private room 4.97
## 335 Room in hotel Private room 4.14
## 336 Campsite Entire home/apt 4.57
## 337 Campsite Entire home/apt 4.70
## 338 Room in hostel <NA> 4.18
## 339 Private room in residential home Private room 4.84
## 340 Private room in condominium (condo) Private room 4.95
## 341 Room in boutique hotel Private room 4.58
## 342 Private room in rental unit Private room 4.27
## 343 Entire rental unit Entire home/apt 4.72
## 344 Entire rental unit Entire home/apt 4.85
## 345 Room in hotel <NA> 4.67
## 346 Room in serviced apartment <NA> 4.50
## 347 Private room in residential home Private room 4.88
## 348 Room in boutique hotel Private room 4.83
## 349 Entire rental unit Entire home/apt 4.78
## 350 Entire serviced apartment Entire home/apt 4.72
## 351 Entire serviced apartment Entire home/apt 3.94
## 352 Private room in condominium (condo) Private room 4.94
## 353 Private room in rental unit Private room 4.43
## 354 Private room in rental unit Private room 4.33
## 355 Entire rental unit Entire home/apt 4.82
## 356 Private room in rental unit Private room 4.22
## 357 Entire condominium (condo) Entire home/apt 4.89
## 358 Private room in residential home Private room 4.60
## 359 Entire rental unit Entire home/apt 4.21
## 360 Private room in rental unit Private room 4.59
## 361 Private room in rental unit Private room 4.48
## 362 Entire serviced apartment Entire home/apt 4.79
## 363 Room in hotel Private room 4.17
## 364 Entire condominium (condo) Entire home/apt 4.78
## 365 Entire rental unit Entire home/apt 4.55
## 366 Room in boutique hotel <NA> 4.59
## 367 Room in boutique hotel Private room 4.41
## 368 Private room in serviced apartment Private room 4.59
## 369 Entire rental unit Entire home/apt 4.68
## 370 Entire condominium (condo) Entire home/apt 4.68
## 371 Private room in townhouse Private room 4.51
## 372 Private room in rental unit Private room 4.58
## 373 Private room in bungalow Private room 4.85
## 374 Entire rental unit Entire home/apt 4.84
## 375 Private room in townhouse Private room 4.41
## 376 Private room in rental unit Private room 4.77
## 377 Entire rental unit Entire home/apt 4.97
## 378 Private room in condominium (condo) Private room 4.91
## 379 Entire rental unit Entire home/apt 4.43
## 380 Private room in condominium (condo) Private room 5.00
## 381 Entire rental unit Entire home/apt 4.88
## 382 Room in hostel <NA> 4.31
## 383 Room in hostel <NA> 4.38
## 384 Private room in condominium (condo) Private room 4.93
## 385 Entire rental unit Entire home/apt 5.00
## 386 Private room in condominium (condo) Private room 4.63
## 387 Entire condominium (condo) Entire home/apt 4.80
## 388 Entire condominium (condo) Entire home/apt 4.81
## 389 Entire condominium (condo) Entire home/apt 4.81
## 390 Private room Private room 4.43
## 391 Private room in rental unit Private room 4.20
## 392 Entire rental unit Entire home/apt 4.63
## 393 Private room in townhouse Private room 4.58
## 394 Private room in townhouse Private room 4.43
## 395 Private room in residential home Private room 4.56
## 396 Entire condominium (condo) Entire home/apt 4.68
## 397 Entire guesthouse Entire home/apt 4.42
## 398 Private room in residential home Private room 4.93
## 399 Private room in rental unit Private room 4.82
## 400 Private room in villa Private room 4.78
## 401 Private room in rental unit Private room 4.55
## 402 Room in boutique hotel <NA> 4.27
## 403 Room in boutique hotel <NA> 4.72
## 404 Entire condominium (condo) Entire home/apt 4.93
## 405 Room in hotel Private room 4.17
## 406 Entire serviced apartment Entire home/apt 4.27
## 407 Entire residential home Entire home/apt 5.00
## 408 Room in hostel <NA> 4.33
## 409 Private room in residential home Private room 5.00
## 410 Shared room in bed and breakfast Shared room 4.47
## 411 Entire serviced apartment Entire home/apt 4.67
## 412 Entire condominium (condo) Entire home/apt 4.80
## 413 Entire rental unit Entire home/apt 4.69
## 414 Entire rental unit Entire home/apt 4.65
## 415 Entire rental unit Entire home/apt 4.72
## 416 Entire rental unit Entire home/apt 4.78
## 417 Entire rental unit Entire home/apt 4.78
## 418 Private room in condominium (condo) Private room 4.88
## 419 Room in hostel <NA> 4.21
## 420 Shared room Shared room 4.45
## 421 Entire rental unit Entire home/apt 4.90
## 422 Entire rental unit Entire home/apt 4.63
## 423 Entire rental unit Entire home/apt 4.88
## 424 Entire serviced apartment Entire home/apt 4.38
## 425 Entire place Entire home/apt 4.92
## 426 Private room in villa Private room 4.89
## 427 Private room in rental unit Private room 4.82
## 428 Room in boutique hotel <NA> 4.68
## 429 Entire serviced apartment Entire home/apt 4.71
## 430 Private room in condominium (condo) Private room 4.64
## 431 Shared room in hostel Shared room 4.71
## 432 Private room in rental unit Private room 4.57
## 433 Entire rental unit Entire home/apt 4.21
## 434 Entire rental unit Entire home/apt 5.00
## 435 Private room in rental unit Private room 4.29
## 436 Room in boutique hotel Private room 4.71
## 437 Entire condominium (condo) Entire home/apt 4.36
## 438 Entire condominium (condo) Entire home/apt 4.50
## 439 Entire rental unit Entire home/apt 4.64
## 440 Entire condominium (condo) Entire home/apt 4.86
## 441 Entire residential home Entire home/apt 4.79
## 442 Private room in condominium (condo) Private room 4.85
## 443 Entire rental unit Entire home/apt 4.73
## 444 Private room in residential home Private room 4.91
## 445 Shared room in hostel Shared room 4.51
## 446 Entire rental unit Entire home/apt 4.88
## 447 Entire place Entire home/apt 4.91
## 448 Entire serviced apartment Entire home/apt 4.95
## 449 Entire rental unit Entire home/apt 4.44
## 450 Entire serviced apartment Entire home/apt 4.72
## 451 Entire condominium (condo) Entire home/apt 4.58
## 452 Private room in residential home Private room 4.67
## 453 Private room in residential home Private room 4.92
## 454 Private room in rental unit Private room 4.92
## 455 Room in serviced apartment <NA> 4.69
## 456 Entire rental unit Entire home/apt 4.00
## 457 Private room in rental unit Private room 4.62
## 458 Entire condominium (condo) Entire home/apt 4.69
## 459 Private room in rental unit Private room 4.62
## 460 Entire condominium (condo) Entire home/apt 4.23
## 461 Entire rental unit Entire home/apt 4.08
## 462 Private room in rental unit Private room 4.54
## 463 Private room in rental unit Private room 4.23
## 464 Private room in bed and breakfast Private room 4.85
## 465 Room in boutique hotel Private room 4.77
## 466 Private room in residential home Private room 4.43
## 467 Entire rental unit Entire home/apt 4.62
## 468 Private room in residential home Private room 4.76
## 469 Private room in residential home Private room 4.88
## 470 Shared room in hostel Shared room 4.12
## 471 Room in serviced apartment <NA> 4.89
## 472 Entire rental unit Entire home/apt 4.77
## 473 Room in hostel <NA> 4.41
## 474 Entire rental unit Entire home/apt 4.75
## 475 Private room in rental unit Private room 4.43
## 476 Room in hotel Private room 4.76
## 477 Entire serviced apartment Entire home/apt 4.84
## 478 Entire rental unit Entire home/apt 4.94
## 479 Entire serviced apartment Entire home/apt 4.73
## 480 Entire serviced apartment Entire home/apt 4.80
## 481 Entire serviced apartment Entire home/apt 4.83
## 482 Room in hotel Private room 4.16
## 483 Entire serviced apartment Entire home/apt 4.86
## 484 Room in boutique hotel <NA> 4.00
## 485 Room in boutique hotel <NA> 4.75
## 486 Entire serviced apartment Entire home/apt 4.18
## 487 Room in boutique hotel <NA> 4.42
## 488 Room in boutique hotel <NA> 4.58
## 489 Private room in hostel Private room 4.42
## 490 Private room in condominium (condo) Private room 4.92
## 491 Shared room in hostel Shared room 4.42
## 492 Room in boutique hotel <NA> 4.33
## 493 Private room in loft Private room 5.00
## 494 Entire condominium (condo) Entire home/apt 4.92
## 495 Entire rental unit Entire home/apt 4.92
## 496 Private room in residential home Private room 4.67
## 497 Private room in residential home Private room 4.58
## 498 Room in aparthotel Private room 4.54
## 499 Private room in condominium (condo) Private room 4.67
## 500 Entire rental unit Entire home/apt 4.73
## 501 Entire rental unit Entire home/apt 4.74
## 502 Entire rental unit Entire home/apt 4.57
## 503 Private room in rental unit Private room 4.38
## 504 Private room in condominium (condo) Private room 5.00
## 505 Private room in residential home Private room 4.82
## 506 Entire rental unit Entire home/apt 4.93
## 507 Room in boutique hotel <NA> 4.73
## 508 Entire condominium (condo) Entire home/apt 5.00
## 509 Private room in rental unit Private room 4.55
## 510 Entire serviced apartment Entire home/apt 4.70
## 511 Private room in serviced apartment Private room 4.93
## 512 Room in hotel <NA> 4.14
## 513 Entire serviced apartment Entire home/apt 4.83
## 514 Shared room in condominium (condo) Shared room 4.75
## 515 Room in hotel Private room 4.18
## 516 Private room in rental unit Private room 4.82
## 517 Room in boutique hotel <NA> 4.73
## 518 Room in boutique hotel <NA> 4.91
## 519 Private room in condominium (condo) Private room 4.91
## 520 Entire condominium (condo) Entire home/apt 4.45
## 521 Entire condominium (condo) Entire home/apt 4.27
## 522 Entire serviced apartment Entire home/apt 4.91
## 523 Entire rental unit Entire home/apt 4.64
## 524 Entire rental unit Entire home/apt 4.82
## 525 Private room in serviced apartment Private room 4.27
## 526 Entire serviced apartment Entire home/apt 4.91
## 527 Room in boutique hotel Private room 4.73
## 528 Room in boutique hotel Private room 4.91
## 529 Entire serviced apartment Entire home/apt 4.58
## 530 Entire rental unit Entire home/apt 4.90
## 531 Entire serviced apartment Entire home/apt 4.79
## 532 Private room in rental unit Private room 4.79
## 533 Entire residential home Entire home/apt 4.77
## 534 Room in hostel <NA> 4.40
## 535 Entire residential home Entire home/apt 4.62
## 536 Private room in residential home Private room 4.92
## 537 Entire rental unit Entire home/apt 4.67
## 538 Private room in rental unit Private room 4.23
## 539 Shared room in bed and breakfast Shared room 4.30
## 540 Room in hostel <NA> 4.51
## 541 Shared room in hostel Shared room 4.65
## 542 Entire rental unit Entire home/apt 5.00
## 543 Private room in townhouse Private room 4.86
## 544 Private room in rental unit Private room 4.75
## 545 Private room in residential home Private room 4.50
## 546 Room in boutique hotel Private room 4.40
## 547 Private room in serviced apartment Private room 5.00
## 548 Private room in condominium (condo) Private room 4.95
## 549 Private room in rental unit Private room 4.93
## 550 Entire serviced apartment Entire home/apt 4.86
## 551 Entire rental unit Entire home/apt 4.83
## 552 Entire rental unit Entire home/apt 4.78
## 553 Entire rental unit Entire home/apt 4.86
## 554 Entire serviced apartment Entire home/apt 4.76
## 555 Room in boutique hotel <NA> 4.50
## 556 Private room in condominium (condo) Private room 4.20
## 557 Private room in condominium (condo) Private room 5.00
## 558 Private room in rental unit Private room 4.78
## 559 Room in boutique hotel Private room 5.00
## 560 Entire condominium (condo) Entire home/apt 4.50
## 561 Entire rental unit Entire home/apt 4.60
## 562 Entire serviced apartment Entire home/apt 4.40
## 563 Room in hotel Private room 5.00
## 564 Private room in villa Private room 4.44
## 565 Private room in rental unit Private room 4.63
## 566 Entire rental unit Entire home/apt 4.73
## 567 Shared room in bed and breakfast Shared room 4.00
## 568 Entire rental unit Entire home/apt 4.87
## 569 Entire rental unit Entire home/apt 4.80
## 570 Entire rental unit Entire home/apt 4.85
## 571 Room in hostel <NA> 4.32
## 572 Entire rental unit Entire home/apt 4.93
## 573 Private room in serviced apartment Private room 5.00
## 574 Entire serviced apartment Entire home/apt 5.00
## 575 Entire serviced apartment Entire home/apt 5.00
## 576 Private room in condominium (condo) Private room 4.78
## 577 Room in hotel Private room 4.67
## 578 Room in serviced apartment <NA> 4.30
## 579 Room in serviced apartment <NA> 4.38
## 580 Private room in rental unit Private room 4.82
## 581 Private room in residential home Private room 4.64
## 582 Room in boutique hotel Private room 4.91
## 583 Entire condominium (condo) Entire home/apt 4.44
## 584 Private room in rental unit Private room 5.00
## 585 Room in hotel <NA> 4.33
## 586 Entire rental unit Entire home/apt 4.33
## 587 Entire condominium (condo) Entire home/apt 5.00
## 588 Entire rental unit Entire home/apt 4.44
## 589 Private room in condominium (condo) Private room 5.00
## 590 Room in boutique hotel Private room 4.33
## 591 Entire rental unit Entire home/apt 4.89
## 592 Entire rental unit Entire home/apt 4.82
## 593 Entire rental unit Entire home/apt 4.78
## 594 Entire rental unit Entire home/apt 4.76
## 595 Entire residential home Entire home/apt 4.39
## 596 Room in hostel <NA> 4.12
## 597 Entire rental unit Entire home/apt 4.91
## 598 Entire rental unit Entire home/apt 4.44
## 599 Private room in townhouse Private room 4.79
## 600 Private room in townhouse Private room 4.83
## 601 Entire rental unit Entire home/apt 4.50
## 602 Room in boutique hotel <NA> 4.00
## 603 Room in serviced apartment <NA> 4.50
## 604 Room in hotel Private room 4.57
## 605 Entire serviced apartment Entire home/apt 4.82
## 606 Entire rental unit Entire home/apt 4.82
## 607 Entire rental unit Entire home/apt 4.94
## 608 Private room in rental unit Private room 4.47
## 609 Entire serviced apartment Entire home/apt 4.89
## 610 Entire condominium (condo) Entire home/apt 4.88
## 611 Room in serviced apartment <NA> 4.40
## 612 Room in serviced apartment <NA> 4.80
## 613 Shared room in boutique hotel Shared room 4.67
## 614 Room in boutique hotel Private room 4.88
## 615 Room in boutique hotel <NA> 4.50
## 616 Entire rental unit Entire home/apt 4.88
## 617 Entire condominium (condo) Entire home/apt 4.38
## 618 Entire rental unit Entire home/apt 4.38
## 619 Room in boutique hotel <NA> 4.88
## 620 Private room in residential home Private room 4.88
## 621 Shared room in hostel Shared room 4.38
## 622 Entire condominium (condo) Entire home/apt 4.00
## 623 Private room in residential home Private room 4.88
## 624 Entire condominium (condo) Entire home/apt 4.63
## 625 Private room in residential home Private room 5.00
## 626 Entire rental unit Entire home/apt 4.50
## 627 Entire condominium (condo) Entire home/apt 4.63
## 628 Private room in condominium (condo) Private room 4.63
## 629 Entire rental unit Entire home/apt 4.42
## 630 Entire rental unit Entire home/apt 4.78
## 631 Entire serviced apartment Entire home/apt 4.55
## 632 Entire serviced apartment Entire home/apt 4.78
## 633 Entire serviced apartment Entire home/apt 4.82
## 634 Private room in rental unit Private room 4.23
## 635 Room in hostel <NA> 4.43
## 636 Shared room in hostel Shared room 4.17
## 637 Private room in rental unit Private room 4.60
## 638 Private room in residential home Private room 4.50
## 639 Private room in rental unit Private room 4.36
## 640 Private room in rental unit Private room 4.93
## 641 Private room in rental unit Private room 4.79
## 642 Entire serviced apartment Entire home/apt 4.90
## 643 Entire serviced apartment Entire home/apt 4.79
## 644 Private room in villa Private room 5.00
## 645 Entire serviced apartment Entire home/apt 4.88
## 646 Entire rental unit Entire home/apt 4.88
## 647 Entire rental unit Entire home/apt 4.67
## 648 Room in serviced apartment <NA> 4.60
## 649 Entire condominium (condo) Entire home/apt 5.00
## 650 Room in hotel Private room 3.88
## 651 Entire serviced apartment Entire home/apt 4.86
## 652 Private room in rental unit Private room 5.00
## 653 Entire rental unit Entire home/apt 4.57
## 654 Entire condominium (condo) Entire home/apt 5.00
## 655 Room in boutique hotel <NA> 4.86
## 656 Entire rental unit Entire home/apt 5.00
## 657 Private room in rental unit Private room 4.71
## 658 Room in boutique hotel <NA> 4.57
## 659 Entire condominium (condo) Entire home/apt 4.43
## 660 Room in hostel <NA> 4.71
## 661 Private room in rental unit Private room 5.00
## 662 Entire condominium (condo) Entire home/apt 4.71
## 663 Room in hostel <NA> 4.29
## 664 Room in hostel <NA> 4.43
## 665 Private room in residential home Private room 4.57
## 666 Private room in rental unit Private room 4.57
## 667 Entire rental unit Entire home/apt 5.00
## 668 Entire residential home Entire home/apt 5.00
## 669 Entire residential home Entire home/apt 5.00
## 670 Private room in rental unit Private room 4.57
## 671 Entire condominium (condo) Entire home/apt 5.00
## 672 Entire condominium (condo) Entire home/apt 4.14
## 673 Entire condominium (condo) Entire home/apt 5.00
## 674 Private room in rental unit Private room 4.71
## 675 Room in boutique hotel Private room 4.57
## 676 Room in boutique hotel Private room 4.71
## 677 Entire condominium (condo) Entire home/apt 4.86
## 678 Boat Entire home/apt 5.00
## 679 Entire condominium (condo) Entire home/apt 4.86
## 680 Room in hostel <NA> 4.35
## 681 Entire rental unit Entire home/apt 4.73
## 682 Entire rental unit Entire home/apt 4.38
## 683 Entire rental unit Entire home/apt 4.63
## 684 Private room in residential home Private room 4.91
## 685 Private room in rental unit Private room 4.59
## 686 Entire rental unit Entire home/apt 4.65
## 687 Entire rental unit Entire home/apt 4.81
## 688 Private room in residential home Private room 4.94
## 689 Entire rental unit Entire home/apt 4.82
## 690 Private room in residential home Private room 4.58
## 691 Entire condominium (condo) Entire home/apt 4.75
## 692 Private room in rental unit Private room 4.89
## 693 Room in hostel <NA> 4.27
## 694 Entire rental unit Entire home/apt 4.89
## 695 Private room in bungalow Private room 4.83
## 696 Private room in rental unit Private room 4.00
## 697 Private room in residential home Private room 4.10
## 698 Entire rental unit Entire home/apt 4.80
## 699 Entire rental unit Entire home/apt 4.73
## 700 Private room in residential home Private room 4.63
## 701 Private room in rental unit Private room 5.00
## 702 Private room in townhouse Private room 4.91
## 703 Room in serviced apartment <NA> 4.75
## 704 Private room in rental unit Private room 4.73
## 705 Entire rental unit Entire home/apt 4.98
## 706 Room in hotel Private room 4.43
## 707 Entire serviced apartment Entire home/apt 4.85
## 708 Entire serviced apartment Entire home/apt 4.67
## 709 Room in hotel <NA> 5.00
## 710 Entire rental unit Entire home/apt 4.90
## 711 Room in hotel Private room 3.91
## 712 Entire rental unit Entire home/apt 4.86
## 713 Entire rental unit Entire home/apt 4.38
## 714 Room in hostel <NA> 4.00
## 715 Entire condominium (condo) Entire home/apt 4.17
## 716 Private room in rental unit Private room 5.00
## 717 Room in boutique hotel <NA> 5.00
## 718 Private room in condominium (condo) Private room 5.00
## 719 Entire rental unit Entire home/apt 5.00
## 720 Room in hostel <NA> 4.17
## 721 Room in hostel <NA> 4.17
## 722 Room in hostel <NA> 4.00
## 723 Entire rental unit Entire home/apt 4.67
## 724 Private room in rental unit Private room 4.67
## 725 Room in hotel Private room 3.83
## 726 Entire rental unit Entire home/apt 5.00
## 727 Private room in residential home Private room 5.00
## 728 Private room in serviced apartment Private room 4.83
## 729 Entire condominium (condo) Entire home/apt 4.33
## 730 Entire serviced apartment Entire home/apt 4.50
## 731 Entire serviced apartment Entire home/apt 4.33
## 732 Entire serviced apartment Entire home/apt 4.50
## 733 Shared room in bed and breakfast Shared room 3.67
## 734 Entire rental unit Entire home/apt 4.33
## 735 Entire rental unit Entire home/apt 4.50
## 736 Private room in condominium (condo) Private room 5.00
## 737 Entire condominium (condo) Entire home/apt 3.83
## 738 Entire condominium (condo) Entire home/apt 4.67
## 739 Room in boutique hotel Private room 4.00
## 740 Room in boutique hotel Private room 4.50
## 741 Room in boutique hotel Private room 4.17
## 742 Room in boutique hotel Private room 5.00
## 743 Entire serviced apartment Entire home/apt 4.50
## 744 Private room in rental unit Private room 4.39
## 745 Private room in rental unit Private room 4.73
## 746 Entire rental unit Entire home/apt 4.85
## 747 Private room in rental unit Private room 4.25
## 748 Private room in rental unit Private room 5.00
## 749 Private room in rental unit Private room 5.00
## 750 Private room in rental unit Private room 3.88
## 751 Private room in townhouse Private room 4.67
## 752 Private room in serviced apartment Private room 4.80
## 753 Shared room in bed and breakfast Shared room 4.26
## 754 Shared room Shared room 4.42
## 755 Entire rental unit Entire home/apt 4.73
## 756 Private room in residential home Private room 4.80
## 757 Private room in townhouse Private room 4.50
## 758 Entire rental unit Entire home/apt 4.59
## 759 Entire rental unit Entire home/apt 4.93
## 760 Entire serviced apartment Entire home/apt 5.00
## 761 Room in boutique hotel Private room 5.00
## 762 Private room in condominium (condo) Private room 4.33
## 763 Private room in villa Private room 4.50
## 764 Room in serviced apartment <NA> 4.50
## 765 Room in hotel Private room 4.62
## 766 Entire serviced apartment Entire home/apt 4.78
## 767 Private room in residential home Private room 4.17
## 768 Private room in condominium (condo) Private room 4.29
## 769 Entire serviced apartment Entire home/apt 5.00
## 770 Entire serviced apartment Entire home/apt 4.82
## 771 Entire rental unit Entire home/apt 4.80
## 772 Entire serviced apartment Entire home/apt 4.71
## 773 Entire rental unit Entire home/apt 5.00
## 774 Room in hostel <NA> 3.57
## 775 Private room in rental unit Private room 4.20
## 776 Entire serviced apartment Entire home/apt 4.43
## 777 Entire serviced apartment Entire home/apt 4.86
## 778 Entire serviced apartment Entire home/apt 4.00
## 779 Entire rental unit Entire home/apt 4.31
## 780 Private room in rental unit Private room 5.00
## 781 Room in serviced apartment <NA> 4.86
## 782 Entire serviced apartment Entire home/apt 4.86
## 783 Campsite Entire home/apt 4.80
## 784 Entire serviced apartment Entire home/apt 5.00
## 785 Entire condominium (condo) Entire home/apt 4.20
## 786 Entire condominium (condo) Entire home/apt 4.60
## 787 Room in hostel <NA> 4.00
## 788 Private room in rental unit Private room 4.40
## 789 Room in boutique hotel <NA> 4.80
## 790 Private room in condominium (condo) Private room 4.80
## 791 Private room in condominium (condo) Private room 5.00
## 792 Private room in condominium (condo) Private room 4.80
## 793 Room in hotel <NA> 4.00
## 794 Private room in rental unit Private room 5.00
## 795 Private room in rental unit Private room 4.40
## 796 Entire rental unit Entire home/apt 4.60
## 797 Entire serviced apartment Entire home/apt 4.20
## 798 Entire serviced apartment Entire home/apt 5.00
## 799 Entire residential home Entire home/apt 4.40
## 800 Private room in rental unit Private room 5.00
## 801 Private room in rental unit Private room 4.80
## 802 Private room in residential home Private room 5.00
## 803 Private room in bungalow Private room 5.00
## 804 Entire condominium (condo) Entire home/apt 3.80
## 805 Entire condominium (condo) Entire home/apt 5.00
## 806 Private room in rental unit Private room 4.60
## 807 Entire condominium (condo) Entire home/apt 4.20
## 808 Private room in condominium (condo) Private room 4.80
## 809 Entire serviced apartment Entire home/apt 5.00
## 810 Entire rental unit Entire home/apt 5.00
## 811 Private room in rental unit Private room 4.80
## 812 Entire condominium (condo) Entire home/apt 4.00
## 813 Private room in condominium (condo) Private room 5.00
## 814 Private room in residential home Private room 4.16
## 815 Private room in rental unit Private room 4.54
## 816 Private room in rental unit Private room 4.38
## 817 Entire residential home Entire home/apt 4.69
## 818 Private room in rental unit Private room 4.80
## 819 Entire rental unit Entire home/apt 4.70
## 820 Entire serviced apartment Entire home/apt 4.86
## 821 Entire rental unit Entire home/apt 4.76
## 822 Private room in condominium (condo) Private room 4.76
## 823 Private room in residential home Private room 4.50
## 824 Private room in townhouse Private room 4.00
## 825 Private room in residential home Private room 4.46
## 826 Shared room in bed and breakfast Shared room 4.84
## 827 Room in hostel <NA> 4.48
## 828 Shared room in hostel Shared room 4.09
## 829 Entire condominium (condo) Entire home/apt 4.72
## 830 Room in hostel <NA> 4.44
## 831 Private room in townhouse Private room 4.42
## 832 Entire rental unit Entire home/apt 4.33
## 833 Entire rental unit Entire home/apt 4.00
## 834 Private room in rental unit Private room 4.00
## 835 Private room in residential home Private room 4.75
## 836 Private room in residential home Private room 5.00
## 837 Shared room in hostel Shared room 4.21
## 838 Room in boutique hotel <NA> 4.75
## 839 Entire rental unit Entire home/apt 4.73
## 840 Room in hotel Private room 5.00
## 841 Private room in condominium (condo) Private room 4.86
## 842 Entire rental unit Entire home/apt 4.82
## 843 Entire condominium (condo) Entire home/apt 4.00
## 844 Room in hostel <NA> 3.80
## 845 Entire serviced apartment Entire home/apt 4.00
## 846 Private room in rental unit Private room 4.25
## 847 Entire rental unit Entire home/apt 5.00
## 848 Room in serviced apartment <NA> 4.22
## 849 Entire condominium (condo) Entire home/apt 5.00
## 850 Private room in rental unit Private room 4.56
## 851 Entire serviced apartment Entire home/apt 4.88
## 852 Entire serviced apartment Entire home/apt 4.40
## 853 Entire rental unit Entire home/apt 4.80
## 854 Private room in condominium (condo) Private room 5.00
## 855 Room in hotel Private room 4.57
## 856 Entire rental unit Entire home/apt 4.83
## 857 Entire serviced apartment Entire home/apt 4.45
## 858 Room in serviced apartment <NA> 4.71
## 859 Private room in rental unit Private room 4.00
## 860 Private room in rental unit Private room 5.00
## 861 Private room in condominium (condo) Private room 4.75
## 862 Room in hostel <NA> 3.88
## 863 Entire rental unit Entire home/apt 4.40
## 864 Private room in condominium (condo) Private room 3.33
## 865 Private room in rental unit Private room 5.00
## 866 Entire condominium (condo) Entire home/apt 5.00
## 867 Private room in rental unit Private room 4.75
## 868 Entire condominium (condo) Entire home/apt 4.75
## 869 Entire condominium (condo) Entire home/apt 5.00
## 870 Private room in villa Private room 5.00
## 871 Private room in hostel Private room 5.00
## 872 Private room in rental unit Private room 5.00
## 873 Room in hostel <NA> 4.25
## 874 Room in hostel <NA> 4.50
## 875 Private room in rental unit Private room 4.00
## 876 Shared room in rental unit Shared room 4.50
## 877 Private room in condominium (condo) Private room 4.00
## 878 Entire condominium (condo) Entire home/apt 4.50
## 879 Entire rental unit Entire home/apt 4.25
## 880 Entire condominium (condo) Entire home/apt 4.75
## 881 Entire serviced apartment Entire home/apt 4.25
## 882 Private room in rental unit Private room 4.50
## 883 Entire condominium (condo) Entire home/apt 5.00
## 884 Entire residential home Entire home/apt 3.50
## 885 Private room in rental unit Private room 4.75
## 886 Entire rental unit Entire home/apt 4.50
## 887 Entire serviced apartment Entire home/apt 3.75
## 888 Entire serviced apartment Entire home/apt 4.75
## 889 Room in hotel Private room 4.00
## 890 Private room in rental unit Private room 5.00
## 891 Shared room in bed and breakfast Shared room 4.00
## 892 Private room in rental unit Private room 4.50
## 893 Room in boutique hotel Private room 4.50
## 894 Room in boutique hotel Private room 5.00
## 895 Room in hotel Private room 4.25
## 896 Entire condominium (condo) Entire home/apt 4.75
## 897 Entire serviced apartment Entire home/apt 5.00
## 898 Room in boutique hotel Private room 5.00
## 899 Private room in rental unit Private room 5.00
## 900 Entire condominium (condo) Entire home/apt 3.50
## 901 Entire serviced apartment Entire home/apt 5.00
## 902 Room in boutique hotel Private room 5.00
## 903 Private room in condominium (condo) Private room 5.00
## 904 Private room in rental unit Private room 4.55
## 905 Private room in rental unit Private room 4.14
## 906 Entire rental unit Entire home/apt 4.78
## 907 Private room in rental unit Private room 4.40
## 908 Private room in hostel Private room 4.51
## 909 Entire condominium (condo) Entire home/apt 4.80
## 910 Private room in condominium (condo) Private room 4.61
## 911 Private room in rental unit Private room 4.60
## 912 Entire rental unit Entire home/apt 4.60
## 913 Private room in condominium (condo) Private room 4.75
## 914 Private room in residential home Private room 4.38
## 915 Private room in residential home Private room 5.00
## 916 Shared room in hostel Shared room 4.00
## 917 Room in hostel <NA> 4.38
## 918 Room in hostel <NA> 4.53
## 919 Entire rental unit Entire home/apt 4.20
## 920 Private room in townhouse Private room 4.50
## 921 Private room in townhouse Private room 4.71
## 922 Room in hostel <NA> 4.18
## 923 Shared room in bed and breakfast Shared room 4.44
## 924 Private room in rental unit Private room 5.00
## 925 Entire rental unit Entire home/apt 4.75
## 926 Entire rental unit Entire home/apt 4.93
## 927 Shared room in hostel Shared room 4.10
## 928 Private room in rental unit Private room 4.33
## 929 Private room in residential home Private room 5.00
## 930 Private room in rental unit Private room 4.83
## 931 Entire condominium (condo) Entire home/apt 4.60
## 932 Private room in rental unit Private room 4.63
## 933 Room in hostel <NA> 4.18
## 934 Private room in bungalow Private room 4.80
## 935 Entire rental unit Entire home/apt 4.91
## 936 Room in serviced apartment <NA> 4.50
## 937 Private room in rental unit Private room 4.50
## 938 Private room in condominium (condo) Private room 4.00
## 939 Private room in rental unit Private room 4.38
## 940 Private room in rental unit Private room 5.00
## 941 Room in boutique hotel <NA> 3.75
## 942 Room in boutique hotel <NA> 4.33
## 943 Entire rental unit Entire home/apt 4.86
## 944 Entire guesthouse Entire home/apt 5.00
## 945 Private room in residential home Private room 3.50
## 946 Private room in condominium (condo) Private room 3.67
## 947 Entire serviced apartment Entire home/apt 4.40
## 948 Private room in rental unit Private room 4.67
## 949 Private room in rental unit Private room 3.25
## 950 Private room in rental unit Private room 4.60
## 951 Entire rental unit Entire home/apt 5.00
## 952 Room in hotel Private room 2.75
## 953 Room in hotel Private room 4.67
## 954 Room in hotel <NA> 4.33
## 955 Room in hotel Private room 4.40
## 956 Room in hotel Private room 4.33
## 957 Room in serviced apartment <NA> 4.50
## 958 Private room in residential home Private room 4.80
## 959 Private room in townhouse Private room 4.67
## 960 Entire serviced apartment Entire home/apt 4.80
## 961 Private room in rental unit Private room 5.00
## 962 Entire condominium (condo) Entire home/apt 5.00
## 963 Private room in rental unit Private room 5.00
## 964 Entire rental unit Entire home/apt 3.67
## 965 Private room in residential home Private room 5.00
## 966 Entire rental unit Entire home/apt 5.00
## 967 Entire serviced apartment Entire home/apt 5.00
## 968 Entire condominium (condo) Entire home/apt 5.00
## 969 Entire rental unit Entire home/apt 5.00
## 970 Entire condominium (condo) Entire home/apt 5.00
## 971 Entire condominium (condo) Entire home/apt 5.00
## 972 Entire serviced apartment Entire home/apt 5.00
## 973 Entire rental unit Entire home/apt 4.00
## 974 Private room in condominium (condo) Private room 5.00
## 975 Room in hostel <NA> 4.33
## 976 Room in hostel <NA> 5.00
## 977 Entire serviced apartment Entire home/apt 4.67
## 978 Entire condominium (condo) Entire home/apt 5.00
## 979 Private room in rental unit Private room 4.50
## 980 Private room in townhouse Private room 4.67
## 981 Entire rental unit Entire home/apt 5.00
## 982 Entire residential home Entire home/apt 4.67
## 983 Entire condominium (condo) Entire home/apt 5.00
## 984 Entire condominium (condo) Entire home/apt 4.00
## 985 Room in hostel <NA> 3.67
## 986 Entire condominium (condo) Entire home/apt 5.00
## 987 Room in hotel Private room 5.00
## 988 Private room in rental unit Private room 3.00
## 989 Private room in rental unit Private room 5.00
## 990 Entire condominium (condo) Entire home/apt 5.00
## 991 Room in hotel <NA> 4.67
## 992 Private room in rental unit Private room 5.00
## 993 Entire rental unit Entire home/apt 4.33
## 994 Private room in rental unit Private room 4.67
## 995 Room in hotel Private room 4.33
## 996 Private room in rental unit Private room 4.33
## 997 Entire serviced apartment Entire home/apt 5.00
## 998 Entire condominium (condo) Entire home/apt 5.00
## 999 Entire serviced apartment Entire home/apt 5.00
## 1000 Private room in bed and breakfast Private room 5.00
## 1001 Entire rental unit Entire home/apt 3.33
## 1002 Private room in rental unit Private room 5.00
## 1003 Entire serviced apartment Entire home/apt 4.67
## 1004 Private room in residential home Private room 4.67
## 1005 Entire serviced apartment Entire home/apt 5.00
## 1006 Private room in condominium (condo) Private room 4.33
## 1007 Private room in bed and breakfast Private room 5.00
## 1008 Private room in condominium (condo) Private room 5.00
## 1009 Private room in rental unit Private room 5.00
## 1010 Private room in residential home Private room 3.33
## 1011 Entire condominium (condo) Entire home/apt 2.67
## 1012 Private room in villa Private room 5.00
## 1013 Private room in rental unit Private room 4.33
## 1014 Room in boutique hotel Private room 5.00
## 1015 Room in hotel Private room 2.67
## 1016 Entire rental unit Entire home/apt 5.00
## 1017 Entire condominium (condo) Entire home/apt 4.33
## 1018 Entire rental unit Entire home/apt 5.00
## 1019 Entire serviced apartment Entire home/apt 5.00
## 1020 Private room in rental unit Private room 5.00
## 1021 Room in boutique hotel Private room 5.00
## 1022 Private room in condominium (condo) Private room 4.67
## 1023 Room in boutique hotel Private room 5.00
## 1024 Entire condominium (condo) Entire home/apt 5.00
## 1025 Private room in serviced apartment Private room 5.00
## 1026 Private room in loft Private room 5.00
## 1027 Entire serviced apartment Entire home/apt 4.00
## 1028 Entire rental unit Entire home/apt 4.67
## 1029 Private room in rental unit Private room 4.20
## 1030 Private room in rental unit Private room 4.67
## 1031 Private room in condominium (condo) Private room 4.51
## 1032 Private room in rental unit Private room 4.89
## 1033 Private room in condominium (condo) Private room 5.00
## 1034 Private room in rental unit Private room 4.00
## 1035 Private room in residential home Private room 3.67
## 1036 Private room in bungalow Private room 4.44
## 1037 Entire rental unit Entire home/apt 3.63
## 1038 Private room in rental unit Private room 4.75
## 1039 Private room Private room 4.43
## 1040 Private room in residential home Private room 4.62
## 1041 Entire condominium (condo) Entire home/apt 4.42
## 1042 Shared room in bed and breakfast Shared room 3.67
## 1043 Shared room in hostel Shared room 3.63
## 1044 Entire condominium (condo) Entire home/apt 4.84
## 1045 Shared room in hostel Shared room 4.00
## 1046 Shared room in hostel Shared room 4.50
## 1047 Entire rental unit Entire home/apt 5.00
## 1048 Private room in townhouse Private room 4.60
## 1049 Private room in rental unit Private room 4.86
## 1050 Private room in condominium (condo) Private room 4.57
## 1051 Shared room in hostel Shared room 4.15
## 1052 Shared room in bed and breakfast Shared room 5.00
## 1053 Shared room in hostel Shared room 4.18
## 1054 Shared room in hostel Shared room 4.00
## 1055 Private room in bed and breakfast Private room 4.00
## 1056 Private room in rental unit Private room 4.00
## 1057 Entire condominium (condo) Entire home/apt 4.67
## 1058 Shared room Shared room 4.42
## 1059 Room in boutique hotel Private room 4.75
## 1060 Private room in townhouse Private room 5.00
## 1061 Private room in rental unit Private room 5.00
## 1062 Entire rental unit Entire home/apt 4.75
## 1063 Entire rental unit Entire home/apt 4.75
## 1064 Private room in bungalow Private room 5.00
## 1065 Private room in rental unit Private room 3.00
## 1066 Private room in rental unit Private room 5.00
## 1067 Private room in rental unit Private room 4.71
## 1068 Private room in rental unit Private room 4.89
## 1069 Entire rental unit Entire home/apt 5.00
## 1070 Entire rental unit Entire home/apt 4.82
## 1071 Entire condominium (condo) Entire home/apt 3.50
## 1072 Private room in rental unit Private room 4.50
## 1073 Private room in condominium (condo) Private room 5.00
## 1074 Entire condominium (condo) Entire home/apt 4.50
## 1075 Shared room in hostel Shared room 4.22
## 1076 Room in hostel <NA> 4.06
## 1077 Room in hostel <NA> 4.73
## 1078 Entire rental unit Entire home/apt 4.75
## 1079 Private room in rental unit Private room 4.75
## 1080 Entire serviced apartment Entire home/apt 5.00
## 1081 Shared room in rental unit Shared room 4.44
## 1082 Entire rental unit Entire home/apt 5.00
## 1083 Private room in rental unit Private room 4.10
## 1084 Private room in rental unit Private room 5.00
## 1085 Room in serviced apartment <NA> 4.43
## 1086 Entire serviced apartment Entire home/apt 4.55
## 1087 Private room in residential home Private room 4.80
## 1088 Room in hotel Private room 4.90
## 1089 Private room in residential home Private room 4.00
## 1090 Entire condominium (condo) Entire home/apt 4.50
## 1091 Entire rental unit Entire home/apt 4.67
## 1092 Private room Private room 3.67
## 1093 Room in hostel <NA> 3.67
## 1094 Entire loft Entire home/apt 5.00
## 1095 Private room in rental unit Private room 5.00
## 1096 Entire condominium (condo) Entire home/apt 5.00
## 1097 Entire rental unit Entire home/apt 4.88
## 1098 Private room in rental unit Private room 4.67
## 1099 Private room in rental unit Private room 4.50
## 1100 Private room in rental unit Private room 4.00
## 1101 Room in serviced apartment <NA> 4.60
## 1102 Room in serviced apartment <NA> 4.75
## 1103 Entire serviced apartment Entire home/apt 5.00
## 1104 Entire rental unit Entire home/apt 2.50
## 1105 Room in serviced apartment <NA> 4.00
## 1106 Room in hotel <NA> 3.86
## 1107 Room in hotel Private room 3.33
## 1108 Room in hotel <NA> 4.33
## 1109 Room in hotel Private room 3.60
## 1110 Room in hotel Private room 4.10
## 1111 Room in hotel Private room 5.00
## 1112 Private room in rental unit Private room 4.33
## 1113 Private room in rental unit Private room 4.20
## 1114 Room in boutique hotel Private room 4.00
## 1115 Room in hotel Private room 4.00
## 1116 Room in hotel Private room 4.00
## 1117 Room in hotel Private room 4.50
## 1118 Private room in townhouse Private room 5.00
## 1119 Room in boutique hotel <NA> 3.50
## 1120 Private room in condominium (condo) Private room 3.00
## 1121 Entire serviced apartment Entire home/apt 5.00
## 1122 Entire rental unit Entire home/apt 5.00
## 1123 Private room in rental unit Private room 5.00
## 1124 Entire rental unit Entire home/apt 4.50
## 1125 Private room in rental unit Private room 5.00
## 1126 Private room in rental unit Private room 4.00
## 1127 Entire condominium (condo) Entire home/apt 5.00
## 1128 Private room in rental unit Private room 5.00
## 1129 Private room in rental unit Private room 4.71
## 1130 Shared room in boutique hotel Shared room 5.00
## 1131 Room in hostel <NA> 4.00
## 1132 Room in hostel <NA> 4.00
## 1133 Private room in rental unit Private room 4.00
## 1134 Room in boutique hotel <NA> 4.50
## 1135 Entire condominium (condo) Entire home/apt 4.67
## 1136 Entire condominium (condo) Entire home/apt 4.50
## 1137 Private room in rental unit Private room 5.00
## 1138 Private room in rental unit Private room 5.00
## 1139 Private room in residential home Private room 3.67
## 1140 Private room in rental unit Private room 5.00
## 1141 Private room in residential home Private room 3.50
## 1142 Private room in rental unit Private room 5.00
## 1143 Entire condominium (condo) Entire home/apt 5.00
## 1144 Entire condominium (condo) Entire home/apt 5.00
## 1145 Room in boutique hotel Private room 5.00
## 1146 Entire condominium (condo) Entire home/apt 5.00
## 1147 Private room in rental unit Private room 5.00
## 1148 Entire condominium (condo) Entire home/apt 5.00
## 1149 Entire condominium (condo) Entire home/apt 4.00
## 1150 Entire condominium (condo) Entire home/apt 5.00
## 1151 Entire condominium (condo) Entire home/apt 4.00
## 1152 Entire serviced apartment Entire home/apt 4.50
## 1153 Entire condominium (condo) Entire home/apt 4.50
## 1154 Private room in rental unit Private room 5.00
## 1155 Private room in rental unit Private room 4.00
## 1156 Entire rental unit Entire home/apt 5.00
## 1157 Private room in rental unit Private room 4.50
## 1158 Private room in rental unit Private room 5.00
## 1159 Private room in rental unit Private room 3.50
## 1160 Entire condominium (condo) Entire home/apt 5.00
## 1161 Private room in rental unit Private room 5.00
## 1162 Private room in rental unit Private room 4.00
## 1163 Entire condominium (condo) Entire home/apt 5.00
## 1164 Private room in residential home Private room 3.00
## 1165 Entire condominium (condo) Entire home/apt 4.50
## 1166 Private room in condominium (condo) Private room 5.00
## 1167 Private room in condominium (condo) Private room 4.50
## 1168 Room in hostel <NA> 4.00
## 1169 Entire rental unit Entire home/apt 5.00
## 1170 Private room in rental unit Private room 3.00
## 1171 Shared room in bed and breakfast Shared room 4.00
## 1172 Private room in residential home Private room 5.00
## 1173 Entire condominium (condo) Entire home/apt 5.00
## 1174 Entire condominium (condo) Entire home/apt 5.00
## 1175 Private room in rental unit Private room 5.00
## 1176 Entire condominium (condo) Entire home/apt 5.00
## 1177 Entire condominium (condo) Entire home/apt 5.00
## 1178 Private room in rental unit Private room 4.50
## 1179 Entire rental unit Entire home/apt 4.50
## 1180 Shared room in hostel Shared room 3.50
## 1181 Entire rental unit Entire home/apt 4.00
## 1182 Entire condominium (condo) Entire home/apt 5.00
## 1183 Room in hotel Private room 4.50
## 1184 Private room in rental unit Private room 5.00
## 1185 Entire condominium (condo) Entire home/apt 5.00
## 1186 Private room in rental unit Private room 4.00
## 1187 Entire condominium (condo) Entire home/apt 5.00
## 1188 Entire condominium (condo) Entire home/apt 5.00
## 1189 Room in hotel <NA> 5.00
## 1190 Private room in rental unit Private room 4.50
## 1191 Private room in condominium (condo) Private room 5.00
## 1192 Private room in condominium (condo) Private room 5.00
## 1193 Private room in rental unit Private room 5.00
## 1194 Entire condominium (condo) Entire home/apt 5.00
## 1195 Private room in rental unit Private room 5.00
## 1196 Private room in rental unit Private room 4.00
## 1197 Entire serviced apartment Entire home/apt 5.00
## 1198 Entire rental unit Entire home/apt 5.00
## 1199 Entire rental unit Entire home/apt 5.00
## 1200 Entire condominium (condo) Entire home/apt 5.00
## 1201 Private room in condominium (condo) Private room 4.00
## 1202 Private room in condominium (condo) Private room 0.00
## 1203 Private room in rental unit Private room 5.00
## 1204 Entire rental unit Entire home/apt 3.50
## 1205 Private room in residential home Private room 5.00
## 1206 Private room in condominium (condo) Private room 5.00
## 1207 Entire rental unit Entire home/apt 5.00
## 1208 Entire rental unit Entire home/apt 4.50
## 1209 Entire serviced apartment Entire home/apt 5.00
## 1210 Entire rental unit Entire home/apt 4.00
## 1211 Entire serviced apartment Entire home/apt 4.00
## 1212 Entire serviced apartment Entire home/apt 4.00
## 1213 Entire serviced apartment Entire home/apt 5.00
## 1214 Shared room in hostel Shared room 4.50
## 1215 Entire rental unit Entire home/apt 5.00
## 1216 Entire rental unit Entire home/apt 3.00
## 1217 Room in boutique hotel Private room 3.00
## 1218 Private room in townhouse Private room 4.50
## 1219 Entire serviced apartment Entire home/apt 5.00
## 1220 Private room in bed and breakfast Private room 4.00
## 1221 Private room in bed and breakfast Private room 3.00
## 1222 Shared room in hostel Shared room 4.00
## 1223 Room in hotel Private room 4.50
## 1224 Private room in rental unit Private room 5.00
## 1225 Room in hotel Private room 5.00
## 1226 Entire condominium (condo) Entire home/apt 5.00
## 1227 Private room in residential home Private room 2.50
## 1228 Private room in residential home Private room 5.00
## 1229 Entire condominium (condo) Entire home/apt 5.00
## 1230 Private room in serviced apartment Private room 5.00
## 1231 Private room in villa Private room 5.00
## 1232 Private room in villa Private room 5.00
## 1233 Private room in bungalow Private room 4.50
## 1234 Private room in bungalow Private room 5.00
## 1235 Entire rental unit Entire home/apt 5.00
## 1236 Entire condominium (condo) Entire home/apt 5.00
## 1237 Entire condominium (condo) Entire home/apt 5.00
## 1238 Entire condominium (condo) Entire home/apt 3.00
## 1239 Private room in guest suite Private room 5.00
## 1240 Room in hotel Private room 4.00
## 1241 Entire condominium (condo) Entire home/apt 4.50
## 1242 Entire rental unit Entire home/apt 5.00
## 1243 Entire condominium (condo) Entire home/apt 5.00
## 1244 Entire rental unit Entire home/apt 5.00
## 1245 Room in boutique hotel Private room 5.00
## 1246 Room in boutique hotel Private room 5.00
## 1247 Room in boutique hotel <NA> 4.50
## 1248 Entire rental unit Entire home/apt 5.00
## 1249 Room in boutique hotel Private room 5.00
## 1250 Entire rental unit Entire home/apt 5.00
## 1251 Private room in condominium (condo) Private room 5.00
## 1252 Private room in rental unit Private room 5.00
## 1253 Private room in rental unit Private room 5.00
## 1254 Entire condominium (condo) Entire home/apt 5.00
## 1255 Private room in rental unit Private room 5.00
## 1256 Room in boutique hotel Private room 4.50
## 1257 Private room in rental unit Private room 4.50
## 1258 Room in boutique hotel Private room 5.00
## 1259 Entire condominium (condo) Entire home/apt 5.00
## 1260 Private room in rental unit Private room 4.50
## 1261 Private room in townhouse Private room 5.00
## 1262 Private room in townhouse Private room 4.50
## 1263 Entire condominium (condo) Entire home/apt 5.00
## 1264 Private room in rental unit Private room 5.00
## 1265 Entire serviced apartment Entire home/apt 2.50
## 1266 Private room in condominium (condo) Private room 4.50
## 1267 Entire serviced apartment Entire home/apt 5.00
## 1268 Entire serviced apartment Entire home/apt 4.50
## 1269 Room in boutique hotel Private room 4.50
## 1270 Room in boutique hotel Private room 5.00
## 1271 Entire serviced apartment Entire home/apt 4.50
## 1272 Private room in condominium (condo) Private room 4.50
## 1273 Entire condominium (condo) Entire home/apt 5.00
## 1274 Entire serviced apartment Entire home/apt 4.50
## 1275 Private room in condominium (condo) Private room 4.63
## 1276 Private room in rental unit Private room 4.00
## 1277 Private room in condominium (condo) Private room 5.00
## 1278 Private room in rental unit Private room 4.14
## 1279 Private room in bed and breakfast Private room 3.00
## 1280 Shared room in hostel Shared room 4.78
## 1281 Private room in rental unit Private room 5.00
## 1282 Private room in rental unit Private room 4.79
## 1283 Entire loft Entire home/apt 5.00
## 1284 Entire rental unit Entire home/apt 4.83
## 1285 Entire serviced apartment Entire home/apt 4.33
## 1286 Private room in rental unit Private room 5.00
## 1287 Private room in condominium (condo) Private room 4.90
## 1288 Entire condominium (condo) Entire home/apt 5.00
## 1289 Private room in residential home Private room 4.85
## 1290 Entire rental unit Entire home/apt 4.92
## 1291 Private room in rental unit Private room 1.00
## 1292 Private room in townhouse Private room 4.25
## 1293 Private room in residential home Private room 5.00
## 1294 Private room in residential home Private room 4.33
## 1295 Private room in residential home Private room 4.75
## 1296 Private room in residential home Private room 4.83
## 1297 Shared room in hostel Shared room 3.33
## 1298 Room in bed and breakfast <NA> 5.00
## 1299 Shared room in hostel Shared room 4.20
## 1300 Shared room in bed and breakfast Shared room 4.75
## 1301 Private room in bed and breakfast Private room 5.00
## 1302 Shared room in bed and breakfast Shared room 5.00
## 1303 Shared room in bed and breakfast Shared room 4.85
## 1304 Room in hostel <NA> 3.25
## 1305 Room in hostel <NA> 4.13
## 1306 Private room in rental unit Private room 4.50
## 1307 Entire rental unit Entire home/apt 4.17
## 1308 Shared room in bed and breakfast Shared room 3.80
## 1309 Private room in rental unit Private room 5.00
## 1310 Shared room Shared room 4.00
## 1311 Shared room Shared room 4.50
## 1312 Shared room Shared room 4.00
## 1313 Private room in rental unit Private room 4.67
## 1314 Entire condominium (condo) Entire home/apt 3.63
## 1315 Private room in condominium (condo) Private room 4.00
## 1316 Private room in rental unit Private room 5.00
## 1317 Entire rental unit Entire home/apt 4.60
## 1318 Shared room in residential home Shared room 4.50
## 1319 Private room in residential home Private room 4.75
## 1320 Private room in rental unit Private room 5.00
## 1321 Private room in residential home Private room 4.00
## 1322 Private room in rental unit Private room 4.50
## 1323 Private room in rental unit Private room 4.50
## 1324 Entire rental unit Entire home/apt 4.50
## 1325 Private room in rental unit Private room 4.25
## 1326 Entire condominium (condo) Entire home/apt 5.00
## 1327 Entire rental unit Entire home/apt 4.00
## 1328 Entire rental unit Entire home/apt 3.00
## 1329 Private room in hostel Private room 4.00
## 1330 Private room in villa Private room 5.00
## 1331 Private room in condominium (condo) Private room 4.00
## 1332 Room in hostel <NA> 4.13
## 1333 Private room in hostel Private room 3.50
## 1334 Private room in rental unit Private room 4.00
## 1335 Entire rental unit Entire home/apt 5.00
## 1336 Shared room in hostel Shared room 4.00
## 1337 Private room in rental unit Private room 4.50
## 1338 Private room in rental unit Private room 4.50
## 1339 Private room in rental unit Private room 4.86
## 1340 Entire serviced apartment Entire home/apt 4.00
## 1341 Entire condominium (condo) Entire home/apt 4.25
## 1342 Private room in residential home Private room 5.00
## 1343 Private room in rental unit Private room 5.00
## 1344 Private room in condominium (condo) Private room 5.00
## 1345 Private room in rental unit Private room 4.50
## 1346 Room in hotel Private room 4.67
## 1347 Room in hotel Private room 5.00
## 1348 Entire condominium (condo) Entire home/apt 3.67
## 1349 Private room in rental unit Private room 5.00
## 1350 Entire condominium (condo) Entire home/apt 4.00
## 1351 Private room in rental unit Private room 3.00
## 1352 Entire condominium (condo) Entire home/apt 4.00
## 1353 Room in hostel <NA> 4.33
## 1354 Room in hostel <NA> 4.00
## 1355 Room in hostel <NA> 5.00
## 1356 Private room in rental unit Private room 4.81
## 1357 Private room in rental unit Private room 5.00
## 1358 Private room in condominium (condo) Private room 3.75
## 1359 Private room in residential home Private room 4.10
## 1360 Private room in rental unit Private room 4.00
## 1361 Private room in condominium (condo) Private room 0.00
## 1362 Room in hotel <NA> 5.00
## 1363 Private room in rental unit Private room 4.50
## 1364 Private room in rental unit Private room 5.00
## 1365 Private room in rental unit Private room 5.00
## 1366 Private room Private room 5.00
## 1367 Entire serviced apartment Entire home/apt 4.00
## 1368 Private room in rental unit Private room 3.50
## 1369 Private room in rental unit Private room 5.00
## 1370 Private room in rental unit Private room 4.00
## 1371 Entire rental unit Entire home/apt 5.00
## 1372 Private room in condominium (condo) Private room 5.00
## 1373 Entire serviced apartment Entire home/apt 5.00
## 1374 Entire serviced apartment Entire home/apt 5.00
## 1375 Private room in residential home Private room 5.00
## 1376 Entire serviced apartment Entire home/apt 5.00
## 1377 Private room in rental unit Private room 0.00
## 1378 Private room in serviced apartment Private room 3.00
## 1379 Private room in serviced apartment Private room 5.00
## 1380 Room in hotel Private room 5.00
## 1381 Room in hotel Private room 3.00
## 1382 Room in hotel Private room 4.00
## 1383 Private room in rental unit Private room 4.00
## 1384 Entire condominium (condo) Entire home/apt 5.00
## 1385 Entire condominium (condo) Entire home/apt 5.00
## 1386 Entire condominium (condo) Entire home/apt 3.00
## 1387 Private room in condominium (condo) Private room 5.00
## 1388 Room in hotel <NA> 4.50
## 1389 Entire rental unit Entire home/apt 4.00
## 1390 Private room in rental unit Private room 3.00
## 1391 Private room in rental unit Private room 3.50
## 1392 Entire rental unit Entire home/apt 3.14
## 1393 Room in hotel Private room 3.00
## 1394 Private room in rental unit Private room 5.00
## 1395 Private room in condominium (condo) Private room 4.25
## 1396 Private room in condominium (condo) Private room 4.56
## 1397 Entire rental unit Entire home/apt 4.00
## 1398 Private room in rental unit Private room 5.00
## 1399 Entire serviced apartment Entire home/apt 5.00
## 1400 Private room in condominium (condo) Private room 4.00
## 1401 Private room in rental unit Private room 5.00
## 1402 Private room in rental unit Private room 3.50
## 1403 Private room in condominium (condo) Private room 4.33
## 1404 Entire condominium (condo) Entire home/apt 5.00
## 1405 Private room in rental unit Private room 5.00
## 1406 Private room in residential home Private room 4.00
## 1407 Private room in residential home Private room 3.00
## 1408 Entire condominium (condo) Entire home/apt 5.00
## 1409 Private room in townhouse Private room 0.00
## 1410 Entire condominium (condo) Entire home/apt 5.00
## 1411 Entire condominium (condo) Entire home/apt 5.00
## 1412 Room in boutique hotel Private room 5.00
## 1413 Shared room in boutique hotel Shared room 5.00
## 1414 Private room in hostel Private room 5.00
## 1415 Room in hostel <NA> 3.00
## 1416 Private room in rental unit Private room 4.00
## 1417 Private room in hostel Private room 4.00
## 1418 Room in boutique hotel <NA> 5.00
## 1419 Entire condominium (condo) Entire home/apt 5.00
## 1420 Room in boutique hotel <NA> 4.00
## 1421 Entire serviced apartment Entire home/apt 5.00
## 1422 Entire condominium (condo) Entire home/apt 5.00
## 1423 Entire condominium (condo) Entire home/apt 5.00
## 1424 Private room in rental unit Private room 5.00
## 1425 Entire condominium (condo) Entire home/apt 5.00
## 1426 Private room in rental unit Private room 5.00
## 1427 Private room in rental unit Private room 5.00
## 1428 Entire condominium (condo) Entire home/apt 5.00
## 1429 Private room in condominium (condo) Private room 5.00
## 1430 Entire rental unit Entire home/apt 5.00
## 1431 Entire condominium (condo) Entire home/apt 5.00
## 1432 Private room in rental unit Private room 5.00
## 1433 Room in boutique hotel <NA> 4.00
## 1434 Private room in rental unit Private room 5.00
## 1435 Private room in rental unit Private room 3.00
## 1436 Private room in rental unit Private room 5.00
## 1437 Private room in rental unit Private room 5.00
## 1438 Private room in rental unit Private room 5.00
## 1439 Private room in rental unit Private room 5.00
## 1440 Private room in rental unit Private room 4.00
## 1441 Private room in rental unit Private room 4.00
## 1442 Private room in rental unit Private room 5.00
## 1443 Private room in rental unit Private room 5.00
## 1444 Entire serviced apartment Entire home/apt 5.00
## 1445 Private room in rental unit Private room 5.00
## 1446 Private room in condominium (condo) Private room 5.00
## 1447 Private room in condominium (condo) Private room 5.00
## 1448 Private room in residential home Private room 5.00
## 1449 Entire condominium (condo) Entire home/apt 4.00
## 1450 Entire rental unit Entire home/apt 5.00
## 1451 Entire rental unit Entire home/apt 1.00
## 1452 Private room in rental unit Private room 0.00
## 1453 Private room in rental unit Private room 5.00
## 1454 Entire condominium (condo) Entire home/apt 5.00
## 1455 Entire rental unit Entire home/apt 5.00
## 1456 Private room in rental unit Private room 4.00
## 1457 Entire condominium (condo) Entire home/apt 5.00
## 1458 Entire condominium (condo) Entire home/apt 5.00
## 1459 Entire condominium (condo) Entire home/apt 5.00
## 1460 Entire rental unit Entire home/apt 5.00
## 1461 Shared room in rental unit Shared room 0.00
## 1462 Private room in rental unit Private room 5.00
## 1463 Private room in rental unit Private room 5.00
## 1464 Private room in rental unit Private room 5.00
## 1465 Private room in rental unit Private room 5.00
## 1466 Entire serviced apartment Entire home/apt 5.00
## 1467 Private room in rental unit Private room 3.00
## 1468 Entire serviced apartment Entire home/apt 5.00
## 1469 Entire rental unit Entire home/apt 0.00
## 1470 Entire serviced apartment Entire home/apt 5.00
## 1471 Entire condominium (condo) Entire home/apt 0.00
## 1472 Private room in rental unit Private room 4.00
## 1473 Entire condominium (condo) Entire home/apt 5.00
## 1474 Private room in rental unit Private room 5.00
## 1475 Private room in hostel Private room 5.00
## 1476 Private room in condominium (condo) Private room 0.00
## 1477 Private room in rental unit Private room 3.00
## 1478 Private room in rental unit Private room 4.00
## 1479 Entire condominium (condo) Entire home/apt 1.00
## 1480 Private room in rental unit Private room 4.00
## 1481 Private room in rental unit Private room 5.00
## 1482 Private room in rental unit Private room 0.00
## 1483 Entire rental unit Entire home/apt 5.00
## 1484 Entire rental unit Entire home/apt 0.00
## 1485 Private room in rental unit Private room 5.00
## 1486 Private room in rental unit Private room 5.00
## 1487 Entire serviced apartment Entire home/apt 5.00
## 1488 Room in hostel <NA> 5.00
## 1489 Private room in rental unit Private room 5.00
## 1490 Room in hostel <NA> 5.00
## 1491 Room in hostel <NA> 0.00
## 1492 Room in hostel <NA> 5.00
## 1493 Entire serviced apartment Entire home/apt 4.00
## 1494 Entire serviced apartment Entire home/apt 0.00
## 1495 Entire condominium (condo) Entire home/apt 4.00
## 1496 Private room in rental unit Private room 4.00
## 1497 Entire serviced apartment Entire home/apt 5.00
## 1498 Entire serviced apartment Entire home/apt 5.00
## 1499 Private room in condominium (condo) Private room 5.00
## 1500 Entire rental unit Entire home/apt 5.00
## 1501 Private room in rental unit Private room 5.00
## 1502 Entire rental unit Entire home/apt 5.00
## 1503 Entire serviced apartment Entire home/apt 5.00
## 1504 Private room in rental unit Private room 5.00
## 1505 Entire condominium (condo) Entire home/apt 5.00
## 1506 Entire condominium (condo) Entire home/apt 5.00
## 1507 Private room in rental unit Private room 4.00
## 1508 Entire condominium (condo) Entire home/apt 5.00
## 1509 Entire serviced apartment Entire home/apt 5.00
## 1510 Entire condominium (condo) Entire home/apt 5.00
## 1511 Shared room in residential home Shared room 0.00
## 1512 Shared room in hostel Shared room 4.00
## 1513 Shared room in hostel Shared room 0.00
## 1514 Entire rental unit Entire home/apt 5.00
## 1515 Entire rental unit Entire home/apt 5.00
## 1516 Private room in residential home Private room 5.00
## 1517 Entire condominium (condo) Entire home/apt 4.00
## 1518 Entire rental unit Entire home/apt 4.00
## 1519 Entire condominium (condo) Entire home/apt 5.00
## 1520 Private room in rental unit Private room 5.00
## 1521 Private room in townhouse Private room 5.00
## 1522 Room in hotel Private room 1.00
## 1523 Room in hotel Private room 4.00
## 1524 Private room in rental unit Private room 5.00
## 1525 Private room in rental unit Private room 5.00
## 1526 Private room in residential home Private room 5.00
## 1527 Private room in serviced apartment Private room 4.00
## 1528 Entire condominium (condo) Entire home/apt 5.00
## 1529 Private room in condominium (condo) Private room 5.00
## 1530 Private room in serviced apartment Private room 5.00
## 1531 Room in hotel Private room 5.00
## 1532 Shared room in bed and breakfast Shared room 5.00
## 1533 Private room in rental unit Private room 3.00
## 1534 Entire rental unit Entire home/apt 5.00
## 1535 Private room in rental unit Private room 5.00
## 1536 Entire rental unit Entire home/apt 5.00
## 1537 Private room in condominium (condo) Private room 5.00
## 1538 Private room in rental unit Private room 3.00
## Neighbourhood host_response_time host_response_rate
## 1 Downtown Core within an hour <NA>
## 2 Southern Islands within an hour <NA>
## 3 Downtown Core within an hour <NA>
## 4 Geylang within an hour <NA>
## 5 Punggol within an hour <NA>
## 6 Rochor within a day <NA>
## 7 Downtown Core within an hour <NA>
## 8 Singapore River within a few hours <NA>
## 9 River Valley within a few hours <NA>
## 10 River Valley within an hour <NA>
## 11 Kallang N/A <NA>
## 12 Bukit Merah N/A <NA>
## 13 Rochor within an hour <NA>
## 14 Downtown Core within an hour <NA>
## 15 Toa Payoh within a day <NA>
## 16 Downtown Core within an hour <NA>
## 17 Downtown Core within an hour <NA>
## 18 Rochor N/A <NA>
## 19 Outram within a few hours <NA>
## 20 Downtown Core within a few hours <NA>
## 21 Toa Payoh within a day <NA>
## 22 Marine Parade within an hour <NA>
## 23 Kallang within an hour <NA>
## 24 Bukit Merah N/A <NA>
## 25 Rochor within a few hours <NA>
## 26 Bedok within a few hours <NA>
## 27 Rochor within an hour <NA>
## 28 Kallang N/A <NA>
## 29 Rochor within an hour <NA>
## 30 Downtown Core within a few hours <NA>
## 31 Rochor within a few hours <NA>
## 32 Bukit Merah within an hour <NA>
## 33 Bukit Merah N/A <NA>
## 34 Outram within a few hours <NA>
## 35 Bukit Merah within an hour <NA>
## 36 Singapore River within a few hours <NA>
## 37 Bukit Merah N/A <NA>
## 38 Outram N/A <NA>
## 39 Geylang within a few hours <NA>
## 40 Rochor within an hour <NA>
## 41 Newton within a few hours <NA>
## 42 Outram within a few hours <NA>
## 43 Hougang within an hour <NA>
## 44 Kallang within an hour <NA>
## 45 Bedok within a day <NA>
## 46 Bukit Merah N/A <NA>
## 47 Bedok within a day <NA>
## 48 Outram within a few hours <NA>
## 49 Kallang within a few hours <NA>
## 50 Bukit Merah within an hour <NA>
## 51 Downtown Core within an hour <NA>
## 52 Downtown Core within an hour <NA>
## 53 Rochor within a few hours <NA>
## 54 Rochor within an hour <NA>
## 55 Downtown Core within a few hours <NA>
## 56 Kallang within a few hours <NA>
## 57 Rochor within an hour <NA>
## 58 Serangoon within an hour <NA>
## 59 Outram within a few hours <NA>
## 60 Geylang within a few hours <NA>
## 61 Orchard within a few hours <NA>
## 62 Kallang within a few hours <NA>
## 63 Rochor within an hour <NA>
## 64 Punggol within an hour <NA>
## 65 Tanglin a few days or more <NA>
## 66 Geylang within an hour <NA>
## 67 Outram within an hour <NA>
## 68 Serangoon within a few hours <NA>
## 69 River Valley within a few hours <NA>
## 70 Pasir Ris within an hour <NA>
## 71 Novena within a few hours <NA>
## 72 Geylang within a few hours <NA>
## 73 Geylang within an hour <NA>
## 74 Kallang within a few hours <NA>
## 75 Hougang within an hour <NA>
## 76 Kallang within an hour <NA>
## 77 Geylang within a few hours <NA>
## 78 Downtown Core within a day <NA>
## 79 Marine Parade within a day <NA>
## 80 Kallang within a few hours <NA>
## 81 Kallang within a few hours <NA>
## 82 Kallang within a few hours <NA>
## 83 Sengkang N/A <NA>
## 84 Rochor within a day <NA>
## 85 Bukit Merah within an hour <NA>
## 86 Novena within an hour <NA>
## 87 Kallang within an hour <NA>
## 88 Marine Parade within an hour <NA>
## 89 Geylang within a few hours <NA>
## 90 Rochor within a day <NA>
## 91 Kallang within a day <NA>
## 92 Novena within a few hours <NA>
## 93 Outram within an hour <NA>
## 94 Kallang within an hour <NA>
## 95 Downtown Core within a day <NA>
## 96 Kallang within a few hours <NA>
## 97 Kallang within a few hours <NA>
## 98 Kallang within a few hours <NA>
## 99 Geylang within an hour <NA>
## 100 Newton within an hour <NA>
## 101 Outram within an hour <NA>
## 102 Outram within an hour <NA>
## 103 Bukit Merah within a few hours <NA>
## 104 Geylang within an hour <NA>
## 105 Yishun a few days or more <NA>
## 106 Kallang within a few hours <NA>
## 107 Geylang within an hour <NA>
## 108 Kallang within a few hours <NA>
## 109 Rochor within an hour <NA>
## 110 Outram within an hour <NA>
## 111 Outram within a few hours <NA>
## 112 Rochor within a day <NA>
## 113 Outram within a few hours <NA>
## 114 Rochor within a day <NA>
## 115 Bukit Timah within a few hours <NA>
## 116 Geylang within an hour <NA>
## 117 Geylang within an hour <NA>
## 118 Bukit Merah <NA>
## 119 Rochor a few days or more <NA>
## 120 Geylang within an hour <NA>
## 121 Geylang within an hour <NA>
## 122 Kallang within a few hours <NA>
## 123 River Valley within a few hours <NA>
## 124 Geylang within an hour <NA>
## 125 Outram within a few hours <NA>
## 126 Novena within a few hours <NA>
## 127 Kallang within a few hours <NA>
## 128 Bedok within an hour <NA>
## 129 River Valley within a few hours <NA>
## 130 Kallang within a few hours <NA>
## 131 Rochor within an hour <NA>
## 132 Rochor within an hour <NA>
## 133 Tampines within a day <NA>
## 134 River Valley within a day <NA>
## 135 Geylang within a few hours <NA>
## 136 Geylang within an hour <NA>
## 137 Geylang within an hour <NA>
## 138 Queenstown within an hour <NA>
## 139 Bedok within an hour <NA>
## 140 Outram within a few hours <NA>
## 141 Downtown Core within a few hours <NA>
## 142 Rochor within a day <NA>
## 143 Downtown Core a few days or more <NA>
## 144 Bedok N/A <NA>
## 145 Jurong West within an hour <NA>
## 146 Geylang within an hour <NA>
## 147 Outram within an hour <NA>
## 148 River Valley within a few hours <NA>
## 149 Outram within an hour <NA>
## 150 Geylang within an hour <NA>
## 151 Rochor a few days or more <NA>
## 152 Rochor within a day <NA>
## 153 Jurong West N/A <NA>
## 154 Marine Parade within a day <NA>
## 155 Geylang within an hour <NA>
## 156 Outram within a day <NA>
## 157 Outram within a few hours <NA>
## 158 Geylang within an hour <NA>
## 159 Queenstown within an hour <NA>
## 160 Tampines within a day <NA>
## 161 Singapore River within an hour <NA>
## 162 Geylang within a few hours <NA>
## 163 Downtown Core within a day <NA>
## 164 Outram N/A <NA>
## 165 Geylang within an hour <NA>
## 166 Outram within a few hours <NA>
## 167 Outram within a few hours <NA>
## 168 Downtown Core within a few hours <NA>
## 169 Tampines within a day <NA>
## 170 Geylang within a day <NA>
## 171 Bedok within a few hours <NA>
## 172 Outram within a few hours <NA>
## 173 Outram within an hour <NA>
## 174 Bukit Merah within an hour <NA>
## 175 Geylang within a few hours <NA>
## 176 Geylang within a few hours <NA>
## 177 Geylang within a few hours <NA>
## 178 Geylang within an hour <NA>
## 179 Kallang within an hour <NA>
## 180 Bukit Merah within a day <NA>
## 181 Geylang within a few hours <NA>
## 182 Kallang within a day <NA>
## 183 Kallang within an hour <NA>
## 184 Kallang within an hour <NA>
## 185 Geylang within an hour <NA>
## 186 Geylang within an hour <NA>
## 187 Downtown Core within an hour <NA>
## 188 Tampines within a day <NA>
## 189 River Valley within a few hours <NA>
## 190 Newton within an hour <NA>
## 191 Geylang within a few hours <NA>
## 192 Serangoon within a few hours <NA>
## 193 Rochor a few days or more <NA>
## 194 Bukit Merah within an hour <NA>
## 195 Geylang within a few hours <NA>
## 196 Rochor within an hour <NA>
## 197 Tampines within a day <NA>
## 198 Queenstown within a day <NA>
## 199 Kallang within an hour <NA>
## 200 Kallang within a day <NA>
## 201 Kallang within an hour <NA>
## 202 Kallang within an hour <NA>
## 203 Bedok within an hour <NA>
## 204 Rochor a few days or more <NA>
## 205 River Valley within a few hours <NA>
## 206 Pasir Ris within a few hours <NA>
## 207 Downtown Core within a few hours <NA>
## 208 Kallang within a few hours <NA>
## 209 Hougang a few days or more <NA>
## 210 Outram within an hour <NA>
## 211 Outram within a few hours <NA>
## 212 Singapore River within an hour <NA>
## 213 Geylang within an hour <NA>
## 214 Geylang within an hour <NA>
## 215 Bedok within a day <NA>
## 216 River Valley within a few hours <NA>
## 217 Geylang a few days or more <NA>
## 218 Marine Parade N/A <NA>
## 219 Geylang within an hour <NA>
## 220 River Valley within an hour <NA>
## 221 Outram a few days or more <NA>
## 222 Jurong West within an hour <NA>
## 223 Outram within a few hours <NA>
## 224 Kallang within an hour <NA>
## 225 Bukit Merah N/A <NA>
## 226 Outram N/A <NA>
## 227 Newton within a day <NA>
## 228 Novena within an hour <NA>
## 229 Outram within an hour <NA>
## 230 Bedok N/A <NA>
## 231 Geylang within an hour <NA>
## 232 Marine Parade N/A <NA>
## 233 Kallang within an hour <NA>
## 234 Kallang within an hour <NA>
## 235 Kallang within an hour <NA>
## 236 Kallang within a few hours <NA>
## 237 Tampines N/A <NA>
## 238 Geylang within a day <NA>
## 239 Bedok within a few hours <NA>
## 240 River Valley <NA>
## 241 River Valley within a few hours <NA>
## 242 Bukit Merah within a day <NA>
## 243 Geylang within a day <NA>
## 244 River Valley within a day <NA>
## 245 Outram within a few hours <NA>
## 246 Geylang within an hour <NA>
## 247 Woodlands within an hour <NA>
## 248 Jurong West within a day <NA>
## 249 River Valley within an hour <NA>
## 250 Bukit Timah within an hour <NA>
## 251 Novena a few days or more <NA>
## 252 Bukit Timah within a day <NA>
## 253 Geylang within an hour <NA>
## 254 Outram within a few hours <NA>
## 255 Bedok a few days or more <NA>
## 256 Outram within an hour <NA>
## 257 Outram within an hour <NA>
## 258 Kallang within an hour <NA>
## 259 Bukit Merah within an hour <NA>
## 260 Marine Parade N/A <NA>
## 261 Rochor within an hour <NA>
## 262 Outram within a day <NA>
## 263 Tampines within a day <NA>
## 264 Bedok within an hour <NA>
## 265 Geylang within an hour <NA>
## 266 Geylang within a few hours <NA>
## 267 Rochor a few days or more <NA>
## 268 Rochor a few days or more <NA>
## 269 Bedok within an hour <NA>
## 270 Outram within a few hours <NA>
## 271 Tanglin a few days or more <NA>
## 272 River Valley within an hour <NA>
## 273 Geylang within a day <NA>
## 274 River Valley within an hour <NA>
## 275 Serangoon within a day <NA>
## 276 Outram within a few hours <NA>
## 277 Geylang within a few hours <NA>
## 278 Geylang within a few hours <NA>
## 279 Novena a few days or more <NA>
## 280 Kallang within a few hours <NA>
## 281 River Valley within a few hours <NA>
## 282 Kallang within an hour <NA>
## 283 Outram within a few hours <NA>
## 284 Novena within a few hours <NA>
## 285 Outram within a day <NA>
## 286 River Valley within a few hours <NA>
## 287 River Valley within a few hours <NA>
## 288 Rochor within a few hours <NA>
## 289 Downtown Core within an hour <NA>
## 290 Rochor within an hour <NA>
## 291 Outram N/A <NA>
## 292 Geylang within a few hours <NA>
## 293 Woodlands within a few hours <NA>
## 294 Clementi within a few hours <NA>
## 295 Outram within a few hours <NA>
## 296 Novena a few days or more <NA>
## 297 Rochor within an hour <NA>
## 298 Geylang within a few hours <NA>
## 299 Rochor a few days or more <NA>
## 300 Geylang within an hour <NA>
## 301 Outram within a day <NA>
## 302 Geylang within a day <NA>
## 303 Newton within a few hours <NA>
## 304 Geylang within a day <NA>
## 305 Geylang within a few hours <NA>
## 306 Geylang within a few hours <NA>
## 307 Kallang within a few hours <NA>
## 308 Punggol within a day <NA>
## 309 Jurong West within a few hours <NA>
## 310 Geylang within a day <NA>
## 311 Bedok within a day <NA>
## 312 Downtown Core N/A <NA>
## 313 Geylang within an hour <NA>
## 314 Toa Payoh within a few hours <NA>
## 315 Outram within a few hours <NA>
## 316 Geylang within a day <NA>
## 317 Outram within an hour <NA>
## 318 Woodlands within an hour <NA>
## 319 Outram within an hour <NA>
## 320 Museum within an hour <NA>
## 321 Geylang within a day <NA>
## 322 Tanglin within an hour <NA>
## 323 Geylang within an hour <NA>
## 324 Choa Chu Kang within an hour <NA>
## 325 Rochor within a day <NA>
## 326 Geylang within an hour <NA>
## 327 Downtown Core a few days or more <NA>
## 328 River Valley within an hour <NA>
## 329 Bukit Merah a few days or more <NA>
## 330 Novena within an hour <NA>
## 331 Tampines within a day <NA>
## 332 Geylang within a day <NA>
## 333 Tanglin within an hour <NA>
## 334 Serangoon within a few hours <NA>
## 335 Rochor a few days or more <NA>
## 336 Bedok N/A <NA>
## 337 Bedok N/A <NA>
## 338 Kallang a few days or more <NA>
## 339 Serangoon within a few hours <NA>
## 340 Bishan a few days or more <NA>
## 341 Downtown Core within an hour <NA>
## 342 Geylang within an hour <NA>
## 343 Geylang within a few hours <NA>
## 344 Kallang within an hour <NA>
## 345 Rochor within a day <NA>
## 346 Outram within a few hours <NA>
## 347 Bedok within an hour <NA>
## 348 Bukit Merah within an hour <NA>
## 349 Outram within a day <NA>
## 350 Bukit Merah a few days or more <NA>
## 351 Bukit Merah a few days or more <NA>
## 352 Marine Parade N/A <NA>
## 353 Newton within a few hours <NA>
## 354 Geylang within an hour <NA>
## 355 Geylang within a day <NA>
## 356 Geylang within an hour <NA>
## 357 Bedok within an hour <NA>
## 358 Woodlands within an hour <NA>
## 359 Kallang within a few hours <NA>
## 360 River Valley within a day <NA>
## 361 Geylang within an hour <NA>
## 362 Downtown Core within a few hours <NA>
## 363 Bedok a few days or more <NA>
## 364 Downtown Core within a day <NA>
## 365 Outram within a few hours <NA>
## 366 Outram within an hour <NA>
## 367 Rochor within an hour <NA>
## 368 River Valley within a few hours <NA>
## 369 Geylang within a few hours <NA>
## 370 Geylang within a few hours <NA>
## 371 Kallang within a day <NA>
## 372 Jurong West a few days or more <NA>
## 373 Marine Parade within a day <NA>
## 374 Geylang within a day <NA>
## 375 Kallang within an hour <NA>
## 376 Jurong West within a day <NA>
## 377 Novena a few days or more <NA>
## 378 Geylang N/A <NA>
## 379 Outram within a few hours <NA>
## 380 Bukit Timah within a day <NA>
## 381 Geylang within a few hours <NA>
## 382 Singapore River within a day <NA>
## 383 Singapore River within a day <NA>
## 384 Downtown Core within a few hours <NA>
## 385 Kallang within an hour <NA>
## 386 Marine Parade N/A <NA>
## 387 Tanglin <NA>
## 388 Geylang within an hour <NA>
## 389 Geylang within a few hours <NA>
## 390 Newton within a few hours <NA>
## 391 Geylang within an hour <NA>
## 392 Outram within a day <NA>
## 393 Bukit Timah within an hour <NA>
## 394 Kallang within a day <NA>
## 395 Bukit Timah within an hour <NA>
## 396 Pasir Ris within an hour <NA>
## 397 Bukit Timah within an hour <NA>
## 398 Jurong West within a day <NA>
## 399 Jurong West within an hour <NA>
## 400 Bedok a few days or more <NA>
## 401 Geylang within an hour <NA>
## 402 Singapore River within an hour <NA>
## 403 Outram N/A <NA>
## 404 Rochor within an hour <NA>
## 405 Geylang N/A <NA>
## 406 River Valley within an hour <NA>
## 407 Tanglin within an hour <NA>
## 408 Kallang N/A <NA>
## 409 Clementi within an hour <NA>
## 410 Geylang a few days or more <NA>
## 411 Bukit Merah a few days or more <NA>
## 412 Kallang within a few hours <NA>
## 413 Geylang within a day <NA>
## 414 Geylang within a day <NA>
## 415 Geylang within a few hours <NA>
## 416 Geylang within a few hours <NA>
## 417 Geylang within a day <NA>
## 418 Tampines within an hour <NA>
## 419 Kallang within an hour <NA>
## 420 Kallang within a day <NA>
## 421 Bukit Merah a few days or more <NA>
## 422 Outram within a few hours <NA>
## 423 Outram within a day <NA>
## 424 River Valley within a few hours <NA>
## 425 Novena a few days or more <NA>
## 426 Bedok a few days or more <NA>
## 427 Geylang within an hour <NA>
## 428 Outram within an hour <NA>
## 429 River Valley within an hour <NA>
## 430 Outram within an hour <NA>
## 431 Rochor a few days or more <NA>
## 432 River Valley within a few hours <NA>
## 433 Outram within an hour <NA>
## 434 Outram within an hour <NA>
## 435 Serangoon a few days or more <NA>
## 436 Downtown Core within an hour <NA>
## 437 Geylang within a few hours <NA>
## 438 Geylang within an hour <NA>
## 439 Outram within a day <NA>
## 440 Rochor within a few hours <NA>
## 441 Tanglin within an hour <NA>
## 442 Tampines a few days or more <NA>
## 443 Outram within a few hours <NA>
## 444 Serangoon within a day <NA>
## 445 Kallang within a few hours <NA>
## 446 Bedok within an hour <NA>
## 447 Novena a few days or more <NA>
## 448 Orchard within a day <NA>
## 449 Outram within a few hours <NA>
## 450 Outram within a few hours <NA>
## 451 Pasir Ris a few days or more <NA>
## 452 Bedok a few days or more <NA>
## 453 Jurong West within an hour <NA>
## 454 Choa Chu Kang within a few hours <NA>
## 455 Orchard within a day <NA>
## 456 Outram within an hour <NA>
## 457 Bukit Panjang within an hour <NA>
## 458 Novena within a day <NA>
## 459 Geylang within an hour <NA>
## 460 River Valley within a few hours <NA>
## 461 Outram within an hour <NA>
## 462 Yishun a few days or more <NA>
## 463 River Valley within a few hours <NA>
## 464 Kallang within an hour <NA>
## 465 Downtown Core within an hour <NA>
## 466 Kallang within a few hours <NA>
## 467 Bedok within a few hours <NA>
## 468 Geylang within a few hours <NA>
## 469 Serangoon within a day <NA>
## 470 Rochor a few days or more <NA>
## 471 Tanglin within an hour <NA>
## 472 Outram within a few hours <NA>
## 473 Outram within an hour <NA>
## 474 Geylang within a few hours <NA>
## 475 Bukit Merah N/A <NA>
## 476 Outram N/A <NA>
## 477 Singapore River within an hour <NA>
## 478 Rochor within an hour <NA>
## 479 Outram within a few hours <NA>
## 480 Kallang within an hour <NA>
## 481 Tanglin within an hour <NA>
## 482 Bedok a few days or more <NA>
## 483 Kallang within an hour <NA>
## 484 Outram within an hour <NA>
## 485 Outram a few days or more <NA>
## 486 Outram within a few hours <NA>
## 487 Outram within an hour <NA>
## 488 Outram within an hour <NA>
## 489 Rochor a few days or more <NA>
## 490 Outram within an hour <NA>
## 491 Rochor a few days or more <NA>
## 492 Outram within an hour <NA>
## 493 Choa Chu Kang within an hour <NA>
## 494 Marine Parade N/A <NA>
## 495 Rochor within an hour <NA>
## 496 Serangoon within an hour <NA>
## 497 Jurong West within a day <NA>
## 498 Queenstown within a few hours <NA>
## 499 Bukit Timah within a few hours <NA>
## 500 Geylang within a day <NA>
## 501 Geylang within a few hours <NA>
## 502 Geylang within a few hours <NA>
## 503 Geylang within an hour <NA>
## 504 Punggol within a few hours <NA>
## 505 Novena within a few hours <NA>
## 506 Kallang within a few hours <NA>
## 507 Downtown Core within a day <NA>
## 508 Bedok within an hour <NA>
## 509 Ang Mo Kio N/A <NA>
## 510 Orchard within a day <NA>
## 511 Novena a few days or more <NA>
## 512 Downtown Core within a day <NA>
## 513 Kallang within an hour <NA>
## 514 River Valley within a few hours <NA>
## 515 Kallang N/A <NA>
## 516 Hougang within an hour <NA>
## 517 Outram a few days or more <NA>
## 518 Outram a few days or more <NA>
## 519 Bishan N/A <NA>
## 520 Singapore River N/A <NA>
## 521 River Valley within a few hours <NA>
## 522 Rochor within an hour <NA>
## 523 Queenstown within a day <NA>
## 524 Outram within a day <NA>
## 525 Bukit Merah a few days or more <NA>
## 526 Bukit Merah a few days or more <NA>
## 527 Downtown Core within an hour <NA>
## 528 Downtown Core within an hour <NA>
## 529 Tanglin within an hour <NA>
## 530 Geylang within an hour <NA>
## 531 Tanglin within an hour <NA>
## 532 Hougang within a few hours <NA>
## 533 Tanglin within an hour <NA>
## 534 Outram within an hour <NA>
## 535 Tanglin within an hour <NA>
## 536 Clementi within a few hours <NA>
## 537 Geylang within a few hours <NA>
## 538 Geylang within an hour <NA>
## 539 Rochor a few days or more <NA>
## 540 Outram N/A <NA>
## 541 Singapore River within a day <NA>
## 542 Kallang within an hour <NA>
## 543 Serangoon within a few hours <NA>
## 544 Woodlands within an hour <NA>
## 545 Choa Chu Kang a few days or more <NA>
## 546 Singapore River within a few hours <NA>
## 547 Novena a few days or more <NA>
## 548 Jurong West within an hour <NA>
## 549 Jurong West N/A <NA>
## 550 Orchard within a day <NA>
## 551 Geylang within a few hours <NA>
## 552 Geylang within a few hours <NA>
## 553 Geylang within a few hours <NA>
## 554 Tanglin within an hour <NA>
## 555 Outram a few days or more <NA>
## 556 Novena within a day <NA>
## 557 Sengkang a few days or more <NA>
## 558 Woodlands a few days or more <NA>
## 559 Outram N/A <NA>
## 560 Geylang within an hour <NA>
## 561 Rochor within a few hours <NA>
## 562 Novena within an hour <NA>
## 563 Marina South within an hour <NA>
## 564 Tampines within a day <NA>
## 565 Woodlands within a few hours <NA>
## 566 Geylang within a few hours <NA>
## 567 Rochor a few days or more <NA>
## 568 Outram within a few hours <NA>
## 569 Queenstown within a few hours <NA>
## 570 Geylang within a day <NA>
## 571 Outram within a few hours <NA>
## 572 Geylang within a day <NA>
## 573 Novena a few days or more <NA>
## 574 Singapore River within an hour <NA>
## 575 Rochor within an hour <NA>
## 576 Jurong East within a few hours <NA>
## 577 Bedok a few days or more <NA>
## 578 Outram within a few hours <NA>
## 579 Outram within a few hours <NA>
## 580 Choa Chu Kang within an hour <NA>
## 581 Punggol within an hour <NA>
## 582 Outram within a few hours <NA>
## 583 Rochor within an hour <NA>
## 584 Kallang within a few hours <NA>
## 585 Rochor within a day <NA>
## 586 Outram within a day <NA>
## 587 Geylang within an hour <NA>
## 588 Outram within a few hours <NA>
## 589 Bedok within an hour <NA>
## 590 Downtown Core within a few hours <NA>
## 591 Geylang within an hour <NA>
## 592 Geylang within a few hours <NA>
## 593 Geylang within a few hours <NA>
## 594 Geylang within a few hours <NA>
## 595 Bedok a few days or more <NA>
## 596 Kallang within an hour <NA>
## 597 Geylang within a few hours <NA>
## 598 Queenstown within a few hours <NA>
## 599 Newton within a few hours <NA>
## 600 Newton within a few hours <NA>
## 601 River Valley within a day <NA>
## 602 Downtown Core within a day <NA>
## 603 Orchard within a day <NA>
## 604 Downtown Core N/A <NA>
## 605 Outram within an hour <NA>
## 606 Rochor within an hour <NA>
## 607 Geylang within a few hours <NA>
## 608 Jurong East within a day <NA>
## 609 Tanglin within an hour <NA>
## 610 Newton a few days or more <NA>
## 611 Outram within a few hours <NA>
## 612 Downtown Core N/A <NA>
## 613 Rochor within an hour <NA>
## 614 Outram within a few hours <NA>
## 615 Outram within a day <NA>
## 616 Downtown Core N/A <NA>
## 617 Geylang within an hour <NA>
## 618 Bukit Merah <NA>
## 619 Outram a few days or more <NA>
## 620 Jurong West N/A <NA>
## 621 Rochor a few days or more <NA>
## 622 Novena within a day <NA>
## 623 Woodlands within an hour <NA>
## 624 Novena N/A <NA>
## 625 Woodlands within an hour <NA>
## 626 Outram within a day <NA>
## 627 Toa Payoh within a day <NA>
## 628 Outram within a few hours <NA>
## 629 Tanglin within an hour <NA>
## 630 Geylang within a few hours <NA>
## 631 Tanglin within an hour <NA>
## 632 Outram within a few hours <NA>
## 633 Bukit Merah within a few hours <NA>
## 634 Geylang within an hour <NA>
## 635 Outram N/A <NA>
## 636 Downtown Core a few days or more <NA>
## 637 Bukit Batok a few days or more <NA>
## 638 Bedok within an hour <NA>
## 639 Newton within an hour <NA>
## 640 Bukit Timah within an hour <NA>
## 641 Jurong East within a few hours <NA>
## 642 Orchard within a day <NA>
## 643 Singapore River within an hour <NA>
## 644 Bedok a few days or more <NA>
## 645 Rochor within an hour <NA>
## 646 Geylang within a few hours <NA>
## 647 Geylang within a few hours <NA>
## 648 River Valley within a day <NA>
## 649 Bedok within a few hours <NA>
## 650 Museum a few days or more <NA>
## 651 Downtown Core within a few hours <NA>
## 652 Jurong West within an hour <NA>
## 653 River Valley within a few hours <NA>
## 654 Downtown Core within a few hours <NA>
## 655 Outram within a day <NA>
## 656 Geylang within a few hours <NA>
## 657 Kallang within a few hours <NA>
## 658 Outram a few days or more <NA>
## 659 Rochor within a few hours <NA>
## 660 Rochor within an hour <NA>
## 661 Yishun a few days or more <NA>
## 662 Geylang within a few hours <NA>
## 663 Singapore River within a day <NA>
## 664 Bukit Merah a few days or more <NA>
## 665 Woodlands within an hour <NA>
## 666 Geylang within an hour <NA>
## 667 Geylang within a few hours <NA>
## 668 Bishan within a few hours <NA>
## 669 Tanglin within an hour <NA>
## 670 Sengkang a few days or more <NA>
## 671 Geylang within an hour <NA>
## 672 Geylang within an hour <NA>
## 673 Geylang within a few hours <NA>
## 674 Rochor within a day <NA>
## 675 Outram within an hour <NA>
## 676 Rochor within an hour <NA>
## 677 Geylang within an hour <NA>
## 678 Punggol within a few hours <NA>
## 679 Geylang within an hour <NA>
## 680 Outram within an hour <NA>
## 681 Geylang within a few hours <NA>
## 682 Bedok within a few hours <NA>
## 683 Geylang within a few hours <NA>
## 684 Geylang within a few hours <NA>
## 685 Woodlands within a few hours <NA>
## 686 Queenstown within a day <NA>
## 687 Geylang within a day <NA>
## 688 Jurong West within a few hours <NA>
## 689 Geylang within a few hours <NA>
## 690 Bedok within an hour <NA>
## 691 Downtown Core within an hour <NA>
## 692 Novena within a few hours <NA>
## 693 Kallang within an hour <NA>
## 694 Downtown Core within a day <NA>
## 695 Bedok within an hour <NA>
## 696 Ang Mo Kio within a few hours <NA>
## 697 Bedok within a few hours <NA>
## 698 Outram within a few hours <NA>
## 699 Marine Parade N/A <NA>
## 700 Queenstown N/A <NA>
## 701 Serangoon a few days or more <NA>
## 702 Tampines within a few hours <NA>
## 703 River Valley within a day <NA>
## 704 Newton within an hour <NA>
## 705 Museum N/A <NA>
## 706 Outram N/A <NA>
## 707 Orchard within a day <NA>
## 708 Outram within a few hours <NA>
## 709 Singapore River within an hour <NA>
## 710 Downtown Core within a few hours <NA>
## 711 Bedok a few days or more <NA>
## 712 Rochor within a few hours <NA>
## 713 Outram within a few hours <NA>
## 714 Kallang a few days or more <NA>
## 715 Novena within a few hours <NA>
## 716 Punggol within a day <NA>
## 717 Outram a few days or more <NA>
## 718 Geylang within an hour <NA>
## 719 Bukit Merah <NA>
## 720 Downtown Core within a day <NA>
## 721 Singapore River within a day <NA>
## 722 Downtown Core within a day <NA>
## 723 Outram within an hour <NA>
## 724 Bukit Panjang a few days or more <NA>
## 725 Novena a few days or more <NA>
## 726 Orchard within a day <NA>
## 727 Woodlands within an hour <NA>
## 728 Bukit Merah within an hour <NA>
## 729 Geylang a few days or more <NA>
## 730 Bukit Merah a few days or more <NA>
## 731 Bukit Merah a few days or more <NA>
## 732 Bukit Merah a few days or more <NA>
## 733 Geylang a few days or more <NA>
## 734 River Valley within an hour <NA>
## 735 Geylang within an hour <NA>
## 736 Tanglin within a few hours <NA>
## 737 River Valley within a few hours <NA>
## 738 Geylang within a few hours <NA>
## 739 Downtown Core within a few hours <NA>
## 740 Rochor within an hour <NA>
## 741 Rochor within an hour <NA>
## 742 Outram within an hour <NA>
## 743 Downtown Core within an hour <NA>
## 744 Bukit Merah within a few hours <NA>
## 745 Marine Parade N/A <NA>
## 746 Geylang within a day <NA>
## 747 Toa Payoh within an hour <NA>
## 748 Kallang within an hour <NA>
## 749 Kallang within an hour <NA>
## 750 Geylang within an hour <NA>
## 751 Kallang within a day <NA>
## 752 Queenstown within a few hours <NA>
## 753 Kallang within a day <NA>
## 754 Kallang within a day <NA>
## 755 Geylang within a few hours <NA>
## 756 Serangoon within a day <NA>
## 757 Novena within a few hours <NA>
## 758 Outram within a few hours <NA>
## 759 Queenstown within an hour <NA>
## 760 Outram within a few hours <NA>
## 761 Singapore River within a few hours <NA>
## 762 Clementi a few days or more <NA>
## 763 Bedok within a few hours <NA>
## 764 Orchard within a day <NA>
## 765 Outram N/A <NA>
## 766 Outram within an hour <NA>
## 767 Bedok within a few hours <NA>
## 768 Jurong East within a day <NA>
## 769 Rochor within an hour <NA>
## 770 Outram within a few hours <NA>
## 771 Rochor within an hour <NA>
## 772 Orchard within a day <NA>
## 773 Downtown Core within a few hours <NA>
## 774 Outram N/A <NA>
## 775 Kallang within an hour <NA>
## 776 Outram within a few hours <NA>
## 777 Tanglin within an hour <NA>
## 778 Queenstown within a few hours <NA>
## 779 Outram within a few hours <NA>
## 780 Tanglin within an hour <NA>
## 781 Tanglin within an hour <NA>
## 782 Outram within a few hours <NA>
## 783 Bedok N/A <NA>
## 784 Singapore River within a few hours <NA>
## 785 Marine Parade within a few hours <NA>
## 786 Rochor within a few hours <NA>
## 787 Rochor within an hour <NA>
## 788 Bukit Merah within an hour <NA>
## 789 Outram within an hour <NA>
## 790 Downtown Core N/A <NA>
## 791 Jurong West within an hour <NA>
## 792 Downtown Core within a few hours <NA>
## 793 Rochor within a day <NA>
## 794 Queenstown within an hour <NA>
## 795 Geylang within an hour <NA>
## 796 Geylang a few days or more <NA>
## 797 Bukit Merah a few days or more <NA>
## 798 Rochor within an hour <NA>
## 799 Orchard a few days or more <NA>
## 800 Yishun within an hour <NA>
## 801 Bishan a few days or more <NA>
## 802 Jurong West within a day <NA>
## 803 Bedok within a few hours <NA>
## 804 Novena a few days or more <NA>
## 805 Novena a few days or more <NA>
## 806 Bukit Merah within a few hours <NA>
## 807 Novena a few days or more <NA>
## 808 Toa Payoh within a few hours <NA>
## 809 Novena within an hour <NA>
## 810 Bukit Merah within a few hours <NA>
## 811 Rochor within a day <NA>
## 812 Kallang within a few hours <NA>
## 813 Tanglin within a few hours <NA>
## 814 Tampines within a day <NA>
## 815 Marine Parade N/A <NA>
## 816 Newton within an hour <NA>
## 817 Tanglin within an hour <NA>
## 818 Queenstown within an hour <NA>
## 819 Kallang within a few hours <NA>
## 820 Bukit Merah within a few hours <NA>
## 821 Geylang within a few hours <NA>
## 822 Jurong East within a day <NA>
## 823 Bedok within an hour <NA>
## 824 Kallang within a day <NA>
## 825 Woodlands within an hour <NA>
## 826 Kallang within a few hours <NA>
## 827 Outram N/A <NA>
## 828 Kallang within an hour <NA>
## 829 Bishan within a few hours <NA>
## 830 Outram within an hour <NA>
## 831 Kallang within a day <NA>
## 832 Outram within a day <NA>
## 833 Queenstown within a few hours <NA>
## 834 Bedok a few days or more <NA>
## 835 Bedok within a few hours <NA>
## 836 Bedok within a few hours <NA>
## 837 Kallang within a day <NA>
## 838 Downtown Core within a day <NA>
## 839 Geylang within a few hours <NA>
## 840 Outram N/A <NA>
## 841 Bukit Batok within an hour <NA>
## 842 Clementi within a few hours <NA>
## 843 Queenstown a few days or more <NA>
## 844 Outram N/A <NA>
## 845 Singapore River within an hour <NA>
## 846 Kallang within an hour <NA>
## 847 Downtown Core within a few hours <NA>
## 848 River Valley within a day <NA>
## 849 Jurong East within a day <NA>
## 850 Bukit Batok within a day <NA>
## 851 River Valley within a day <NA>
## 852 Orchard within an hour <NA>
## 853 Newton within a few hours <NA>
## 854 Tanglin within an hour <NA>
## 855 Museum a few days or more <NA>
## 856 Outram within a few hours <NA>
## 857 Outram within a few hours <NA>
## 858 Tanglin within an hour <NA>
## 859 Geylang within an hour <NA>
## 860 Bedok within an hour <NA>
## 861 Geylang within a few hours <NA>
## 862 Kallang a few days or more <NA>
## 863 Orchard within a few hours <NA>
## 864 Jurong West within a few hours <NA>
## 865 Geylang within a day <NA>
## 866 Jurong East within a few hours <NA>
## 867 Bukit Merah within an hour <NA>
## 868 Jurong East within a few hours <NA>
## 869 Downtown Core within a few hours <NA>
## 870 Bedok within a few hours <NA>
## 871 Rochor a few days or more <NA>
## 872 Geylang within an hour <NA>
## 873 Bukit Merah a few days or more <NA>
## 874 Kallang N/A <NA>
## 875 Geylang within an hour <NA>
## 876 Punggol a few days or more <NA>
## 877 Jurong West N/A <NA>
## 878 Geylang a few days or more <NA>
## 879 Newton within a day <NA>
## 880 Marine Parade within an hour <NA>
## 881 Bukit Merah a few days or more <NA>
## 882 Kallang within an hour <NA>
## 883 Bedok within an hour <NA>
## 884 Downtown Core within a few hours <NA>
## 885 Downtown Core a few days or more <NA>
## 886 Geylang within an hour <NA>
## 887 Bukit Merah a few days or more <NA>
## 888 Bukit Merah a few days or more <NA>
## 889 Singapore River N/A <NA>
## 890 River Valley within a few hours <NA>
## 891 Geylang a few days or more <NA>
## 892 Yishun within an hour <NA>
## 893 Downtown Core within an hour <NA>
## 894 Downtown Core within an hour <NA>
## 895 Kallang within an hour <NA>
## 896 River Valley <NA>
## 897 Novena within an hour <NA>
## 898 Outram within an hour <NA>
## 899 Hougang N/A <NA>
## 900 Geylang within an hour <NA>
## 901 Rochor within an hour <NA>
## 902 Rochor within an hour <NA>
## 903 Geylang within an hour <NA>
## 904 Bukit Merah within a few hours <NA>
## 905 Bukit Merah within a few hours <NA>
## 906 Marine Parade N/A <NA>
## 907 Outram within an hour <NA>
## 908 Outram within an hour <NA>
## 909 Woodlands within a day <NA>
## 910 Queenstown N/A <NA>
## 911 Queenstown within an hour <NA>
## 912 Geylang within a few hours <NA>
## 913 Jurong East within a day <NA>
## 914 Bedok within an hour <NA>
## 915 Bedok within an hour <NA>
## 916 Rochor a few days or more <NA>
## 917 Outram N/A <NA>
## 918 Outram N/A <NA>
## 919 Downtown Core within an hour <NA>
## 920 Kallang within a day <NA>
## 921 Kallang within a day <NA>
## 922 Kallang within an hour <NA>
## 923 Rochor within a day <NA>
## 924 Geylang within a few hours <NA>
## 925 Geylang within a few hours <NA>
## 926 Geylang within a few hours <NA>
## 927 Kallang within a few hours <NA>
## 928 Bukit Timah within a few hours <NA>
## 929 Bedok within an hour <NA>
## 930 Kallang within an hour <NA>
## 931 Queenstown a few days or more <NA>
## 932 Tanglin N/A <NA>
## 933 Kallang within an hour <NA>
## 934 Bedok within an hour <NA>
## 935 Downtown Core within a few hours <NA>
## 936 River Valley within a day <NA>
## 937 Bedok a few days or more <NA>
## 938 Geylang within a few hours <NA>
## 939 Jurong West within a day <NA>
## 940 Bedok a few days or more <NA>
## 941 Downtown Core within a day <NA>
## 942 Downtown Core within a day <NA>
## 943 Marine Parade within a few hours <NA>
## 944 Novena a few days or more <NA>
## 945 Bedok within a few hours <NA>
## 946 Jurong East within a few hours <NA>
## 947 Orchard within an hour <NA>
## 948 Jurong West within a few hours <NA>
## 949 Jurong West a few days or more <NA>
## 950 Geylang within an hour <NA>
## 951 Orchard within a few hours <NA>
## 952 Bedok a few days or more <NA>
## 953 Bedok a few days or more <NA>
## 954 Bedok a few days or more <NA>
## 955 Rochor a few days or more <NA>
## 956 Downtown Core a few days or more <NA>
## 957 Downtown Core N/A <NA>
## 958 Bedok within a few hours <NA>
## 959 Bedok within a few hours <NA>
## 960 Singapore River within a few hours <NA>
## 961 Bedok within an hour <NA>
## 962 Downtown Core within a few hours <NA>
## 963 Jurong West within a day <NA>
## 964 Downtown Core within a few hours <NA>
## 965 Bedok N/A <NA>
## 966 Downtown Core N/A <NA>
## 967 Bukit Merah within a few hours <NA>
## 968 Bishan within a few hours <NA>
## 969 Clementi within a few hours <NA>
## 970 Toa Payoh within a few hours <NA>
## 971 Downtown Core a few days or more <NA>
## 972 Newton within a few hours <NA>
## 973 Queenstown within a few hours <NA>
## 974 Rochor within an hour <NA>
## 975 Singapore River within a day <NA>
## 976 Singapore River within a day <NA>
## 977 Bukit Merah within a few hours <NA>
## 978 Geylang within a few hours <NA>
## 979 Woodlands within an hour <NA>
## 980 Geylang within an hour <NA>
## 981 Geylang within a few hours <NA>
## 982 Tanglin within an hour <NA>
## 983 Kallang within a few hours <NA>
## 984 Kallang within a few hours <NA>
## 985 Kallang N/A <NA>
## 986 Kallang within a few hours <NA>
## 987 Novena a few days or more <NA>
## 988 Queenstown within an hour <NA>
## 989 Kallang within a few hours <NA>
## 990 Downtown Core within a few hours <NA>
## 991 Rochor within a day <NA>
## 992 Queenstown within an hour <NA>
## 993 Outram within an hour <NA>
## 994 Kallang within a few hours <NA>
## 995 Rochor within a day <NA>
## 996 Serangoon a few days or more <NA>
## 997 Novena within an hour <NA>
## 998 Downtown Core N/A <NA>
## 999 Bukit Merah within a few hours <NA>
## 1000 Geylang a few days or more <NA>
## 1001 Novena a few days or more <NA>
## 1002 Bukit Panjang N/A <NA>
## 1003 Bukit Merah a few days or more <NA>
## 1004 Jurong East N/A <NA>
## 1005 Bukit Merah a few days or more <NA>
## 1006 Bukit Panjang within a few hours <NA>
## 1007 Geylang a few days or more <NA>
## 1008 Bukit Panjang within a day <NA>
## 1009 Kallang within an hour <NA>
## 1010 Rochor a few days or more <NA>
## 1011 Novena within an hour <NA>
## 1012 Bedok within a few hours <NA>
## 1013 Rochor within a day <NA>
## 1014 Downtown Core within a few hours <NA>
## 1015 Kallang within an hour <NA>
## 1016 Outram within a few hours <NA>
## 1017 Tanglin within an hour <NA>
## 1018 Bukit Merah within a few hours <NA>
## 1019 Novena within a few hours <NA>
## 1020 Woodlands within an hour <NA>
## 1021 Downtown Core within a few hours <NA>
## 1022 Orchard within a day <NA>
## 1023 Marina South within an hour <NA>
## 1024 Queenstown a few days or more <NA>
## 1025 River Valley within a few hours <NA>
## 1026 Choa Chu Kang within an hour <NA>
## 1027 River Valley within a few hours <NA>
## 1028 Kallang within a few hours <NA>
## 1029 Bukit Merah within a few hours <NA>
## 1030 Bukit Merah within a few hours <NA>
## 1031 Downtown Core within a day <NA>
## 1032 Hougang within an hour <NA>
## 1033 Museum a few days or more <NA>
## 1034 Outram within an hour <NA>
## 1035 Bishan within a few hours <NA>
## 1036 Sembawang within an hour <NA>
## 1037 Choa Chu Kang a few days or more <NA>
## 1038 Kallang within an hour <NA>
## 1039 Yishun N/A <NA>
## 1040 Bukit Merah N/A <NA>
## 1041 Tanglin N/A <NA>
## 1042 Rochor a few days or more <NA>
## 1043 Rochor a few days or more <NA>
## 1044 Downtown Core N/A <NA>
## 1045 Singapore River a few days or more <NA>
## 1046 Downtown Core a few days or more <NA>
## 1047 Outram within a few hours <NA>
## 1048 Kallang within a day <NA>
## 1049 Jurong West N/A <NA>
## 1050 Mandai N/A <NA>
## 1051 Rochor a few days or more <NA>
## 1052 Kallang within a few hours <NA>
## 1053 Kallang within an hour <NA>
## 1054 Kallang within an hour <NA>
## 1055 Serangoon a few days or more <NA>
## 1056 Museum within an hour <NA>
## 1057 Bedok within a day <NA>
## 1058 Kallang within a day <NA>
## 1059 Queenstown within a few hours <NA>
## 1060 Bedok within a few hours <NA>
## 1061 Kallang within a few hours <NA>
## 1062 Geylang within a few hours <NA>
## 1063 Geylang within a few hours <NA>
## 1064 Bedok within an hour <NA>
## 1065 Kallang a few days or more <NA>
## 1066 Novena a few days or more <NA>
## 1067 Woodlands within a few hours <NA>
## 1068 Tanglin within an hour <NA>
## 1069 Geylang within a few hours <NA>
## 1070 Outram within a day <NA>
## 1071 Tampines within an hour <NA>
## 1072 Novena N/A <NA>
## 1073 Bukit Panjang a few days or more <NA>
## 1074 Queenstown a few days or more <NA>
## 1075 Kallang within an hour <NA>
## 1076 Kallang within an hour <NA>
## 1077 Outram within a few hours <NA>
## 1078 Orchard within a day <NA>
## 1079 Bedok a few days or more <NA>
## 1080 Outram within a few hours <NA>
## 1081 Queenstown within a day <NA>
## 1082 Rochor within an hour <NA>
## 1083 Museum within an hour <NA>
## 1084 Bishan N/A <NA>
## 1085 River Valley within a day <NA>
## 1086 Outram within a few hours <NA>
## 1087 Bedok N/A <NA>
## 1088 Outram N/A <NA>
## 1089 Bedok within an hour <NA>
## 1090 Novena a few days or more <NA>
## 1091 Novena within an hour <NA>
## 1092 Kallang within a day <NA>
## 1093 Outram N/A <NA>
## 1094 Bedok within a few hours <NA>
## 1095 Geylang within a day <NA>
## 1096 Queenstown a few days or more <NA>
## 1097 Geylang within a few hours <NA>
## 1098 Kallang within an hour <NA>
## 1099 Kallang within a few hours <NA>
## 1100 Kallang within a few hours <NA>
## 1101 River Valley within a day <NA>
## 1102 River Valley within a day <NA>
## 1103 Rochor within an hour <NA>
## 1104 Novena within a few hours <NA>
## 1105 Singapore River within an hour <NA>
## 1106 Bedok a few days or more <NA>
## 1107 Bedok a few days or more <NA>
## 1108 Bedok a few days or more <NA>
## 1109 Bedok a few days or more <NA>
## 1110 Bedok a few days or more <NA>
## 1111 Bedok a few days or more <NA>
## 1112 Newton within an hour <NA>
## 1113 Newton within a few hours <NA>
## 1114 Queenstown within a few hours <NA>
## 1115 Museum a few days or more <NA>
## 1116 Downtown Core a few days or more <NA>
## 1117 Rochor a few days or more <NA>
## 1118 Ang Mo Kio N/A <NA>
## 1119 Queenstown a few days or more <NA>
## 1120 Kallang within a few hours <NA>
## 1121 Outram within a few hours <NA>
## 1122 Novena within a few hours <NA>
## 1123 Bukit Timah within an hour <NA>
## 1124 Outram within a few hours <NA>
## 1125 Bedok within an hour <NA>
## 1126 Bukit Batok a few days or more <NA>
## 1127 Downtown Core within a few hours <NA>
## 1128 Outram within an hour <NA>
## 1129 River Valley within a day <NA>
## 1130 Rochor within an hour <NA>
## 1131 Kallang a few days or more <NA>
## 1132 Kallang a few days or more <NA>
## 1133 Geylang within a few hours <NA>
## 1134 Outram N/A <NA>
## 1135 Jurong East within a few hours <NA>
## 1136 Downtown Core within a few hours <NA>
## 1137 Geylang within a few hours <NA>
## 1138 Kallang within an hour <NA>
## 1139 Jurong East within a day <NA>
## 1140 Kallang within an hour <NA>
## 1141 Bedok a few days or more <NA>
## 1142 Geylang within an hour <NA>
## 1143 Toa Payoh within a few hours <NA>
## 1144 Jurong East within a few hours <NA>
## 1145 Outram within a few hours <NA>
## 1146 Hougang within an hour <NA>
## 1147 Outram within a few hours <NA>
## 1148 Downtown Core within a few hours <NA>
## 1149 Bishan within a few hours <NA>
## 1150 Jurong East within a few hours <NA>
## 1151 Novena within a few hours <NA>
## 1152 Downtown Core within an hour <NA>
## 1153 Clementi within a few hours <NA>
## 1154 Kallang within a few hours <NA>
## 1155 Bukit Merah within a few hours <NA>
## 1156 Bukit Merah within a few hours <NA>
## 1157 Bukit Merah within a day <NA>
## 1158 Bukit Merah within a few hours <NA>
## 1159 Outram within a few hours <NA>
## 1160 Downtown Core within a few hours <NA>
## 1161 Kallang within a few hours <NA>
## 1162 Geylang within a few hours <NA>
## 1163 Jurong East within a few hours <NA>
## 1164 Bedok within an hour <NA>
## 1165 Geylang within a few hours <NA>
## 1166 Rochor within an hour <NA>
## 1167 Rochor within an hour <NA>
## 1168 Bukit Merah a few days or more <NA>
## 1169 Singapore River within a few hours <NA>
## 1170 Kallang within an hour <NA>
## 1171 Rochor a few days or more <NA>
## 1172 Woodlands within an hour <NA>
## 1173 Rochor within a few hours <NA>
## 1174 Kallang within a few hours <NA>
## 1175 Hougang within a few hours <NA>
## 1176 Bukit Merah a few days or more <NA>
## 1177 Clementi within a few hours <NA>
## 1178 Kallang within an hour <NA>
## 1179 Outram within an hour <NA>
## 1180 Kallang within a few hours <NA>
## 1181 Outram within a day <NA>
## 1182 Rochor within a few hours <NA>
## 1183 Novena a few days or more <NA>
## 1184 Kallang within a few hours <NA>
## 1185 Kallang within a few hours <NA>
## 1186 Woodlands within a day <NA>
## 1187 Serangoon within a few hours <NA>
## 1188 Jurong West within a few hours <NA>
## 1189 Rochor within a day <NA>
## 1190 Kallang a few days or more <NA>
## 1191 Jurong East within a few hours <NA>
## 1192 Ang Mo Kio a few days or more <NA>
## 1193 Woodlands within a few hours <NA>
## 1194 Hougang within an hour <NA>
## 1195 Kallang within an hour <NA>
## 1196 Kallang within a few hours <NA>
## 1197 Novena within an hour <NA>
## 1198 Geylang within a few hours <NA>
## 1199 Outram within an hour <NA>
## 1200 Downtown Core within a few hours <NA>
## 1201 Kallang within a few hours <NA>
## 1202 Tanglin a few days or more <NA>
## 1203 Kallang within a day <NA>
## 1204 Geylang a few days or more <NA>
## 1205 Bukit Timah within an hour <NA>
## 1206 Woodlands within a day <NA>
## 1207 Geylang a few days or more <NA>
## 1208 Rochor within an hour <NA>
## 1209 Downtown Core within an hour <NA>
## 1210 Bukit Merah a few days or more <NA>
## 1211 Bukit Merah a few days or more <NA>
## 1212 Bukit Merah a few days or more <NA>
## 1213 Rochor within an hour <NA>
## 1214 Outram within a day <NA>
## 1215 Outram a few days or more <NA>
## 1216 Marine Parade a few days or more <NA>
## 1217 Queenstown within a few hours <NA>
## 1218 Kallang a few days or more <NA>
## 1219 Rochor within an hour <NA>
## 1220 Kallang a few days or more <NA>
## 1221 Kallang a few days or more <NA>
## 1222 Rochor within a day <NA>
## 1223 Queenstown within an hour <NA>
## 1224 Bukit Timah N/A <NA>
## 1225 Queenstown within an hour <NA>
## 1226 Downtown Core within a few hours <NA>
## 1227 Kallang within an hour <NA>
## 1228 Serangoon within an hour <NA>
## 1229 Downtown Core within a few hours <NA>
## 1230 Downtown Core N/A <NA>
## 1231 Bedok within a few hours <NA>
## 1232 Bedok within a few hours <NA>
## 1233 Bedok within an hour <NA>
## 1234 Bedok within an hour <NA>
## 1235 Outram within a day <NA>
## 1236 Outram within an hour <NA>
## 1237 Geylang within a few hours <NA>
## 1238 Novena a few days or more <NA>
## 1239 Rochor within a few hours <NA>
## 1240 Kallang within an hour <NA>
## 1241 Marine Parade within a few hours <NA>
## 1242 River Valley within a few hours <NA>
## 1243 Novena within an hour <NA>
## 1244 Queenstown a few days or more <NA>
## 1245 Downtown Core within a few hours <NA>
## 1246 Downtown Core within a few hours <NA>
## 1247 Museum within an hour <NA>
## 1248 Bukit Merah within a few hours <NA>
## 1249 Downtown Core within an hour <NA>
## 1250 Kallang within a few hours <NA>
## 1251 Jurong East within an hour <NA>
## 1252 Rochor within a day <NA>
## 1253 Kallang within a few hours <NA>
## 1254 Bukit Merah N/A <NA>
## 1255 Kallang within an hour <NA>
## 1256 Downtown Core within an hour <NA>
## 1257 Kallang within a few hours <NA>
## 1258 Downtown Core within an hour <NA>
## 1259 Geylang within a few hours <NA>
## 1260 Kallang within a few hours <NA>
## 1261 Geylang within an hour <NA>
## 1262 Geylang within an hour <NA>
## 1263 Kallang within a few hours <NA>
## 1264 Kallang within an hour <NA>
## 1265 Downtown Core within an hour <NA>
## 1266 Marine Parade within a few hours <NA>
## 1267 Downtown Core within an hour <NA>
## 1268 Rochor within an hour <NA>
## 1269 Rochor within an hour <NA>
## 1270 Singapore River within a few hours <NA>
## 1271 River Valley within an hour <NA>
## 1272 Clementi within an hour <NA>
## 1273 Geylang within an hour <NA>
## 1274 Novena within a few hours <NA>
## 1275 Downtown Core within a day <NA>
## 1276 Outram within an hour <NA>
## 1277 Bukit Merah within a few hours <NA>
## 1278 Kallang within an hour <NA>
## 1279 Rochor N/A <NA>
## 1280 Kallang N/A <NA>
## 1281 Bedok within a day <NA>
## 1282 Novena a few days or more <NA>
## 1283 Kallang within a few hours <NA>
## 1284 River Valley within a few hours <NA>
## 1285 Bukit Merah within a few hours <NA>
## 1286 Bishan within a day <NA>
## 1287 Bukit Timah within a few hours <NA>
## 1288 Novena within an hour <NA>
## 1289 Bukit Merah within an hour <NA>
## 1290 Geylang within a few hours <NA>
## 1291 Punggol N/A <NA>
## 1292 Marine Parade within a day <NA>
## 1293 Bedok within an hour <NA>
## 1294 Bedok within an hour <NA>
## 1295 Bedok within an hour <NA>
## 1296 Bedok within an hour <NA>
## 1297 Rochor a few days or more <NA>
## 1298 Outram N/A <NA>
## 1299 Downtown Core a few days or more <NA>
## 1300 Kallang within a few hours <NA>
## 1301 Kallang within a few hours <NA>
## 1302 Kallang within a few hours <NA>
## 1303 Kallang within a few hours <NA>
## 1304 Outram N/A <NA>
## 1305 Kallang within an hour <NA>
## 1306 Outram within a few hours <NA>
## 1307 Kallang within a few hours <NA>
## 1308 Rochor a few days or more <NA>
## 1309 Queenstown within an hour <NA>
## 1310 Kallang within a day <NA>
## 1311 Kallang within a day <NA>
## 1312 Kallang within a day <NA>
## 1313 Sengkang within a day <NA>
## 1314 Serangoon a few days or more <NA>
## 1315 Toa Payoh within a few hours <NA>
## 1316 Kallang within a few hours <NA>
## 1317 Pasir Ris within a few hours <NA>
## 1318 Clementi within a day <NA>
## 1319 Bedok within an hour <NA>
## 1320 Outram within an hour <NA>
## 1321 Bedok within a few hours <NA>
## 1322 Kallang within an hour <NA>
## 1323 Bishan N/A <NA>
## 1324 Novena within an hour <NA>
## 1325 Geylang within a day <NA>
## 1326 Clementi a few days or more <NA>
## 1327 Queenstown within a few hours <NA>
## 1328 Queenstown a few days or more <NA>
## 1329 Kallang within a day <NA>
## 1330 Bedok within a few hours <NA>
## 1331 Bukit Batok within an hour <NA>
## 1332 Outram within a few hours <NA>
## 1333 Kallang within a day <NA>
## 1334 Geylang within an hour <NA>
## 1335 Kallang within a few hours <NA>
## 1336 Kallang within a day <NA>
## 1337 Kallang within a day <NA>
## 1338 Kallang within a day <NA>
## 1339 Jurong West N/A <NA>
## 1340 Orchard within an hour <NA>
## 1341 Outram within an hour <NA>
## 1342 Clementi within a day <NA>
## 1343 Kallang within a day <NA>
## 1344 Bukit Merah within an hour <NA>
## 1345 Kallang within an hour <NA>
## 1346 Downtown Core N/A <NA>
## 1347 Downtown Core N/A <NA>
## 1348 Downtown Core within an hour <NA>
## 1349 Kallang within a few hours <NA>
## 1350 Downtown Core within an hour <NA>
## 1351 Geylang within a day <NA>
## 1352 Clementi a few days or more <NA>
## 1353 Outram within a few hours <NA>
## 1354 Outram within a few hours <NA>
## 1355 Outram within a few hours <NA>
## 1356 Novena within a few hours <NA>
## 1357 Geylang within an hour <NA>
## 1358 Jurong East N/A <NA>
## 1359 Bishan a few days or more <NA>
## 1360 Kallang within a few hours <NA>
## 1361 River Valley a few days or more <NA>
## 1362 Downtown Core within a day <NA>
## 1363 Novena within a few hours <NA>
## 1364 Geylang within a day <NA>
## 1365 Kallang within a few hours <NA>
## 1366 Yishun N/A <NA>
## 1367 Queenstown within a few hours <NA>
## 1368 Geylang within a day <NA>
## 1369 Kallang within a day <NA>
## 1370 Outram within a day <NA>
## 1371 Geylang within a few hours <NA>
## 1372 Novena a few days or more <NA>
## 1373 Orchard within an hour <NA>
## 1374 Newton within an hour <NA>
## 1375 Newton a few days or more <NA>
## 1376 Downtown Core within a few hours <NA>
## 1377 Bukit Timah within a few hours <NA>
## 1378 Queenstown within a few hours <NA>
## 1379 River Valley within a day <NA>
## 1380 Bedok a few days or more <NA>
## 1381 Bedok a few days or more <NA>
## 1382 Bedok a few days or more <NA>
## 1383 Toa Payoh within an hour <NA>
## 1384 Jurong East within a few hours <NA>
## 1385 Jurong East within a few hours <NA>
## 1386 Hougang a few days or more <NA>
## 1387 Bukit Timah N/A <NA>
## 1388 Rochor within an hour <NA>
## 1389 Clementi within a few hours <NA>
## 1390 Outram within an hour <NA>
## 1391 Outram within a few hours <NA>
## 1392 Outram within a few hours <NA>
## 1393 Rochor a few days or more <NA>
## 1394 Kallang within an hour <NA>
## 1395 Rochor within a day <NA>
## 1396 Kallang within a few hours <NA>
## 1397 Queenstown within a few hours <NA>
## 1398 Outram within an hour <NA>
## 1399 Novena within a few hours <NA>
## 1400 Rochor within a day <NA>
## 1401 Geylang within a few hours <NA>
## 1402 Geylang within an hour <NA>
## 1403 Downtown Core within a day <NA>
## 1404 Geylang within a few hours <NA>
## 1405 Outram within an hour <NA>
## 1406 Bishan within a few hours <NA>
## 1407 Bishan within a few hours <NA>
## 1408 Downtown Core within a few hours <NA>
## 1409 Ang Mo Kio N/A <NA>
## 1410 Geylang within a few hours <NA>
## 1411 Kallang within a few hours <NA>
## 1412 Rochor within an hour <NA>
## 1413 Rochor within an hour <NA>
## 1414 Outram within an hour <NA>
## 1415 Kallang a few days or more <NA>
## 1416 Geylang within a day <NA>
## 1417 Outram within a few hours <NA>
## 1418 Outram N/A <NA>
## 1419 Novena within a few hours <NA>
## 1420 Outram N/A <NA>
## 1421 Rochor a few days or more <NA>
## 1422 Downtown Core within a few hours <NA>
## 1423 Downtown Core within a few hours <NA>
## 1424 Kallang within a day <NA>
## 1425 Downtown Core within a few hours <NA>
## 1426 Geylang within a few hours <NA>
## 1427 Kallang within a day <NA>
## 1428 Novena within a few hours <NA>
## 1429 Bukit Merah N/A <NA>
## 1430 Downtown Core within a few hours <NA>
## 1431 Jurong East within a few hours <NA>
## 1432 Kallang within a few hours <NA>
## 1433 Outram within a day <NA>
## 1434 Outram within a day <NA>
## 1435 Kallang within a few hours <NA>
## 1436 Outram within a few hours <NA>
## 1437 Kallang within a few hours <NA>
## 1438 Kallang within a few hours <NA>
## 1439 Outram within a few hours <NA>
## 1440 Kallang within a few hours <NA>
## 1441 Geylang within a few hours <NA>
## 1442 Geylang within a few hours <NA>
## 1443 Kallang within an hour <NA>
## 1444 Downtown Core within a few hours <NA>
## 1445 Kallang within an hour <NA>
## 1446 Newton a few days or more <NA>
## 1447 Rochor a few days or more <NA>
## 1448 Woodlands a few days or more <NA>
## 1449 Bukit Merah within a few hours <NA>
## 1450 River Valley within a few hours <NA>
## 1451 Tanglin within a few hours <NA>
## 1452 Geylang a few days or more <NA>
## 1453 Kallang within a day <NA>
## 1454 Queenstown within a day <NA>
## 1455 Bukit Merah <NA>
## 1456 Hougang within an hour <NA>
## 1457 Downtown Core within a few hours <NA>
## 1458 Downtown Core within a few hours <NA>
## 1459 Downtown Core within a few hours <NA>
## 1460 Tanglin within a few hours <NA>
## 1461 Ang Mo Kio a few days or more <NA>
## 1462 Outram within an hour <NA>
## 1463 Outram within a few hours <NA>
## 1464 Kallang within an hour <NA>
## 1465 Kallang within a few hours <NA>
## 1466 Tanglin within a few hours <NA>
## 1467 Kallang within a few hours <NA>
## 1468 Central Water Catchment within a few hours <NA>
## 1469 Kallang N/A <NA>
## 1470 Outram within a few hours <NA>
## 1471 Marine Parade within an hour <NA>
## 1472 Outram within an hour <NA>
## 1473 Downtown Core within a few hours <NA>
## 1474 Jurong East within a few hours <NA>
## 1475 Rochor a few days or more <NA>
## 1476 Tanglin a few days or more <NA>
## 1477 Kallang within a day <NA>
## 1478 Geylang within a few hours <NA>
## 1479 Serangoon a few days or more <NA>
## 1480 Kallang within a few hours <NA>
## 1481 Geylang within a few hours <NA>
## 1482 Tampines a few days or more <NA>
## 1483 Downtown Core within a few hours <NA>
## 1484 Toa Payoh a few days or more <NA>
## 1485 Geylang within a few hours <NA>
## 1486 Outram within an hour <NA>
## 1487 Downtown Core within a few hours <NA>
## 1488 Bukit Merah a few days or more <NA>
## 1489 Outram within a day <NA>
## 1490 Bukit Merah a few days or more <NA>
## 1491 Bukit Merah a few days or more <NA>
## 1492 Bukit Merah a few days or more <NA>
## 1493 Outram within a few hours <NA>
## 1494 Novena within a few hours <NA>
## 1495 Central Water Catchment within a few hours <NA>
## 1496 Geylang N/A <NA>
## 1497 River Valley within a few hours <NA>
## 1498 Central Water Catchment within a few hours <NA>
## 1499 Downtown Core N/A <NA>
## 1500 River Valley within a few hours <NA>
## 1501 Kallang within a few hours <NA>
## 1502 Newton within a few hours <NA>
## 1503 Singapore River within a few hours <NA>
## 1504 Bukit Timah within a few hours <NA>
## 1505 Central Water Catchment within a few hours <NA>
## 1506 Toa Payoh within a few hours <NA>
## 1507 Jurong West a few days or more <NA>
## 1508 Bukit Merah a few days or more <NA>
## 1509 Tanglin within a few hours <NA>
## 1510 Marine Parade within a few hours <NA>
## 1511 Kallang a few days or more <NA>
## 1512 Kallang within a few hours <NA>
## 1513 Kallang within a few hours <NA>
## 1514 Outram within a day <NA>
## 1515 Clementi within a few hours <NA>
## 1516 Bukit Timah within an hour <NA>
## 1517 Kallang within a few hours <NA>
## 1518 Outram within an hour <NA>
## 1519 Kallang within a few hours <NA>
## 1520 Outram within an hour <NA>
## 1521 Pasir Ris within a day <NA>
## 1522 Rochor a few days or more <NA>
## 1523 Rochor a few days or more <NA>
## 1524 Geylang within a few hours <NA>
## 1525 Kallang within a few hours <NA>
## 1526 Ang Mo Kio N/A <NA>
## 1527 Downtown Core within an hour <NA>
## 1528 Geylang within a few hours <NA>
## 1529 Jurong West within an hour <NA>
## 1530 Serangoon within an hour <NA>
## 1531 Rochor within a day <NA>
## 1532 Rochor a few days or more <NA>
## 1533 Outram within an hour <NA>
## 1534 Geylang a few days or more <NA>
## 1535 Outram within an hour <NA>
## 1536 Geylang a few days or more <NA>
## 1537 Tanglin within an hour <NA>
## 1538 Kallang within a few hours <NA>
## host_acceptance_rate host_Superhost latitude longitude
## 1 1.00 1 1.296580 103.8560
## 2 1.00 1 1.245350 103.8387
## 3 0.99 0 1.296510 103.8555
## 4 1.00 1 1.311760 103.8913
## 5 0.96 0 1.415850 103.9001
## 6 0.00 0 1.301610 103.8596
## 7 1.00 1 1.298380 103.8574
## 8 0.84 1 1.288160 103.8483
## 9 0.67 1 1.292450 103.8374
## 10 0.97 0 1.296265 103.8409
## 11 1.00 0 1.311030 103.8740
## 12 1.00 1 1.283800 103.8341
## 13 1.00 1 1.310300 103.8540
## 14 1.00 1 1.296700 103.8554
## 15 NA 1 1.338030 103.8705
## 16 1.00 1 1.278310 103.8508
## 17 0.99 0 1.297950 103.8556
## 18 0.78 0 1.302490 103.8603
## 19 0.84 1 1.282430 103.8468
## 20 0.84 1 1.296940 103.8556
## 21 NA 1 1.335140 103.8762
## 22 0.96 1 1.305080 103.9053
## 23 0.97 1 1.298960 103.8615
## 24 0.97 0 1.284590 103.8347
## 25 0.85 1 1.303640 103.8548
## 26 NA 0 1.319360 103.9166
## 27 1.00 1 1.306000 103.8541
## 28 0.78 0 1.306170 103.8612
## 29 1.00 1 1.304480 103.8546
## 30 0.84 1 1.294890 103.8540
## 31 0.85 1 1.305510 103.8560
## 32 NA 0 1.274750 103.8336
## 33 1.00 0 1.284570 103.8346
## 34 0.93 1 1.286410 103.8442
## 35 0.93 1 1.284730 103.8336
## 36 0.84 1 1.287380 103.8477
## 37 0.91 0 1.282860 103.8340
## 38 1.00 1 1.281440 103.8409
## 39 0.74 0 1.311320 103.8804
## 40 1.00 0 1.306070 103.8558
## 41 0.93 1 1.305000 103.8350
## 42 0.84 1 1.281556 103.8449
## 43 0.97 1 1.362190 103.8828
## 44 1.00 1 1.310960 103.8520
## 45 0.00 0 1.318560 103.9107
## 46 0.91 0 1.283500 103.8351
## 47 0.00 0 1.318890 103.9124
## 48 0.93 1 1.285910 103.8444
## 49 0.91 1 1.323980 103.8639
## 50 0.93 1 1.285940 103.8337
## 51 1.00 0 1.298000 103.8557
## 52 1.00 0 1.300830 103.8581
## 53 0.85 1 1.305840 103.8561
## 54 1.00 1 1.309540 103.8536
## 55 0.84 1 1.289450 103.8488
## 56 0.91 1 1.322310 103.8638
## 57 1.00 1 1.311380 103.8527
## 58 0.80 1 1.357310 103.8638
## 59 0.59 1 1.281840 103.8489
## 60 0.74 0 1.310540 103.8818
## 61 1.00 1 1.304580 103.8340
## 62 0.91 1 1.322700 103.8640
## 63 1.00 1 1.310970 103.8541
## 64 1.00 0 1.391780 103.9118
## 65 0.08 0 1.293660 103.8301
## 66 NA 0 1.311610 103.8812
## 67 1.00 0 1.284980 103.8431
## 68 1.00 0 1.381430 103.8698
## 69 0.99 0 1.294820 103.8402
## 70 0.93 1 1.369990 103.9458
## 71 0.00 1 1.317400 103.8480
## 72 0.84 1 1.315340 103.8997
## 73 0.93 0 1.312070 103.8886
## 74 0.91 1 1.324360 103.8654
## 75 0.97 1 1.362630 103.8830
## 76 0.75 0 1.313510 103.8535
## 77 0.84 1 1.315340 103.8997
## 78 0.23 0 1.279720 103.8498
## 79 0.96 1 1.311120 103.9067
## 80 0.91 1 1.324030 103.8659
## 81 0.91 1 1.324140 103.8648
## 82 0.91 1 1.322020 103.8656
## 83 0.00 0 1.398290 103.8978
## 84 0.65 1 1.300920 103.8505
## 85 1.00 1 1.274270 103.8409
## 86 0.93 1 1.319320 103.8466
## 87 0.75 0 1.316890 103.8526
## 88 0.75 0 1.309020 103.9026
## 89 0.84 1 1.314340 103.8991
## 90 0.65 1 1.300350 103.8513
## 91 0.33 0 1.310050 103.8583
## 92 NA 1 1.333890 103.8345
## 93 1.00 0 1.282760 103.8433
## 94 0.99 0 1.316330 103.8532
## 95 0.23 0 1.280140 103.8490
## 96 0.91 1 1.323490 103.8660
## 97 0.91 1 1.322250 103.8655
## 98 0.91 1 1.321960 103.8661
## 99 0.74 1 1.311170 103.8772
## 100 1.00 0 1.308250 103.8400
## 101 1.00 1 1.279500 103.8433
## 102 1.00 0 1.283200 103.8422
## 103 0.25 0 1.290390 103.8269
## 104 0.73 1 1.312220 103.8831
## 105 1.00 0 1.417070 103.8422
## 106 0.91 1 1.324190 103.8659
## 107 0.93 0 1.311920 103.8792
## 108 0.91 1 1.323710 103.8659
## 109 1.00 1 1.309090 103.8546
## 110 1.00 0 1.284880 103.8422
## 111 0.84 1 1.281250 103.8447
## 112 0.65 1 1.302030 103.8524
## 113 0.59 1 1.282130 103.8485
## 114 0.65 1 1.300980 103.8504
## 115 0.71 1 1.334630 103.8097
## 116 0.73 1 1.312140 103.8841
## 117 0.73 1 1.311100 103.8825
## 118 NA 1 1.282660 103.8343
## 119 0.00 0 1.305450 103.8533
## 120 0.74 1 1.311900 103.8795
## 121 NA 0 1.311100 103.8812
## 122 0.91 1 1.322290 103.8661
## 123 0.99 0 1.297050 103.8402
## 124 0.74 1 1.310840 103.8795
## 125 0.59 1 1.281350 103.8487
## 126 0.00 1 1.317780 103.8477
## 127 0.59 1 1.316420 103.8576
## 128 0.85 0 1.310600 103.9331
## 129 0.99 0 1.296860 103.8384
## 130 0.91 1 1.324040 103.8642
## 131 1.00 1 1.311100 103.8540
## 132 1.00 1 1.310720 103.8542
## 133 0.45 1 1.344600 103.9622
## 134 1.00 0 1.296170 103.8416
## 135 0.84 1 1.314180 103.8988
## 136 0.74 1 1.311290 103.8793
## 137 0.74 1 1.312530 103.8791
## 138 0.99 1 1.298600 103.7856
## 139 0.49 1 1.312890 103.9380
## 140 0.59 1 1.282150 103.8486
## 141 0.84 1 1.289180 103.8493
## 142 0.83 0 1.304770 103.8507
## 143 0.13 0 1.296850 103.8533
## 144 NA 0 1.326460 103.9475
## 145 0.94 1 1.337210 103.6910
## 146 NA 0 1.311130 103.8813
## 147 1.00 0 1.283730 103.8435
## 148 1.00 1 1.293060 103.8406
## 149 1.00 0 1.283360 103.8454
## 150 0.50 0 1.310260 103.8822
## 151 0.00 0 1.306910 103.8512
## 152 0.36 0 1.301530 103.8534
## 153 NA 1 1.339660 103.6871
## 154 0.90 0 1.308430 103.8925
## 155 0.73 1 1.312260 103.8830
## 156 1.00 0 1.282560 103.8440
## 157 0.84 1 1.282108 103.8467
## 158 0.74 1 1.310590 103.8775
## 159 0.99 1 1.298990 103.7853
## 160 0.45 1 1.346400 103.9626
## 161 0.96 0 1.286580 103.8474
## 162 0.74 0 1.311330 103.8859
## 163 0.23 0 1.281500 103.8490
## 164 NA 0 1.284050 103.8442
## 165 NA 0 1.309800 103.8827
## 166 0.84 0 1.283260 103.8452
## 167 0.84 1 1.282010 103.8446
## 168 0.73 1 1.280306 103.8522
## 169 0.45 1 1.346000 103.9626
## 170 NA 0 1.313340 103.8938
## 171 1.00 0 1.310400 103.9225
## 172 0.90 0 1.283350 103.8450
## 173 0.91 0 1.281520 103.8449
## 174 0.93 1 1.285560 103.8336
## 175 0.84 0 1.314710 103.8863
## 176 0.84 0 1.313180 103.8880
## 177 0.84 0 1.313070 103.8877
## 178 NA 0 1.311520 103.8813
## 179 0.75 0 1.313430 103.8532
## 180 0.67 1 1.283020 103.8294
## 181 0.84 0 1.315070 103.8875
## 182 0.33 0 1.310050 103.8583
## 183 0.99 0 1.316550 103.8529
## 184 0.75 0 1.313580 103.8545
## 185 0.93 0 1.313140 103.8800
## 186 0.73 1 1.311290 103.8842
## 187 1.00 0 1.296200 103.8573
## 188 0.45 1 1.345710 103.9607
## 189 0.97 0 1.295810 103.8380
## 190 1.00 0 1.310010 103.8410
## 191 0.84 0 1.313160 103.8861
## 192 1.00 0 1.383280 103.8683
## 193 0.00 0 1.305670 103.8517
## 194 0.93 1 1.284240 103.8342
## 195 0.84 1 1.316230 103.9000
## 196 1.00 0 1.305800 103.8558
## 197 0.45 1 1.345500 103.9604
## 198 NA 0 1.302340 103.7998
## 199 0.75 0 1.314020 103.8549
## 200 0.50 0 1.311310 103.8724
## 201 0.96 1 1.299510 103.8852
## 202 0.75 0 1.313880 103.8529
## 203 NA 1 1.321670 103.9056
## 204 0.00 0 1.307270 103.8516
## 205 0.97 0 1.296650 103.8406
## 206 1.00 0 1.371730 103.9485
## 207 0.84 1 1.277270 103.8453
## 208 0.20 1 1.315130 103.8547
## 209 1.00 0 1.367200 103.8975
## 210 1.00 0 1.281670 103.8455
## 211 0.84 0 1.283240 103.8444
## 212 0.96 0 1.286160 103.8491
## 213 NA 0 1.311800 103.8834
## 214 0.73 1 1.313340 103.8833
## 215 NA 0 1.310820 103.9246
## 216 0.97 0 1.297020 103.8400
## 217 1.00 0 1.317000 103.8789
## 218 0.00 1 1.307750 103.8994
## 219 0.50 1 1.330070 103.8755
## 220 0.96 0 1.297810 103.8394
## 221 NA 0 1.281630 103.8469
## 222 0.94 1 1.337480 103.6899
## 223 0.84 1 1.282420 103.8472
## 224 0.96 1 1.299510 103.8852
## 225 NA 0 1.290230 103.8197
## 226 NA 0 1.283160 103.8462
## 227 0.67 0 1.306580 103.8373
## 228 0.56 1 1.315720 103.8395
## 229 0.91 0 1.281960 103.8429
## 230 NA 0 1.327070 103.9498
## 231 NA 0 1.311490 103.8816
## 232 NA 0 1.308760 103.8920
## 233 0.75 0 1.314500 103.8539
## 234 0.96 1 1.299660 103.8850
## 235 0.96 1 1.299660 103.8850
## 236 0.20 1 1.316890 103.8548
## 237 NA 0 1.343610 103.9572
## 238 0.70 1 1.313820 103.8859
## 239 0.75 0 1.310360 103.9359
## 240 NA 1 1.295640 103.8338
## 241 0.97 0 1.295790 103.8397
## 242 0.98 0 1.265200 103.8190
## 243 0.00 0 1.313530 103.9049
## 244 1.00 0 1.295740 103.8369
## 245 0.90 0 1.281700 103.8455
## 246 NA 0 1.311440 103.8833
## 247 NA 1 1.443370 103.8065
## 248 0.59 1 1.345520 103.7053
## 249 1.00 0 1.295880 103.8405
## 250 0.97 0 1.316790 103.7813
## 251 0.00 0 1.325080 103.8531
## 252 0.50 1 1.344010 103.7728
## 253 0.73 1 1.310640 103.8799
## 254 0.90 0 1.283160 103.8452
## 255 NA 0 1.321430 103.9143
## 256 1.00 0 1.285090 103.8415
## 257 1.00 0 1.281590 103.8465
## 258 0.99 0 1.318060 103.8531
## 259 1.00 1 1.274270 103.8409
## 260 0.00 1 1.307660 103.8995
## 261 1.00 1 1.304980 103.8559
## 262 0.96 0 1.281670 103.8471
## 263 NA 0 1.349170 103.9609
## 264 NA 0 1.323600 103.9085
## 265 NA 0 1.311540 103.8816
## 266 0.84 0 1.314850 103.8883
## 267 NA 0 1.303890 103.8490
## 268 NA 0 1.304790 103.8509
## 269 1.00 0 1.315110 103.9203
## 270 0.84 1 1.282400 103.8448
## 271 1.00 0 1.294360 103.8291
## 272 1.00 0 1.297460 103.8415
## 273 0.70 1 1.316140 103.8869
## 274 0.97 0 1.296265 103.8409
## 275 0.67 0 1.346110 103.8707
## 276 0.84 0 1.283280 103.8437
## 277 1.00 0 1.329270 103.9042
## 278 0.84 0 1.313360 103.8863
## 279 0.00 0 1.324370 103.8537
## 280 1.00 1 1.299510 103.8852
## 281 0.99 0 1.296340 103.8386
## 282 0.99 0 1.318040 103.8515
## 283 0.90 0 1.282890 103.8470
## 284 0.88 0 1.328210 103.8614
## 285 0.96 0 1.282440 103.8469
## 286 0.97 0 1.294620 103.8392
## 287 0.95 0 1.294690 103.8401
## 288 0.98 1 1.300690 103.8466
## 289 0.99 1 1.296740 103.8573
## 290 0.99 0 1.306630 103.8560
## 291 NA 0 1.284050 103.8442
## 292 0.84 0 1.315000 103.8882
## 293 1.00 1 1.448820 103.7993
## 294 0.67 1 1.295580 103.7653
## 295 0.84 1 1.277070 103.8436
## 296 0.00 0 1.325150 103.8534
## 297 0.99 1 1.298060 103.8526
## 298 0.84 0 1.313740 103.8878
## 299 0.00 0 1.306080 103.8531
## 300 0.93 0 1.312490 103.8885
## 301 0.96 0 1.283670 103.8456
## 302 0.50 1 1.313890 103.8891
## 303 0.00 0 1.311290 103.8379
## 304 0.70 1 1.314780 103.8876
## 305 0.84 0 1.313340 103.8865
## 306 0.84 0 1.313380 103.8859
## 307 0.36 1 1.311660 103.8598
## 308 NA 1 1.400880 103.9100
## 309 1.00 1 1.343730 103.7210
## 310 0.90 0 1.309140 103.8923
## 311 0.00 0 1.317380 103.9089
## 312 NA 0 1.278260 103.8475
## 313 NA 0 1.310780 103.8813
## 314 0.96 0 1.342750 103.8406
## 315 0.84 1 1.282313 103.8447
## 316 1.00 0 1.315090 103.8918
## 317 1.00 0 1.283380 103.8450
## 318 0.94 1 1.429580 103.7802
## 319 1.00 0 1.282060 103.8451
## 320 1.00 0 1.297350 103.8433
## 321 0.70 1 1.314030 103.8860
## 322 1.00 1 1.316000 103.8281
## 323 1.00 0 1.311760 103.8814
## 324 NA 1 1.386260 103.7444
## 325 0.83 0 1.303310 103.8487
## 326 NA 0 1.311870 103.8833
## 327 NA 0 1.279590 103.8462
## 328 1.00 0 1.297620 103.8416
## 329 0.71 0 1.274840 103.8324
## 330 1.00 1 1.318890 103.8488
## 331 NA 0 1.345310 103.9610
## 332 0.70 1 1.315710 103.8866
## 333 0.96 0 1.295840 103.8302
## 334 0.91 1 1.387030 103.8726
## 335 0.13 0 1.298190 103.8513
## 336 1.00 0 1.311480 103.9512
## 337 1.00 0 1.312470 103.9512
## 338 0.13 0 1.311540 103.8735
## 339 1.00 0 1.382960 103.8694
## 340 0.00 0 1.358810 103.8309
## 341 0.99 1 1.298230 103.8556
## 342 NA 0 1.311020 103.8833
## 343 0.84 0 1.315050 103.8863
## 344 0.94 1 1.318230 103.8594
## 345 0.00 0 1.301100 103.8604
## 346 0.90 0 1.281850 103.8471
## 347 1.00 0 1.320080 103.9202
## 348 1.00 1 1.274270 103.8409
## 349 0.96 0 1.281480 103.8464
## 350 0.71 0 1.272880 103.8354
## 351 0.71 0 1.274890 103.8328
## 352 0.00 1 1.307480 103.9000
## 353 0.00 0 1.311420 103.8392
## 354 NA 0 1.310150 103.8813
## 355 0.70 1 1.314100 103.8859
## 356 NA 0 1.309940 103.8817
## 357 NA 1 1.319070 103.9102
## 358 1.00 1 1.448300 103.7893
## 359 0.02 0 1.310440 103.8608
## 360 0.92 1 1.297320 103.8397
## 361 0.73 1 1.312330 103.8830
## 362 0.84 1 1.287870 103.8503
## 363 0.13 0 1.309320 103.9111
## 364 0.23 0 1.280330 103.8489
## 365 0.90 0 1.281780 103.8468
## 366 0.91 0 1.282290 103.8452
## 367 1.00 1 1.304690 103.8557
## 368 0.99 0 1.296540 103.8392
## 369 0.84 0 1.314450 103.8881
## 370 0.84 0 1.314540 103.8862
## 371 0.50 0 1.311310 103.8724
## 372 NA 0 1.344010 103.7011
## 373 0.90 0 1.308860 103.8940
## 374 0.70 1 1.313370 103.8878
## 375 0.75 0 1.313520 103.8533
## 376 0.00 0 1.346310 103.7164
## 377 0.00 0 1.323610 103.8539
## 378 NA 0 1.320130 103.8811
## 379 0.90 0 1.281730 103.8464
## 380 0.00 0 1.312610 103.8026
## 381 0.84 0 1.313710 103.8863
## 382 0.96 0 1.288970 103.8480
## 383 0.96 0 1.288090 103.8490
## 384 1.00 0 1.274520 103.8452
## 385 0.99 0 1.318780 103.8525
## 386 0.00 1 1.307750 103.8994
## 387 NA 1 1.310940 103.8047
## 388 0.74 1 1.312280 103.8776
## 389 0.74 0 1.315230 103.8833
## 390 0.00 0 1.311440 103.8378
## 391 NA 0 1.309620 103.8817
## 392 0.70 1 1.283530 103.8453
## 393 0.97 0 1.316210 103.7806
## 394 0.50 0 1.309590 103.8737
## 395 0.97 0 1.317640 103.7792
## 396 0.75 1 1.354880 103.9652
## 397 1.00 1 1.331000 103.8063
## 398 0.00 0 1.337270 103.6901
## 399 0.89 0 1.345090 103.6947
## 400 NA 0 1.320980 103.9145
## 401 NA 0 1.310320 103.8834
## 402 0.96 0 1.288200 103.8475
## 403 NA 0 1.283090 103.8430
## 404 1.00 0 1.300320 103.8595
## 405 NA 0 1.310580 103.8767
## 406 0.97 0 1.295440 103.8418
## 407 1.00 1 1.316709 103.8261
## 408 NA 0 1.311670 103.8582
## 409 1.00 1 1.322300 103.7571
## 410 0.33 0 1.315310 103.8846
## 411 0.71 0 1.273560 103.8327
## 412 NA 0 1.314200 103.8473
## 413 0.70 1 1.314030 103.8864
## 414 0.70 1 1.313550 103.8872
## 415 0.84 0 1.315110 103.8880
## 416 0.84 0 1.315010 103.8879
## 417 0.70 1 1.314690 103.8855
## 418 1.00 1 1.347890 103.9397
## 419 0.38 0 1.311140 103.8605
## 420 0.33 0 1.310050 103.8583
## 421 0.00 0 1.266030 103.8091
## 422 0.84 0 1.283780 103.8439
## 423 0.70 1 1.284670 103.8436
## 424 0.84 1 1.296680 103.8400
## 425 0.00 0 1.323660 103.8517
## 426 NA 0 1.319190 103.9104
## 427 0.73 1 1.313220 103.8838
## 428 1.00 0 1.283290 103.8439
## 429 0.97 0 1.295450 103.8421
## 430 1.00 0 1.283400 103.8437
## 431 0.00 0 1.305350 103.8534
## 432 0.97 0 1.294540 103.8403
## 433 1.00 0 1.283310 103.8451
## 434 1.00 0 1.281270 103.8451
## 435 NA 0 1.374180 103.8722
## 436 0.99 0 1.296560 103.8577
## 437 0.74 0 1.310700 103.8807
## 438 0.74 1 1.310820 103.8773
## 439 0.96 0 1.281660 103.8466
## 440 0.98 1 1.300350 103.8466
## 441 1.00 1 1.315620 103.8281
## 442 NA 0 1.348060 103.9586
## 443 0.84 0 1.283910 103.8438
## 444 0.67 0 1.343850 103.8689
## 445 0.00 0 1.316260 103.8600
## 446 0.94 1 1.317810 103.9093
## 447 0.00 0 1.324190 103.8540
## 448 0.91 1 1.304420 103.8325
## 449 0.90 0 1.281760 103.8462
## 450 0.90 0 1.281910 103.8453
## 451 0.89 0 1.377660 103.9613
## 452 NA 0 1.320760 103.9143
## 453 0.94 1 1.337210 103.6905
## 454 0.67 0 1.400890 103.7454
## 455 0.86 0 1.299170 103.8386
## 456 1.00 0 1.283180 103.8452
## 457 0.14 0 1.377190 103.7684
## 458 1.00 0 1.328480 103.8518
## 459 NA 0 1.309550 103.8828
## 460 0.95 0 1.294900 103.8400
## 461 1.00 0 1.283310 103.8455
## 462 NA 0 1.412590 103.8357
## 463 0.97 0 1.296820 103.8400
## 464 0.79 1 1.321370 103.8621
## 465 1.00 1 1.296480 103.8571
## 466 0.59 1 1.314280 103.8554
## 467 0.00 1 1.312480 103.9363
## 468 0.36 0 1.328740 103.8844
## 469 0.67 0 1.346030 103.8704
## 470 NA 0 1.303560 103.8495
## 471 1.00 1 1.316330 103.8272
## 472 0.84 0 1.283620 103.8458
## 473 1.00 0 1.283790 103.8440
## 474 0.84 0 1.313160 103.8867
## 475 NA 0 1.284640 103.8255
## 476 NA 0 1.275770 103.8425
## 477 1.00 1 1.287260 103.8443
## 478 0.99 1 1.298060 103.8526
## 479 0.84 1 1.282030 103.8477
## 480 0.96 1 1.299510 103.8852
## 481 1.00 1 1.317100 103.8278
## 482 0.13 0 1.309780 103.9108
## 483 1.00 0 1.300590 103.8608
## 484 1.00 0 1.284840 103.8435
## 485 0.00 0 1.280020 103.8405
## 486 0.90 0 1.282190 103.8470
## 487 0.91 0 1.281550 103.8452
## 488 0.91 0 1.282390 103.8450
## 489 0.00 0 1.306780 103.8534
## 490 1.00 0 1.285340 103.8422
## 491 0.00 0 1.305910 103.8534
## 492 1.00 0 1.283450 103.8433
## 493 1.00 1 1.399260 103.7461
## 494 0.00 1 1.308180 103.9003
## 495 0.99 1 1.296840 103.8519
## 496 0.80 1 1.355820 103.8641
## 497 0.59 1 1.341800 103.7150
## 498 0.77 0 1.280500 103.7844
## 499 0.36 1 1.312690 103.7971
## 500 0.70 1 1.317600 103.8945
## 501 0.84 0 1.313410 103.8867
## 502 0.84 0 1.313130 103.8868
## 503 NA 0 1.309930 103.8834
## 504 0.80 1 1.405290 103.9012
## 505 0.00 1 1.317350 103.8481
## 506 0.04 1 1.317210 103.8568
## 507 1.00 0 1.296490 103.8553
## 508 0.94 1 1.318810 103.9068
## 509 0.00 0 1.364670 103.8482
## 510 0.91 1 1.304350 103.8338
## 511 0.00 0 1.322850 103.8536
## 512 0.00 0 1.300410 103.8586
## 513 0.96 1 1.299860 103.8851
## 514 NA 0 1.295800 103.8364
## 515 NA 1 1.311950 103.8605
## 516 1.00 0 1.375730 103.9027
## 517 NA 0 1.281320 103.8449
## 518 0.00 0 1.279870 103.8405
## 519 NA 0 1.353300 103.8345
## 520 0.00 0 1.289490 103.8480
## 521 0.99 0 1.296430 103.8408
## 522 0.99 1 1.298150 103.8525
## 523 0.96 0 1.280200 103.7860
## 524 0.96 0 1.282040 103.8467
## 525 0.71 0 1.272330 103.8332
## 526 0.71 0 1.275250 103.8340
## 527 1.00 0 1.296280 103.8568
## 528 0.99 1 1.296100 103.8576
## 529 1.00 1 1.317133 103.8265
## 530 0.94 1 1.316320 103.8880
## 531 1.00 1 1.315720 103.8270
## 532 1.00 1 1.367220 103.8976
## 533 1.00 1 1.315950 103.8269
## 534 1.00 0 1.282680 103.8446
## 535 1.00 1 1.316330 103.8272
## 536 0.67 1 1.295750 103.7671
## 537 0.84 0 1.313160 103.8882
## 538 NA 0 1.309760 103.8820
## 539 NA 0 1.303450 103.8490
## 540 NA 0 1.282830 103.8449
## 541 1.00 0 1.288190 103.8482
## 542 0.94 1 1.317350 103.8617
## 543 0.91 1 1.385650 103.8735
## 544 0.82 1 1.431090 103.7736
## 545 0.00 0 1.383580 103.7454
## 546 0.84 1 1.289150 103.8482
## 547 0.00 0 1.323630 103.8520
## 548 0.21 0 1.343490 103.7171
## 549 NA 0 1.339260 103.7193
## 550 0.91 1 1.304470 103.8338
## 551 0.84 0 1.315150 103.8865
## 552 0.84 0 1.314380 103.8882
## 553 0.84 0 1.313650 103.8861
## 554 1.00 1 1.315259 103.8266
## 555 0.00 0 1.279500 103.8421
## 556 1.00 0 1.314390 103.8447
## 557 0.00 0 1.391580 103.8958
## 558 0.00 0 1.445750 103.7894
## 559 NA 0 1.280380 103.8419
## 560 0.74 1 1.312580 103.8795
## 561 1.00 0 1.300680 103.8460
## 562 1.00 1 1.317560 103.8469
## 563 0.96 1 1.283220 103.8618
## 564 NA 0 1.345370 103.9589
## 565 0.80 0 1.443490 103.7926
## 566 0.84 0 1.315580 103.8863
## 567 NA 0 1.305500 103.8489
## 568 0.84 0 1.283170 103.8459
## 569 NA 1 1.280300 103.7853
## 570 0.70 1 1.315580 103.8875
## 571 0.50 0 1.282990 103.8446
## 572 0.70 1 1.313700 103.8862
## 573 0.00 0 1.324900 103.8540
## 574 1.00 1 1.288690 103.8443
## 575 0.99 1 1.298060 103.8526
## 576 0.09 0 1.336370 103.7414
## 577 0.13 0 1.309680 103.9129
## 578 0.90 0 1.283680 103.8451
## 579 0.90 0 1.282340 103.8471
## 580 NA 1 1.386110 103.7445
## 581 0.00 0 1.403190 103.9173
## 582 0.84 1 1.283243 103.8446
## 583 1.00 0 1.299960 103.8594
## 584 0.72 1 1.314770 103.8550
## 585 0.96 0 1.303420 103.8584
## 586 0.96 0 1.281880 103.8449
## 587 0.74 1 1.311130 103.8774
## 588 0.59 1 1.281070 103.8479
## 589 0.97 1 1.326700 103.9085
## 590 0.96 0 1.297490 103.8567
## 591 1.00 0 1.312880 103.8857
## 592 0.84 0 1.313270 103.8873
## 593 0.84 0 1.315370 103.8868
## 594 0.84 0 1.314000 103.8879
## 595 0.00 0 1.321620 103.9147
## 596 0.38 0 1.311140 103.8605
## 597 0.84 0 1.313440 103.8879
## 598 0.88 0 1.297590 103.7874
## 599 0.00 0 1.312680 103.8377
## 600 0.00 0 1.311400 103.8391
## 601 0.86 0 1.297550 103.8368
## 602 1.00 0 1.296490 103.8553
## 603 0.86 0 1.298920 103.8385
## 604 NA 0 1.273940 103.8426
## 605 1.00 1 1.287070 103.8424
## 606 0.99 1 1.298060 103.8526
## 607 0.84 0 1.314940 103.8860
## 608 0.50 1 1.321670 103.7499
## 609 1.00 1 1.315590 103.8281
## 610 0.00 0 1.305300 103.8409
## 611 0.90 0 1.281840 103.8470
## 612 NA 0 1.279220 103.8488
## 613 1.00 0 1.301970 103.8600
## 614 0.84 1 1.282974 103.8447
## 615 1.00 0 1.282990 103.8431
## 616 0.00 0 1.279480 103.8541
## 617 0.50 0 1.310400 103.8817
## 618 NA 1 1.284270 103.8328
## 619 0.00 0 1.281640 103.8411
## 620 NA 0 1.336380 103.6936
## 621 0.00 0 1.305500 103.8536
## 622 1.00 0 1.326900 103.8525
## 623 0.94 1 1.430580 103.7784
## 624 0.90 0 1.321780 103.8514
## 625 0.94 1 1.430400 103.7799
## 626 0.96 0 1.282150 103.8470
## 627 0.33 0 1.342700 103.8675
## 628 0.93 1 1.285940 103.8446
## 629 1.00 1 1.316330 103.8272
## 630 0.84 0 1.315050 103.8875
## 631 1.00 1 1.317319 103.8264
## 632 0.63 1 1.274280 103.8413
## 633 0.63 1 1.276190 103.8407
## 634 NA 0 1.311170 103.8831
## 635 NA 0 1.284260 103.8444
## 636 0.00 0 1.285350 103.8506
## 637 0.33 0 1.346640 103.7604
## 638 0.84 1 1.323810 103.9168
## 639 1.00 1 1.306410 103.8405
## 640 0.40 1 1.309610 103.7977
## 641 0.09 0 1.334370 103.7418
## 642 0.91 1 1.302200 103.8340
## 643 1.00 1 1.289370 103.8441
## 644 NA 0 1.321960 103.9143
## 645 0.99 1 1.298060 103.8526
## 646 0.84 0 1.314430 103.8859
## 647 0.84 0 1.313350 103.8881
## 648 0.86 0 1.298600 103.8368
## 649 0.33 1 1.332050 103.9445
## 650 0.13 0 1.296150 103.8513
## 651 0.84 1 1.295520 103.8540
## 652 0.89 0 1.347690 103.6936
## 653 0.99 0 1.295470 103.8394
## 654 0.89 1 1.274500 103.8451
## 655 1.00 0 1.282990 103.8431
## 656 0.84 0 1.313900 103.8886
## 657 0.20 1 1.316580 103.8548
## 658 NA 0 1.281730 103.8461
## 659 0.89 1 1.303140 103.8611
## 660 1.00 0 1.302550 103.8585
## 661 1.00 0 1.417520 103.8431
## 662 0.84 0 1.313740 103.8881
## 663 0.96 0 1.287540 103.8499
## 664 NA 0 1.284710 103.8337
## 665 0.94 1 1.431500 103.7781
## 666 NA 0 1.311290 103.8812
## 667 0.84 0 1.313030 103.8875
## 668 1.00 1 1.357890 103.8274
## 669 1.00 1 1.317420 103.8274
## 670 0.40 0 1.387840 103.8900
## 671 0.74 1 1.312320 103.8779
## 672 0.74 1 1.312190 103.8795
## 673 0.74 0 1.313230 103.8833
## 674 0.65 1 1.302140 103.8525
## 675 1.00 1 1.279330 103.8434
## 676 0.99 0 1.304690 103.8558
## 677 0.74 1 1.310740 103.8795
## 678 0.92 0 1.414800 103.8986
## 679 0.74 1 1.312010 103.8791
## 680 1.00 0 1.283000 103.8434
## 681 0.84 0 1.313690 103.8862
## 682 0.00 1 1.313950 103.9347
## 683 0.84 0 1.313650 103.8861
## 684 0.36 0 1.328120 103.8844
## 685 0.80 0 1.441620 103.7930
## 686 NA 0 1.306130 103.7809
## 687 0.70 1 1.315770 103.8858
## 688 0.64 1 1.342650 103.7134
## 689 0.84 0 1.313460 103.8874
## 690 0.84 1 1.318550 103.9126
## 691 0.25 0 1.281990 103.8536
## 692 0.22 0 1.316560 103.8396
## 693 0.38 0 1.311290 103.8606
## 694 1.00 0 1.280280 103.8518
## 695 0.84 1 1.323320 103.9166
## 696 0.00 0 1.367410 103.8529
## 697 1.00 0 1.320810 103.9219
## 698 0.84 0 1.283410 103.8454
## 699 NA 1 1.304940 103.9031
## 700 NA 0 1.277620 103.7875
## 701 NA 0 1.374510 103.8728
## 702 0.40 1 1.341590 103.9581
## 703 0.86 0 1.297190 103.8386
## 704 1.00 1 1.304470 103.8385
## 705 1.00 0 1.300980 103.8449
## 706 NA 0 1.275830 103.8446
## 707 0.91 1 1.302910 103.8340
## 708 0.84 1 1.282060 103.8455
## 709 0.96 0 1.286840 103.8472
## 710 0.89 1 1.274240 103.8443
## 711 0.13 0 1.309750 103.9113
## 712 NA 0 1.300170 103.8598
## 713 0.84 0 1.284590 103.8438
## 714 0.13 0 1.311080 103.8718
## 715 0.89 1 1.326320 103.8495
## 716 NA 1 1.399360 103.9091
## 717 NA 0 1.281830 103.8466
## 718 0.67 1 1.319920 103.8822
## 719 NA 1 1.282890 103.8323
## 720 0.96 0 1.288640 103.8500
## 721 0.96 0 1.288480 103.8479
## 722 0.96 0 1.289060 103.8494
## 723 1.00 0 1.281360 103.8451
## 724 0.40 0 1.355190 103.7690
## 725 0.13 0 1.326450 103.8511
## 726 0.64 0 1.303970 103.8372
## 727 0.94 1 1.429970 103.7785
## 728 1.00 1 1.275360 103.8399
## 729 0.07 0 1.312580 103.8780
## 730 0.71 0 1.274540 103.8326
## 731 0.71 0 1.274880 103.8329
## 732 0.71 0 1.273580 103.8344
## 733 0.33 0 1.315590 103.8828
## 734 0.96 0 1.294860 103.8392
## 735 1.00 0 1.311180 103.8804
## 736 0.77 0 1.294010 103.8294
## 737 0.99 0 1.294770 103.8396
## 738 0.74 0 1.312380 103.8824
## 739 0.96 0 1.297490 103.8567
## 740 0.99 0 1.306580 103.8537
## 741 0.99 0 1.306200 103.8560
## 742 1.00 1 1.279190 103.8451
## 743 0.97 0 1.274690 103.8424
## 744 0.77 0 1.290150 103.8081
## 745 NA 1 1.304160 103.9008
## 746 0.70 1 1.313400 103.8865
## 747 1.00 1 1.340810 103.8417
## 748 1.00 1 1.312400 103.8576
## 749 1.00 1 1.312710 103.8570
## 750 NA 0 1.310190 103.8833
## 751 0.50 0 1.311030 103.8742
## 752 0.77 0 1.281350 103.7876
## 753 0.33 0 1.310270 103.8564
## 754 0.33 0 1.310050 103.8583
## 755 0.84 0 1.315210 103.8879
## 756 0.50 0 1.364640 103.8635
## 757 0.00 0 1.312340 103.8430
## 758 0.84 0 1.283810 103.8456
## 759 0.40 1 1.307670 103.7967
## 760 0.84 1 1.283300 103.8424
## 761 0.84 1 1.287420 103.8479
## 762 0.00 0 1.320000 103.7602
## 763 0.88 1 1.325510 103.9150
## 764 0.86 0 1.299070 103.8383
## 765 NA 0 1.276210 103.8429
## 766 1.00 1 1.287150 103.8441
## 767 1.00 0 1.320650 103.9201
## 768 0.82 0 1.342080 103.7343
## 769 0.99 1 1.298060 103.8526
## 770 0.84 1 1.277290 103.8434
## 771 0.99 1 1.298060 103.8526
## 772 0.91 1 1.302820 103.8323
## 773 0.89 1 1.276330 103.8452
## 774 NA 0 1.283560 103.8446
## 775 0.97 0 1.309070 103.8619
## 776 0.90 0 1.283510 103.8451
## 777 1.00 1 1.315980 103.8276
## 778 0.30 0 1.303410 103.7851
## 779 0.90 0 1.282960 103.8471
## 780 1.00 1 1.293070 103.8295
## 781 1.00 1 1.316540 103.8264
## 782 0.84 1 1.277760 103.8434
## 783 1.00 0 1.312790 103.9526
## 784 0.30 0 1.289700 103.8369
## 785 0.89 1 1.307260 103.8986
## 786 0.89 1 1.301830 103.8614
## 787 1.00 0 1.302640 103.8596
## 788 0.97 0 1.285590 103.8332
## 789 0.91 0 1.283600 103.8437
## 790 0.00 0 1.289760 103.8494
## 791 NA 0 1.345460 103.7218
## 792 0.25 0 1.289560 103.8507
## 793 0.96 0 1.304420 103.8584
## 794 0.92 1 1.304470 103.7850
## 795 NA 0 1.311400 103.8816
## 796 0.07 0 1.311870 103.8756
## 797 0.71 0 1.272860 103.8342
## 798 0.99 1 1.299180 103.8521
## 799 0.57 0 1.300470 103.8354
## 800 0.89 0 1.418630 103.8474
## 801 0.27 0 1.360870 103.8434
## 802 0.59 1 1.345350 103.7051
## 803 0.88 1 1.324280 103.9135
## 804 0.24 0 1.324950 103.8562
## 805 0.24 0 1.324070 103.8536
## 806 0.25 0 1.289220 103.8271
## 807 0.24 0 1.322510 103.8520
## 808 0.96 0 1.338960 103.8420
## 809 1.00 1 1.319370 103.8483
## 810 0.89 1 1.284290 103.8351
## 811 0.65 1 1.301170 103.8505
## 812 0.59 0 1.315690 103.8562
## 813 0.85 0 1.297340 103.8266
## 814 NA 0 1.347540 103.9596
## 815 NA 1 1.304250 103.9010
## 816 1.00 1 1.306890 103.8383
## 817 1.00 1 1.316330 103.8272
## 818 0.83 0 1.304870 103.8002
## 819 0.04 1 1.317100 103.8574
## 820 0.63 1 1.274400 103.8406
## 821 0.84 0 1.313040 103.8880
## 822 0.25 1 1.333030 103.7261
## 823 0.84 1 1.318510 103.9123
## 824 0.50 0 1.309750 103.8725
## 825 1.00 1 1.449275 103.7903
## 826 0.36 1 1.313180 103.8610
## 827 NA 0 1.283600 103.8444
## 828 0.38 0 1.311140 103.8605
## 829 1.00 0 1.357250 103.8280
## 830 1.00 0 1.284990 103.8430
## 831 0.50 0 1.311240 103.8721
## 832 0.70 1 1.283180 103.8455
## 833 0.88 0 1.299340 103.7872
## 834 0.40 0 1.317080 103.9343
## 835 0.88 1 1.318440 103.9124
## 836 0.88 1 1.317030 103.9124
## 837 NA 0 1.311570 103.8607
## 838 1.00 0 1.296490 103.8553
## 839 0.84 0 1.315230 103.8879
## 840 NA 0 1.275900 103.8444
## 841 0.98 1 1.357700 103.7588
## 842 0.89 1 1.317200 103.7588
## 843 0.71 0 1.279150 103.7849
## 844 NA 0 1.283590 103.8462
## 845 1.00 1 1.288820 103.8424
## 846 0.97 0 1.308520 103.8610
## 847 0.89 1 1.275280 103.8440
## 848 0.86 0 1.298670 103.8367
## 849 1.00 0 1.333660 103.7423
## 850 NA 0 1.341620 103.7609
## 851 0.91 1 1.302120 103.8320
## 852 1.00 1 1.300600 103.8418
## 853 0.36 1 1.305620 103.8405
## 854 1.00 1 1.293770 103.8290
## 855 0.13 0 1.296560 103.8516
## 856 0.84 1 1.280040 103.8469
## 857 0.90 0 1.283750 103.8449
## 858 1.00 1 1.316540 103.8264
## 859 NA 0 1.312000 103.8826
## 860 NA 1 1.316740 103.9080
## 861 0.23 0 1.310950 103.8795
## 862 0.13 0 1.311660 103.8732
## 863 0.89 1 1.306760 103.8298
## 864 0.29 0 1.346540 103.7222
## 865 1.00 0 1.327840 103.8856
## 866 0.89 1 1.336920 103.7410
## 867 0.97 0 1.284430 103.8342
## 868 0.89 1 1.336760 103.7412
## 869 0.89 1 1.276150 103.8450
## 870 0.88 1 1.324770 103.9145
## 871 0.00 0 1.305430 103.8533
## 872 0.97 0 1.315660 103.8807
## 873 NA 0 1.284400 103.8335
## 874 NA 0 1.309710 103.8595
## 875 NA 0 1.309860 103.8816
## 876 0.00 0 1.403280 103.9065
## 877 NA 0 1.342180 103.7170
## 878 0.00 0 1.315180 103.8884
## 879 0.64 0 1.304950 103.8353
## 880 0.50 0 1.296420 103.8903
## 881 0.71 0 1.272220 103.8356
## 882 0.97 0 1.309680 103.8609
## 883 0.83 0 1.314180 103.9077
## 884 0.89 1 1.274800 103.8470
## 885 0.00 0 1.276340 103.8451
## 886 1.00 0 1.312720 103.9029
## 887 0.71 0 1.274070 103.8323
## 888 0.71 0 1.273420 103.8347
## 889 1.00 0 1.287900 103.8351
## 890 0.95 0 1.295280 103.8384
## 891 0.33 0 1.317130 103.8845
## 892 0.89 0 1.420350 103.8467
## 893 1.00 1 1.298270 103.8576
## 894 1.00 1 1.296350 103.8568
## 895 0.99 0 1.313400 103.8615
## 896 NA 1 1.295260 103.8341
## 897 1.00 1 1.317550 103.8489
## 898 1.00 1 1.277520 103.8441
## 899 0.80 0 1.378740 103.8813
## 900 1.00 0 1.313130 103.8838
## 901 0.99 1 1.297260 103.8520
## 902 1.00 0 1.306530 103.8551
## 903 0.86 1 1.315020 103.8895
## 904 0.77 0 1.288360 103.8114
## 905 0.77 0 1.290650 103.8094
## 906 NA 1 1.304920 103.9031
## 907 0.97 0 1.284100 103.8425
## 908 1.00 0 1.283410 103.8451
## 909 0.00 0 1.430120 103.7843
## 910 NA 0 1.306000 103.7838
## 911 0.50 1 1.288430 103.8025
## 912 0.84 0 1.315410 103.8868
## 913 0.25 1 1.334330 103.7270
## 914 0.84 1 1.317130 103.9131
## 915 0.84 1 1.318930 103.9126
## 916 NA 0 1.305630 103.8504
## 917 NA 0 1.283260 103.8447
## 918 NA 0 1.285200 103.8451
## 919 0.25 0 1.280200 103.8507
## 920 0.50 0 1.309760 103.8737
## 921 0.50 0 1.310170 103.8742
## 922 0.38 0 1.311140 103.8605
## 923 0.33 0 1.310820 103.8537
## 924 0.46 0 1.312770 103.9056
## 925 NA 1 1.313980 103.8797
## 926 0.84 0 1.313560 103.8864
## 927 0.00 0 1.315860 103.8605
## 928 0.36 1 1.312840 103.7974
## 929 0.84 1 1.316750 103.9127
## 930 0.97 0 1.309830 103.8623
## 931 0.71 0 1.304000 103.7848
## 932 NA 0 1.309260 103.8032
## 933 0.38 0 1.311140 103.8605
## 934 0.84 1 1.325500 103.9160
## 935 0.89 1 1.273430 103.8456
## 936 0.86 0 1.296850 103.8381
## 937 0.00 0 1.320630 103.9454
## 938 0.23 0 1.311980 103.8792
## 939 0.82 0 1.346080 103.7219
## 940 0.17 0 1.317630 103.9072
## 941 1.00 0 1.296490 103.8553
## 942 1.00 0 1.296490 103.8553
## 943 0.89 1 1.305870 103.8977
## 944 0.00 0 1.324810 103.8517
## 945 1.00 0 1.320260 103.9217
## 946 1.00 0 1.343510 103.7322
## 947 1.00 1 1.302520 103.8414
## 948 0.50 0 1.348810 103.6959
## 949 1.00 0 1.329080 103.7234
## 950 0.97 0 1.314700 103.8816
## 951 0.89 1 1.299710 103.8380
## 952 0.13 0 1.308470 103.9110
## 953 0.13 0 1.308190 103.9111
## 954 0.13 0 1.309820 103.9123
## 955 0.13 0 1.297730 103.8531
## 956 0.13 0 1.296100 103.8527
## 957 NA 0 1.275800 103.8473
## 958 0.88 1 1.317540 103.9124
## 959 0.88 1 1.318780 103.9121
## 960 0.30 0 1.291290 103.8423
## 961 NA 1 1.317360 103.9080
## 962 0.89 1 1.273170 103.8458
## 963 0.75 0 1.347550 103.6934
## 964 0.89 1 1.273630 103.8473
## 965 NA 0 1.329450 103.9463
## 966 NA 0 1.277890 103.8524
## 967 0.30 0 1.290870 103.8317
## 968 0.89 1 1.352540 103.8498
## 969 0.89 1 1.316830 103.7585
## 970 0.89 1 1.330730 103.8662
## 971 1.00 0 1.297550 103.8574
## 972 0.30 0 1.304930 103.8375
## 973 0.31 0 1.291910 103.8065
## 974 1.00 0 1.303130 103.8518
## 975 0.96 0 1.287420 103.8482
## 976 0.96 0 1.288440 103.8478
## 977 0.31 0 1.291040 103.8298
## 978 0.84 0 1.313080 103.8878
## 979 1.00 0 1.434790 103.8001
## 980 1.00 0 1.312650 103.9028
## 981 0.84 0 1.313280 103.8877
## 982 1.00 1 1.315186 103.8283
## 983 0.89 1 1.302860 103.8633
## 984 0.89 1 1.303020 103.8628
## 985 1.00 0 1.311140 103.8730
## 986 0.89 1 1.313570 103.8574
## 987 0.13 0 1.324500 103.8504
## 988 1.00 1 1.279810 103.7867
## 989 0.91 1 1.311900 103.8614
## 990 0.25 0 1.291490 103.8498
## 991 0.96 0 1.303290 103.8585
## 992 0.83 0 1.304250 103.7998
## 993 1.00 1 1.282870 103.8469
## 994 0.72 1 1.315920 103.8541
## 995 0.96 0 1.305070 103.8598
## 996 NA 0 1.372500 103.8735
## 997 0.93 1 1.317810 103.8467
## 998 NA 0 1.273160 103.8464
## 999 0.63 1 1.275800 103.8401
## 1000 0.33 0 1.316480 103.8849
## 1001 0.07 0 1.322730 103.8518
## 1002 NA 0 1.389180 103.7719
## 1003 0.71 0 1.274750 103.8340
## 1004 NA 0 1.344260 103.7258
## 1005 0.71 0 1.274150 103.8344
## 1006 0.00 0 1.372880 103.7652
## 1007 0.33 0 1.315860 103.8826
## 1008 1.00 1 1.372140 103.7667
## 1009 0.97 0 1.310060 103.8619
## 1010 0.00 0 1.308680 103.8548
## 1011 0.95 0 1.327730 103.8499
## 1012 0.88 1 1.323820 103.9133
## 1013 0.65 1 1.300960 103.8505
## 1014 0.96 0 1.297490 103.8567
## 1015 0.99 0 1.311400 103.8623
## 1016 0.84 0 1.283490 103.8456
## 1017 0.93 0 1.294040 103.8265
## 1018 0.89 1 1.286390 103.8337
## 1019 0.89 1 1.319170 103.8484
## 1020 0.82 1 1.430640 103.7733
## 1021 0.84 1 1.295530 103.8541
## 1022 0.92 1 1.301240 103.8395
## 1023 0.96 1 1.282840 103.8614
## 1024 0.71 0 1.291940 103.8063
## 1025 0.95 0 1.295100 103.8389
## 1026 1.00 1 1.399440 103.7468
## 1027 0.99 0 1.296350 103.8403
## 1028 0.59 1 1.315640 103.8546
## 1029 0.77 0 1.288280 103.8102
## 1030 0.77 0 1.286520 103.8123
## 1031 0.70 0 1.275250 103.8452
## 1032 0.00 0 1.359560 103.8842
## 1033 0.00 0 1.299730 103.8466
## 1034 0.97 0 1.284240 103.8427
## 1035 0.23 0 1.353490 103.8327
## 1036 1.00 0 1.441670 103.8238
## 1037 0.00 0 1.379460 103.7595
## 1038 0.97 0 1.310110 103.8632
## 1039 1.00 0 1.411420 103.8426
## 1040 NA 0 1.273110 103.8408
## 1041 NA 0 1.315930 103.8290
## 1042 NA 0 1.303620 103.8497
## 1043 NA 0 1.305650 103.8496
## 1044 NA 0 1.281720 103.8519
## 1045 0.00 0 1.286560 103.8482
## 1046 0.00 0 1.287750 103.8502
## 1047 0.84 0 1.283820 103.8457
## 1048 0.50 0 1.311060 103.8721
## 1049 NA 0 1.347290 103.7210
## 1050 0.50 0 1.425430 103.8238
## 1051 NA 0 1.303620 103.8493
## 1052 0.36 1 1.312390 103.8597
## 1053 0.38 0 1.311340 103.8607
## 1054 0.38 0 1.311140 103.8605
## 1055 NA 0 1.355940 103.8684
## 1056 1.00 1 1.297840 103.8504
## 1057 0.80 1 1.327830 103.9065
## 1058 0.33 0 1.310050 103.8583
## 1059 0.77 0 1.312480 103.7901
## 1060 0.88 1 1.316930 103.9141
## 1061 0.91 1 1.312890 103.8555
## 1062 0.84 0 1.313770 103.8862
## 1063 0.84 0 1.319780 103.8907
## 1064 0.84 1 1.325520 103.9146
## 1065 0.00 0 1.324050 103.8637
## 1066 0.00 0 1.327650 103.8499
## 1067 NA 0 1.427640 103.7740
## 1068 1.00 1 1.294300 103.8296
## 1069 NA 0 1.314700 103.8929
## 1070 0.70 1 1.282660 103.8435
## 1071 0.75 1 1.343580 103.9538
## 1072 NA 0 1.322570 103.8440
## 1073 NA 0 1.374660 103.7660
## 1074 0.71 0 1.290460 103.8063
## 1075 0.38 0 1.312520 103.8609
## 1076 0.38 0 1.311140 103.8605
## 1077 0.50 0 1.284890 103.8432
## 1078 0.86 0 1.298990 103.8386
## 1079 0.00 0 1.319170 103.9431
## 1080 0.84 1 1.281170 103.8419
## 1081 0.00 0 1.292600 103.7684
## 1082 1.00 0 1.301120 103.8523
## 1083 1.00 1 1.298060 103.8490
## 1084 NA 0 1.350370 103.8367
## 1085 0.86 0 1.297650 103.8363
## 1086 0.84 1 1.279520 103.8438
## 1087 1.00 0 1.314070 103.9347
## 1088 NA 0 1.275240 103.8425
## 1089 0.84 1 1.316690 103.9126
## 1090 0.71 0 1.317700 103.8436
## 1091 0.11 0 1.324490 103.8431
## 1092 0.33 0 1.310210 103.8582
## 1093 NA 0 1.284600 103.8433
## 1094 NA 0 1.330840 103.9084
## 1095 0.81 0 1.314700 103.8816
## 1096 0.71 0 1.291590 103.8063
## 1097 1.00 1 1.311590 103.8877
## 1098 0.97 0 1.309570 103.8611
## 1099 0.91 1 1.310490 103.8613
## 1100 0.91 1 1.309790 103.8615
## 1101 0.86 0 1.297000 103.8377
## 1102 0.86 0 1.297760 103.8387
## 1103 0.99 1 1.297950 103.8525
## 1104 0.41 0 1.318060 103.8459
## 1105 0.96 0 1.287980 103.8490
## 1106 0.13 0 1.309350 103.9130
## 1107 0.13 0 1.309930 103.9110
## 1108 0.13 0 1.308110 103.9112
## 1109 0.13 0 1.309440 103.9109
## 1110 0.13 0 1.307810 103.9124
## 1111 0.13 0 1.309380 103.9111
## 1112 1.00 1 1.306160 103.8389
## 1113 0.36 1 1.306060 103.8402
## 1114 0.77 0 1.281160 103.7873
## 1115 0.13 0 1.296290 103.8521
## 1116 0.13 0 1.297450 103.8534
## 1117 0.13 0 1.298010 103.8536
## 1118 NA 0 1.374090 103.8273
## 1119 0.67 0 1.281360 103.7861
## 1120 0.91 0 1.325470 103.8625
## 1121 0.84 1 1.282350 103.8480
## 1122 0.30 0 1.315050 103.8426
## 1123 0.40 1 1.312800 103.7965
## 1124 0.90 0 1.281810 103.8465
## 1125 NA 1 1.317650 103.9064
## 1126 NA 0 1.352690 103.7553
## 1127 0.89 1 1.275580 103.8438
## 1128 0.97 0 1.283350 103.8433
## 1129 0.00 0 1.295140 103.8372
## 1130 1.00 0 1.301420 103.8596
## 1131 0.13 0 1.311280 103.8739
## 1132 0.13 0 1.310960 103.8718
## 1133 0.91 1 1.314700 103.8816
## 1134 NA 0 1.284120 103.8440
## 1135 0.89 1 1.334970 103.7424
## 1136 0.89 1 1.274920 103.8440
## 1137 0.96 0 1.314700 103.8816
## 1138 0.97 0 1.309730 103.8621
## 1139 0.50 1 1.320000 103.7503
## 1140 0.97 0 1.308210 103.8628
## 1141 NA 0 1.321110 103.9140
## 1142 NA 0 1.309910 103.8835
## 1143 0.89 1 1.332360 103.8666
## 1144 0.89 1 1.336520 103.7431
## 1145 0.84 1 1.281870 103.8450
## 1146 1.00 0 1.375990 103.9022
## 1147 0.96 0 1.284690 103.8435
## 1148 0.89 1 1.273400 103.8442
## 1149 0.89 1 1.352690 103.8498
## 1150 0.89 1 1.337140 103.7414
## 1151 0.89 1 1.328400 103.8511
## 1152 0.99 1 1.297580 103.8535
## 1153 0.89 1 1.315490 103.7587
## 1154 0.96 0 1.311810 103.8589
## 1155 0.96 0 1.284260 103.8344
## 1156 0.30 0 1.288760 103.8306
## 1157 0.81 0 1.284610 103.8340
## 1158 0.91 1 1.284340 103.8340
## 1159 0.91 1 1.284100 103.8425
## 1160 0.89 1 1.275270 103.8454
## 1161 0.91 1 1.310680 103.8612
## 1162 0.96 0 1.314700 103.8816
## 1163 0.89 1 1.336960 103.7429
## 1164 1.00 0 1.322260 103.9215
## 1165 0.84 0 1.313360 103.8861
## 1166 1.00 0 1.301130 103.8534
## 1167 1.00 0 1.301400 103.8534
## 1168 NA 0 1.285840 103.8334
## 1169 0.31 0 1.288330 103.8370
## 1170 0.97 0 1.311930 103.8590
## 1171 NA 0 1.303530 103.8504
## 1172 0.94 1 1.430020 103.7800
## 1173 0.89 1 1.303260 103.8611
## 1174 0.89 1 1.303200 103.8626
## 1175 1.00 1 1.368660 103.8994
## 1176 NA 0 1.265860 103.8101
## 1177 0.31 0 1.312590 103.7584
## 1178 0.97 0 1.311160 103.8581
## 1179 1.00 1 1.281760 103.8457
## 1180 0.00 0 1.316560 103.8598
## 1181 0.96 0 1.283380 103.8450
## 1182 0.89 1 1.303180 103.8611
## 1183 0.13 0 1.325850 103.8509
## 1184 0.91 1 1.310830 103.8611
## 1185 0.89 1 1.302840 103.8634
## 1186 NA 0 1.437400 103.7958
## 1187 0.89 1 1.341920 103.8817
## 1188 0.89 1 1.346650 103.7244
## 1189 0.96 0 1.304570 103.8602
## 1190 0.00 0 1.316880 103.8605
## 1191 NA 0 1.333580 103.7383
## 1192 1.00 0 1.385520 103.8427
## 1193 0.80 0 1.443590 103.7943
## 1194 1.00 1 1.358550 103.8828
## 1195 0.97 0 1.309590 103.8614
## 1196 0.91 1 1.309730 103.8605
## 1197 0.93 1 1.318010 103.8488
## 1198 0.84 0 1.315790 103.8880
## 1199 1.00 1 1.281500 103.8471
## 1200 0.89 1 1.279960 103.8464
## 1201 0.91 0 1.325880 103.8623
## 1202 NA 0 1.295060 103.8276
## 1203 0.81 0 1.312340 103.8578
## 1204 0.07 0 1.310140 103.8782
## 1205 0.97 0 1.318040 103.7798
## 1206 NA 0 1.444180 103.8065
## 1207 0.07 0 1.311670 103.8764
## 1208 0.99 1 1.299190 103.8537
## 1209 0.99 1 1.297400 103.8533
## 1210 0.57 0 1.274550 103.8349
## 1211 0.71 0 1.275330 103.8339
## 1212 0.71 0 1.274970 103.8340
## 1213 0.99 1 1.297540 103.8517
## 1214 1.00 0 1.281550 103.8450
## 1215 0.57 0 1.283960 103.8396
## 1216 0.07 0 1.305840 103.9012
## 1217 0.77 0 1.281250 103.7854
## 1218 0.09 0 1.311800 103.8593
## 1219 0.99 1 1.296920 103.8520
## 1220 0.00 0 1.312700 103.8613
## 1221 0.00 0 1.312500 103.8612
## 1222 0.00 0 1.301100 103.8605
## 1223 1.00 1 1.291940 103.7678
## 1224 NA 0 1.335060 103.7856
## 1225 1.00 1 1.291960 103.7697
## 1226 0.89 1 1.278740 103.8469
## 1227 0.67 0 1.322010 103.8576
## 1228 0.80 1 1.355600 103.8638
## 1229 0.89 1 1.273470 103.8440
## 1230 NA 0 1.275630 103.8485
## 1231 0.88 1 1.322100 103.9139
## 1232 0.88 1 1.322520 103.9151
## 1233 0.84 1 1.324120 103.9137
## 1234 0.84 1 1.323660 103.9155
## 1235 0.96 0 1.282650 103.8460
## 1236 0.75 1 1.279430 103.8411
## 1237 0.74 0 1.312380 103.8804
## 1238 0.24 0 1.322150 103.8528
## 1239 0.85 1 1.306120 103.8556
## 1240 0.99 0 1.313250 103.8621
## 1241 0.89 1 1.305500 103.8993
## 1242 0.41 0 1.296510 103.8388
## 1243 0.95 0 1.326530 103.8486
## 1244 0.71 0 1.304900 103.7823
## 1245 0.96 0 1.297490 103.8567
## 1246 0.96 0 1.297490 103.8567
## 1247 1.00 0 1.292607 103.8489
## 1248 0.89 1 1.284940 103.8337
## 1249 0.99 1 1.297900 103.8578
## 1250 0.41 0 1.300530 103.8842
## 1251 1.00 0 1.346760 103.7323
## 1252 0.65 1 1.301980 103.8503
## 1253 0.96 0 1.312410 103.8581
## 1254 0.80 0 1.283980 103.8027
## 1255 0.97 0 1.309990 103.8618
## 1256 1.00 0 1.283630 103.8596
## 1257 0.72 1 1.312670 103.8566
## 1258 1.00 1 1.277730 103.8455
## 1259 1.00 0 1.311030 103.8840
## 1260 0.72 1 1.311500 103.8582
## 1261 1.00 0 1.313160 103.9010
## 1262 1.00 0 1.314150 103.9029
## 1263 0.30 0 1.300500 103.8842
## 1264 0.99 0 1.317980 103.8517
## 1265 0.97 0 1.273860 103.8421
## 1266 1.00 0 1.300510 103.9025
## 1267 0.99 1 1.297690 103.8536
## 1268 0.99 1 1.297060 103.8520
## 1269 1.00 0 1.306480 103.8551
## 1270 0.84 1 1.287560 103.8485
## 1271 0.96 0 1.294590 103.8401
## 1272 1.00 0 1.306310 103.7677
## 1273 0.74 1 1.311290 103.8774
## 1274 0.88 1 1.317610 103.8484
## 1275 0.70 0 1.276630 103.8450
## 1276 0.97 0 1.284100 103.8425
## 1277 NA 0 1.277160 103.8230
## 1278 0.97 0 1.307200 103.8636
## 1279 NA 0 1.301540 103.8594
## 1280 NA 0 1.312010 103.8610
## 1281 0.00 0 1.317860 103.9059
## 1282 0.00 0 1.315460 103.8412
## 1283 NA 1 1.299970 103.8854
## 1284 0.84 0 1.295870 103.8406
## 1285 0.63 1 1.276260 103.8407
## 1286 0.00 0 1.357470 103.8478
## 1287 0.36 1 1.311070 103.7969
## 1288 0.50 1 1.324190 103.8525
## 1289 1.00 1 1.276970 103.8390
## 1290 0.84 0 1.315460 103.8881
## 1291 NA 0 1.398630 103.9062
## 1292 NA 0 1.306340 103.9021
## 1293 0.84 1 1.317560 103.9125
## 1294 0.84 1 1.317160 103.9123
## 1295 0.84 1 1.317160 103.9126
## 1296 0.84 1 1.316960 103.9139
## 1297 NA 0 1.303940 103.8511
## 1298 NA 0 1.283130 103.8436
## 1299 0.00 0 1.288480 103.8498
## 1300 0.36 1 1.313240 103.8595
## 1301 0.36 1 1.313390 103.8603
## 1302 0.36 1 1.313310 103.8604
## 1303 0.36 1 1.312770 103.8617
## 1304 NA 0 1.282890 103.8466
## 1305 0.38 0 1.311400 103.8608
## 1306 0.91 1 1.284000 103.8435
## 1307 0.02 0 1.312550 103.8603
## 1308 NA 0 1.304240 103.8488
## 1309 0.50 1 1.287830 103.8035
## 1310 0.33 0 1.310050 103.8583
## 1311 0.33 0 1.310050 103.8583
## 1312 0.33 0 1.310050 103.8583
## 1313 0.38 0 1.395680 103.8802
## 1314 1.00 0 1.345770 103.8804
## 1315 0.96 0 1.340960 103.8417
## 1316 0.91 1 1.313380 103.8584
## 1317 NA 0 1.353610 103.9670
## 1318 0.00 0 1.293550 103.7684
## 1319 0.84 1 1.328330 103.9159
## 1320 0.97 0 1.283380 103.8413
## 1321 0.88 1 1.325220 103.9150
## 1322 0.97 0 1.310010 103.8628
## 1323 NA 0 1.349880 103.8366
## 1324 0.25 0 1.321570 103.8430
## 1325 0.81 0 1.315520 103.8821
## 1326 0.71 0 1.308440 103.7613
## 1327 0.88 0 1.298280 103.7892
## 1328 0.71 0 1.305410 103.7837
## 1329 0.33 0 1.310050 103.8583
## 1330 0.88 1 1.323620 103.9146
## 1331 0.00 0 1.360340 103.7657
## 1332 0.50 0 1.284890 103.8429
## 1333 0.33 0 1.310050 103.8583
## 1334 0.97 0 1.314700 103.8816
## 1335 0.02 0 1.312320 103.8590
## 1336 NA 0 1.311430 103.8607
## 1337 0.81 0 1.307840 103.8612
## 1338 0.81 0 1.309570 103.8613
## 1339 NA 0 1.351560 103.6989
## 1340 1.00 1 1.302360 103.8399
## 1341 0.25 0 1.277310 103.8432
## 1342 0.00 0 1.294540 103.7679
## 1343 0.81 0 1.309830 103.8620
## 1344 1.00 0 1.283860 103.8299
## 1345 0.97 0 1.311120 103.8581
## 1346 NA 0 1.274480 103.8444
## 1347 NA 0 1.274740 103.8445
## 1348 0.11 0 1.282030 103.8540
## 1349 0.91 1 1.307910 103.8631
## 1350 0.11 0 1.281160 103.8536
## 1351 0.81 0 1.316610 103.8830
## 1352 0.71 0 1.310200 103.7615
## 1353 0.50 0 1.284830 103.8436
## 1354 0.50 0 1.284840 103.8428
## 1355 0.50 0 1.283000 103.8448
## 1356 1.00 0 1.326990 103.8496
## 1357 0.97 0 1.315410 103.8822
## 1358 0.90 0 1.344630 103.7325
## 1359 NA 0 1.357510 103.8300
## 1360 0.91 1 1.308950 103.8615
## 1361 NA 0 1.295140 103.8367
## 1362 0.00 0 1.300410 103.8586
## 1363 1.00 0 1.325280 103.8504
## 1364 0.81 0 1.315630 103.8823
## 1365 0.91 1 1.308200 103.8609
## 1366 1.00 0 1.411980 103.8450
## 1367 0.41 0 1.292280 103.8065
## 1368 0.81 0 1.314700 103.8816
## 1369 0.81 0 1.307360 103.8622
## 1370 0.81 0 1.283790 103.8438
## 1371 0.84 0 1.314500 103.8859
## 1372 NA 0 1.322160 103.8540
## 1373 1.00 1 1.302430 103.8401
## 1374 1.00 1 1.302360 103.8418
## 1375 0.41 0 1.312370 103.8317
## 1376 0.84 1 1.295860 103.8539
## 1377 0.36 1 1.310780 103.7970
## 1378 0.30 0 1.303760 103.7845
## 1379 0.86 0 1.299040 103.8371
## 1380 0.13 0 1.309490 103.9126
## 1381 0.13 0 1.307990 103.9128
## 1382 0.13 0 1.308200 103.9110
## 1383 1.00 1 1.338250 103.8414
## 1384 0.41 0 1.334470 103.7414
## 1385 0.41 0 1.335880 103.7428
## 1386 1.00 0 1.347960 103.8810
## 1387 NA 0 1.325970 103.8110
## 1388 1.00 0 1.303980 103.8543
## 1389 0.41 0 1.311240 103.7615
## 1390 0.97 0 1.283470 103.8417
## 1391 0.91 1 1.283720 103.8414
## 1392 0.90 0 1.281890 103.8454
## 1393 0.13 0 1.298060 103.8519
## 1394 0.97 0 1.310880 103.8604
## 1395 NA 0 1.302880 103.8513
## 1396 0.91 0 1.327030 103.8646
## 1397 0.30 0 1.292260 103.8078
## 1398 0.97 0 1.284200 103.8426
## 1399 0.30 0 1.316690 103.8428
## 1400 NA 0 1.303090 103.8514
## 1401 0.91 1 1.314900 103.8816
## 1402 0.97 0 1.314700 103.8816
## 1403 0.70 0 1.274520 103.8450
## 1404 0.67 1 1.314530 103.8997
## 1405 0.97 0 1.284480 103.8436
## 1406 0.23 0 1.353480 103.8327
## 1407 0.23 0 1.353480 103.8327
## 1408 0.89 1 1.273490 103.8436
## 1409 NA 0 1.373790 103.8288
## 1410 1.00 0 1.315710 103.8841
## 1411 1.00 0 1.299468 103.8623
## 1412 1.00 0 1.302170 103.8615
## 1413 1.00 0 1.301830 103.8614
## 1414 1.00 0 1.283260 103.8450
## 1415 0.13 0 1.311470 103.8739
## 1416 0.81 0 1.314730 103.8816
## 1417 0.50 0 1.283340 103.8428
## 1418 NA 0 1.282110 103.8436
## 1419 0.89 1 1.327060 103.8510
## 1420 NA 0 1.282540 103.8440
## 1421 0.06 0 1.312020 103.8534
## 1422 0.89 1 1.274230 103.8440
## 1423 0.89 1 1.273350 103.8459
## 1424 0.81 0 1.311150 103.8622
## 1425 0.89 1 1.273700 103.8438
## 1426 0.91 1 1.314730 103.8816
## 1427 0.81 0 1.311390 103.8625
## 1428 0.89 1 1.326390 103.8498
## 1429 0.80 0 1.281270 103.8037
## 1430 0.89 1 1.274850 103.8472
## 1431 0.89 1 1.335100 103.7417
## 1432 0.96 0 1.309110 103.8629
## 1433 1.00 0 1.283920 103.8423
## 1434 0.81 0 1.284200 103.8426
## 1435 0.96 0 1.311280 103.8606
## 1436 0.96 0 1.284200 103.8426
## 1437 0.91 1 1.311350 103.8602
## 1438 0.96 0 1.308870 103.8633
## 1439 0.96 0 1.284670 103.8417
## 1440 0.96 0 1.309600 103.8625
## 1441 0.96 0 1.314730 103.8816
## 1442 0.96 0 1.314700 103.8816
## 1443 0.97 0 1.310290 103.8628
## 1444 0.84 1 1.295670 103.8556
## 1445 0.97 0 1.312290 103.8598
## 1446 0.41 0 1.303540 103.8482
## 1447 0.41 0 1.301490 103.8472
## 1448 0.00 0 1.427680 103.7756
## 1449 0.41 0 1.291000 103.8305
## 1450 0.41 0 1.293110 103.8406
## 1451 0.30 0 1.321740 103.8145
## 1452 NA 0 1.330360 103.8884
## 1453 0.81 0 1.310460 103.8623
## 1454 0.50 0 1.278670 103.7850
## 1455 NA 1 1.281530 103.8302
## 1456 1.00 0 1.374610 103.9027
## 1457 0.89 1 1.279030 103.8486
## 1458 0.89 1 1.275680 103.8458
## 1459 0.89 1 1.276290 103.8456
## 1460 0.30 0 1.293740 103.8279
## 1461 NA 0 1.372890 103.8565
## 1462 0.97 0 1.283020 103.8416
## 1463 0.96 0 1.284200 103.8426
## 1464 0.97 0 1.311880 103.8601
## 1465 0.91 1 1.310390 103.8614
## 1466 0.30 0 1.294250 103.8275
## 1467 0.96 0 1.310400 103.8617
## 1468 0.30 0 1.352960 103.8192
## 1469 NA 0 1.328610 103.8641
## 1470 0.84 1 1.281960 103.8477
## 1471 0.50 0 1.301470 103.9020
## 1472 0.97 0 1.284100 103.8425
## 1473 0.89 1 1.273160 103.8452
## 1474 0.09 0 1.336610 103.7441
## 1475 0.00 0 1.307440 103.8526
## 1476 0.60 0 1.295100 103.8283
## 1477 0.81 0 1.310980 103.8601
## 1478 0.91 1 1.314700 103.8816
## 1479 1.00 0 1.347300 103.8788
## 1480 0.91 1 1.310100 103.8621
## 1481 0.91 1 1.314700 103.8816
## 1482 0.00 0 1.349820 103.9299
## 1483 0.41 0 1.274990 103.8453
## 1484 1.00 0 1.340360 103.8798
## 1485 0.96 0 1.314700 103.8816
## 1486 0.97 0 1.284100 103.8425
## 1487 0.31 0 1.297000 103.8555
## 1488 NA 0 1.286120 103.8315
## 1489 0.81 0 1.283490 103.8432
## 1490 NA 0 1.283890 103.8315
## 1491 NA 0 1.284260 103.8336
## 1492 NA 0 1.284540 103.8319
## 1493 0.31 0 1.278260 103.8436
## 1494 0.31 0 1.318640 103.8489
## 1495 0.41 0 1.350920 103.8196
## 1496 NA 0 1.314790 103.8836
## 1497 0.30 0 1.302680 103.8317
## 1498 0.31 0 1.352860 103.8205
## 1499 0.00 0 1.290570 103.8498
## 1500 0.41 0 1.299120 103.8411
## 1501 0.91 1 1.312630 103.8581
## 1502 0.30 0 1.310340 103.8385
## 1503 0.30 0 1.291820 103.8405
## 1504 0.36 1 1.312920 103.7976
## 1505 0.30 0 1.352900 103.8189
## 1506 0.89 1 1.331850 103.8661
## 1507 0.00 0 1.338350 103.7037
## 1508 NA 0 1.267000 103.8114
## 1509 0.30 0 1.293870 103.8265
## 1510 0.89 1 1.306860 103.8981
## 1511 1.00 0 1.314830 103.8727
## 1512 0.00 0 1.314620 103.8587
## 1513 0.00 0 1.315990 103.8604
## 1514 0.96 0 1.283760 103.8456
## 1515 0.31 0 1.313540 103.7581
## 1516 0.00 0 1.333680 103.7857
## 1517 0.89 1 1.312270 103.8582
## 1518 1.00 1 1.281390 103.8474
## 1519 0.89 1 1.313770 103.8581
## 1520 0.97 0 1.284200 103.8426
## 1521 0.50 0 1.363210 103.9671
## 1522 0.13 0 1.306360 103.8545
## 1523 0.13 0 1.306190 103.8532
## 1524 0.91 1 1.314700 103.8816
## 1525 0.91 1 1.310680 103.8612
## 1526 1.00 0 1.372890 103.8371
## 1527 0.99 1 1.297220 103.8535
## 1528 0.89 1 1.320010 103.8821
## 1529 1.00 0 1.352380 103.6987
## 1530 1.00 0 1.345950 103.8704
## 1531 0.96 0 1.305200 103.8598
## 1532 NA 0 1.304880 103.8491
## 1533 0.97 0 1.285130 103.8416
## 1534 0.00 0 1.314010 103.8859
## 1535 0.97 0 1.283520 103.8432
## 1536 0.00 0 1.316210 103.8864
## 1537 NA 0 1.314450 103.8312
## 1538 0.96 0 1.310680 103.8612
## amenities
## 1 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Hair dryer,Wifi,TV,Air conditioning,Smoke alarm,Fire extinguisher
## 2 Toaster,Sound system,Hangers,Bed linens,Hot water kettle,Coffee maker,Carbon monoxide alarm,Hair dryer,TV,Outdoor furniture,Dining table,Security cameras on property,Outdoor dining area,Private entrance,Refrigerator,Microwave,Waterfront,Wifi,Smoke alarm,Shampoo,Portable fans,Paid parking off premises,Hot water,Mini fridge,Essentials,First aid kit,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 3 Shampoo,Essentials,Kitchen,Long term stays allowed,Private entrance,Hair dryer,Lock on bedroom door,First aid kit,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 4 Cleaning before checkout,Hangers,Bed linens,Cooking basics,Washer,Single level home,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Free parking on premises,Room-darkening shades,Long term stays allowed,Private entrance,Elevator,Refrigerator,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Keypad,Heating,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Dishes and silverware,Shared pool,Air conditioning,Shower gel,Fire extinguisher
## 5 Sound system,Hangers,Bed linens,Coffee maker,Hair dryer,TV,Paid parking on premises,Lockbox,Room-darkening shades,Security cameras on property,Long term stays allowed,Patio or balcony,Pour-over coffee,Microwave,Waterfront,Wifi,Smoke alarm,Shampoo,Extra pillows and blankets,Hot water,Mini fridge,Essentials,Kitchen,EV charger,First aid kit,Air conditioning,Shower gel,Fire extinguisher
## 6 Shampoo,Breakfast,Essentials,Building staff,Hangers,Bed linens,Heating,Long term stays allowed,Washer,Hair dryer,Dryer,First aid kit,Wifi,Hot water,Air conditioning,Dedicated workspace,Smoke alarm,Luggage dropoff allowed,Fire extinguisher
## 7 Shampoo,Essentials,Smoke alarm,Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Private entrance,Hair dryer,Lock on bedroom door,First aid kit,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Shower gel,Fire extinguisher
## 8 Hangers,Free dryer \\u2013 In building,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Free washer \\u2013 In building,Long term stays allowed,Elevator,Refrigerator,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Essentials,Kitchen,Air conditioning,Shower gel,Fire extinguisher
## 9 Toaster,Bidet,Hangers,Bed linens,Hot water kettle,Coffee maker,Cooking basics,Freezer,Bathtub,Ethernet connection,Dining table,Free parking on premises,Room-darkening shades,Dedicated workspace: office chair,table,desk,and monitor,Cleaning products,Wine glasses,Long term stays allowed,Outdoor dining area,Laundromat nearby,Central air conditioning,Private entrance,Elevator,Refrigerator,Free washer \\u2013 In unit,Microwave,HDTV with Chromecast,Netflix,Wifi,Shampoo,Free dryer \\u2013 In unit,Extra pillows and blankets,Keypad,Paid parking off premises,Hot water,Body soap,Iron,Essentials,Kitchen,Private patio or balcony,First aid kit,Dishes and silverware,Shower gel
## 10 Backyard,Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Dedicated workspace,Free parking on premises,Crib,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Cable TV,Hot water,Iron,Building staff,Essentials,Kitchen,First aid kit,Shared pool,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 11 Cleaning before checkout,Hangers,Coffee maker,Washer,Hair dryer,Oven,Dedicated workspace,Long term stays allowed,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Keypad,Heating,Paid parking off premises,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 12 Hangers,Cooking basics,Washer,Hair dryer,Oven,TV,Dedicated workspace,Long term stays allowed,Private entrance,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Dishwasher,Heating,Paid parking off premises,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 13 Hangers,Cooking basics,Washer,Hair dryer,TV,Lockbox,High chair,Dedicated workspace,Free parking on premises,Crib,Security cameras on property,Long term stays allowed,Elevator,Refrigerator,Microwave,Baby bath,Free street parking,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,Private patio or balcony,Air conditioning,Dishes and silverware,Fire extinguisher
## 14 Shampoo,Essentials,Smoke alarm,Hangers,Bed linens,Kitchen,Long term stays allowed,Hair dryer,Wifi,TV,Air conditioning,Dedicated workspace,Shower gel,Iron,Fire extinguisher
## 15 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Lock on bedroom door,Host greets you,Dryer,First aid kit,Wifi,Air conditioning,Dedicated workspace,Iron
## 16 Rice maker,Toaster,Safe,Hangers,Bed linens,Hot water kettle,Freezer,Coffee maker,Washer,Cooking basics,Single level home,Hair dryer,Clothing storage,Host greets you,Oven,Paid parking on premises,Dining table,Dedicated workspace,Room-darkening shades,Cleaning products,Wine glasses,Security cameras on property,Long term stays allowed,Laundromat nearby,Elevator,Nespresso machine,Pocket wifi,Refrigerator,Dryer,Pour-over coffee,Microwave,Gym,Wifi,Beachfront,Board games,Luggage dropoff allowed,Shampoo,Breakfast,Extra pillows and blankets,Portable fans,Heating,Conditioner,Cable TV,Hot water,Stove,Beach essentials,Body soap,BBQ grill,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Private patio or balcony,Dishes and silverware,Shared pool,Air conditioning,Shower gel,TV with standard cable
## 17 Coffee maker,Bed linens,Cooking basics,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Microwave,Wifi,Smoke alarm,Shampoo,Hot water,Iron,Shower gel,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 18 Hangers,Bed linens,Washer,Hair dryer,Paid parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Keypad,Heating,Paid parking off premises,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 19 Hangers,Free dryer \\u2013 In building,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Free washer \\u2013 In building,Long term stays allowed,Lock on bedroom door,Refrigerator,Microwave,Wifi,Smoke alarm,Shampoo,Induction stove,Hot water,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 20 Hangers,Bed linens,Free dryer \\u2013 In building,Smart lock,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Free washer \\u2013 In building,Long term stays allowed,Elevator,Refrigerator,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 21 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Host greets you,Oven,Dedicated workspace,Long term stays allowed,Lock on bedroom door,Dryer,Microwave,Free street parking,Wifi,Shampoo,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Shower gel
## 22 Hangers,Bed linens,Washer,Single level home,Hair dryer,Oven,TV,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Shampoo,Extra pillows and blankets,Paid parking off premises,Hot water,Stove,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 23 Rice maker,Bidet,Dryer \\u2013 In building,Hangers,Bed linens,Hot water kettle,Freezer,Cooking basics,Single level home,Hair dryer,Lockbox,High chair,Dedicated workspace,Electric stove,Room-darkening shades,Dining table,Cleaning products,Wine glasses,Lake access,Long term stays allowed,Drying rack for clothing,Laundromat nearby,Central air conditioning,Private entrance,Elevator,Refrigerator,Paid parking lot on premises \\u2013 100 spaces,Microwave,TV with Chromecast,Baby bath,Waterfront,Paid street parking off premises,Wifi,Children\\u2019s dinnerware,Smoke alarm,Luggage dropoff allowed,Shampoo,Ceiling fan,Extra pillows and blankets,Portable fans,Conditioner,Hot water,Clothing storage: wardrobe,Body soap,Iron,Essentials,Kitchen,First aid kit,Dishes and silverware,Washer \\u2013\\u00a0In unit,Shower gel
## 24 Hangers,Cooking basics,Washer,Hair dryer,Oven,TV,Long term stays allowed,Patio or balcony,Refrigerator,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Heating,Paid parking off premises,Hot water,Iron,Shower gel,Building staff,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 25 Shampoo,Essentials,Hangers,Bed linens,Kitchen,Long term stays allowed,Hair dryer,Refrigerator,First aid kit,Wifi,Hot water,Stove,Dishes and silverware,TV,Air conditioning,Dedicated workspace,Shower gel,Iron,Fire extinguisher
## 26 Backyard,Hangers,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,Lockbox,Children\\u2019s books and toys,Dedicated workspace,Free parking on premises,Long term stays allowed,Private entrance,Refrigerator,Microwave,Free street parking,Wifi,Smoke alarm,Children\\u2019s dinnerware,Luggage dropoff allowed,Shampoo,Cable TV,Hot water,Iron,Essentials,Kitchen,Changing table,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable
## 27 Shampoo,Essentials,Smoke alarm,Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Dryer,First aid kit,Wifi,Hot water,TV,Air conditioning,Shower gel,Iron,Fire extinguisher
## 28 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,Paid parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Shampoo,Keypad,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 29 Shampoo,Essentials,Security cameras on property,Smoke alarm,Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Dryer,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Shower gel,Fire extinguisher
## 30 Hangers,Bed linens,Free dryer \\u2013 In building,Smart lock,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Free washer \\u2013 In building,Long term stays allowed,Elevator,Refrigerator,Microwave,Wifi,Smoke alarm,Shampoo,Hot water,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 31 Shampoo,Essentials,Hangers,Bed linens,Kitchen,Long term stays allowed,Hair dryer,Refrigerator,First aid kit,Wifi,Hot water,Stove,Dishes and silverware,TV,Air conditioning,Dedicated workspace,Shower gel,Iron,Fire extinguisher
## 32 Backyard,Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,Dedicated workspace,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Gym,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Keypad,Hot water,Iron,Essentials,Air conditioning
## 33 Shampoo,Building staff,Essentials,Dishwasher,Hangers,Heating,Paid parking off premises,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Refrigerator,Dryer,Wifi,Hot water,TV,Air conditioning,Luggage dropoff allowed
## 34 Hangers,Washer,Hair dryer,Host greets you,TV,Paid parking on premises,High chair,Dedicated workspace,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Dryer,Wifi,Shampoo,Hot tub,Hot water,Iron,Essentials,First aid kit,Air conditioning
## 35 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,TV,Air conditioning,Iron,Fire extinguisher
## 36 Toaster,Bidet,Safe,Hangers,Bed linens,Freezer,Free dryer \\u2013 In building,Carbon monoxide alarm,Hair dryer,Clothing storage,Host greets you,Dedicated workspace,Wine glasses,Security cameras on property,Free washer \\u2013 In building,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Microwave,Paid street parking off premises,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Stove,Iron,Essentials,TV with Apple TV,Kitchen,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 37 Shampoo,Building staff,Essentials,Hangers,Heating,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Refrigerator,Dryer,Wifi,Hot water,TV,Paid parking on premises,Air conditioning,Luggage dropoff allowed
## 38 Hangers,Bed linens,Washer,Single level home,Hair dryer,Host greets you,Oven,TV,Dedicated workspace,Pool,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Extra pillows and blankets,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 39 Cleaning before checkout,Hangers,Bed linens,Cooking basics,Washer,Single level home,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Free parking on premises,Room-darkening shades,Pool,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Shampoo,Hot water,Body soap,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 40 Shampoo,Essentials,Hangers,Bed linens,Kitchen,Coffee maker,Long term stays allowed,Washer,Hair dryer,Refrigerator,Dryer,Wifi,Hot water,Microwave,TV,Air conditioning,Dedicated workspace,Shower gel
## 41 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Host greets you,Dryer,Air conditioning,First aid kit,Hot water,Wifi,TV,Paid parking on premises,High chair,Dedicated workspace,Iron
## 42 Hangers,Bed linens,Free dryer \\u2013 In building,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Free washer \\u2013 In building,Long term stays allowed,Lock on bedroom door,Refrigerator,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Induction stove,Hot water,Iron,Essentials,Kitchen,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 43 Shampoo,Essentials,Backyard,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Refrigerator,Host greets you,Wifi,Hot water,Free street parking,Air conditioning,Iron
## 44 Hangers,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Free parking on premises,Crib,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Refrigerator,Microwave,Free street parking,Wifi,Smoke alarm,Shampoo,Shared patio or balcony,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 45 Essentials,Hangers,Bed linens,Long term stays allowed,Luggage dropoff allowed,Wifi,Hot water,Free parking on premises,Free street parking,Air conditioning,Dedicated workspace,Iron
## 46 Hangers,Cooking basics,Washer,Hair dryer,TV,Long term stays allowed,Private entrance,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Heating,Paid parking off premises,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 47 Shampoo,Essentials,Backyard,Hangers,Long term stays allowed,Private entrance,Patio or balcony,Host greets you,Wifi,Hot water,Air conditioning,Free parking on premises,Shower gel,Luggage dropoff allowed
## 48 Hangers,Washer,Hair dryer,Host greets you,TV,Paid parking on premises,High chair,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Wifi,Shampoo,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware
## 49 Hangers,Washer,Smart lock,Carbon monoxide alarm,Hair dryer,TV,Free parking on premises,Pool,Dedicated workspace,Long term stays allowed,Elevator,Dryer,Wifi,Smoke alarm,Shampoo,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Fire extinguisher
## 50 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,TV,Air conditioning,Dedicated workspace,Iron,Fire extinguisher
## 51 Shampoo,Essentials,Kitchen,Long term stays allowed,Private entrance,Hair dryer,Lock on bedroom door,First aid kit,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Fire extinguisher
## 52 Shampoo,Essentials,Security cameras on property,Long term stays allowed,Hair dryer,Wifi,Air conditioning,Smoke alarm,Iron,Fire extinguisher
## 53 Shampoo,Essentials,Hangers,Bed linens,Kitchen,Long term stays allowed,Hair dryer,Refrigerator,First aid kit,Wifi,Hot water,Stove,Dishes and silverware,TV,Air conditioning,Dedicated workspace,Shower gel,Iron,Fire extinguisher
## 54 Hangers,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Free parking on premises,Crib,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Refrigerator,Microwave,Free street parking,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,Private patio or balcony,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 55 Hangers,Bed linens,Free dryer \\u2013 In building,Smart lock,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Free washer \\u2013 In building,Long term stays allowed,Elevator,Refrigerator,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 56 Hangers,Washer,Smart lock,Carbon monoxide alarm,Hair dryer,TV,Free parking on premises,Pool,Dedicated workspace,Long term stays allowed,Elevator,Dryer,Wifi,Smoke alarm,Shampoo,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Fire extinguisher
## 57 Hangers,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Free parking on premises,Crib,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Refrigerator,Microwave,Free street parking,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,Private patio or balcony,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 58 Hangers,Bed linens,Hot water kettle,Cooking basics,Washer,Single level home,Carbon monoxide alarm,Hair dryer,Oven,Baking sheet,Dedicated workspace,Long term stays allowed,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,Microwave,Wifi,Smoke alarm,Shampoo,Keypad,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 59 Hangers,Bed linens,Washer,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Private entrance,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 60 Hangers,Bed linens,Cooking basics,Washer,Single level home,Carbon monoxide alarm,Hair dryer,Host greets you,Oven,TV,Dedicated workspace,Room-darkening shades,Elevator,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Children\\u2019s dinnerware,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 61 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Hot water,TV,Air conditioning,Iron,Fire extinguisher
## 62 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Elevator,Dryer,First aid kit,Wifi,Free parking on premises,Pool,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 63 Hangers,Bed linens,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Free parking on premises,Crib,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Refrigerator,Microwave,Wifi,Smoke alarm,Shampoo,Extra pillows and blankets,Hot water,Stove,Iron,Essentials,Kitchen,Private patio or balcony,First aid kit,Air conditioning,Fire extinguisher
## 64 Hangers,Washer,Hair dryer,TV,Free parking on premises,Pool,Children\\u2019s books and toys,Dedicated workspace,Long term stays allowed,Elevator,Microwave,Gym,Wifi,Shampoo,Keypad,Hot water,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 65 Hangers,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,Dedicated workspace,Free parking on premises,Pool,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Heating,Cable TV,Hot tub,Hot water,Stove,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable
## 66 Hangers,Washer,Hair dryer,TV,Free parking on premises,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Building staff,Essentials,Kitchen,Air conditioning,Fire extinguisher
## 67 Shampoo,Essentials,Backyard,Hangers,Paid parking off premises,Long term stays allowed,Luggage dropoff allowed,Hair dryer,Elevator,Refrigerator,Host greets you,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron
## 68 Hangers,Bed linens,Washer,Hair dryer,Host greets you,Ethernet connection,Dedicated workspace,Pool,Long term stays allowed,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Shampoo,Cable TV,Hot water,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 69 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Patio or balcony,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Dishwasher,Extra pillows and blankets,Heating,Hot water,Stove,Iron,Essentials,Kitchen,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 70 Hangers,Bed linens,Cooking basics,Washer,Smart lock,Hair dryer,Ethernet connection,Dedicated workspace,Free parking on premises,Pool,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Heating,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 71 Backyard,Hangers,Bed linens,Hair dryer,Host greets you,TV,Free parking on premises,Dedicated workspace,Long term stays allowed,Lock on bedroom door,Refrigerator,Patio or balcony,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Paid parking off premises,Hot water,Iron,Essentials,First aid kit,Air conditioning,Shower gel
## 72 Shampoo,Essentials,Hangers,Long term stays allowed,Private entrance,Hair dryer,Lock on bedroom door,Host greets you,Wifi,TV,Air conditioning,Dedicated workspace,Iron
## 73 Essentials,Kitchen,Long term stays allowed,Washer,Lock on bedroom door,Refrigerator,Wifi,Hot water,TV,Lockbox,Air conditioning
## 74 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Elevator,Dryer,First aid kit,Wifi,Free parking on premises,Pool,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 75 Shampoo,Essentials,Backyard,Kitchen,Long term stays allowed,Washer,Single level home,Private entrance,Hair dryer,Lock on bedroom door,Refrigerator,Host greets you,Wifi,Hot water,Free street parking,Air conditioning,Dedicated workspace,Iron
## 76 Essentials,Extra pillows and blankets,Hangers,Bed linens,Long term stays allowed,Washer,Luggage dropoff allowed,Private entrance,Hair dryer,Lock on bedroom door,Refrigerator,Dryer,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron
## 77 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Refrigerator,Wifi,Hot water,Microwave,TV,Air conditioning,Iron
## 78 Shampoo,Essentials,Hangers,Kitchen,Cooking basics,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Gym,TV,Air conditioning,Dedicated workspace,Pool,Iron
## 79 Shampoo,Essentials,Extra pillows and blankets,Hangers,Pack \\u2019n play/Travel crib,Long term stays allowed,Luggage dropoff allowed,Hair dryer,Host greets you,Refrigerator,Wifi,Hot water,Free street parking,Air conditioning,Dedicated workspace,Iron
## 80 Hangers,Washer,Smart lock,Carbon monoxide alarm,Hair dryer,TV,Free parking on premises,Pool,Dedicated workspace,Long term stays allowed,Elevator,Dryer,Wifi,Smoke alarm,Shampoo,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Fire extinguisher
## 81 Hangers,Washer,Smart lock,Carbon monoxide alarm,Hair dryer,TV,Free parking on premises,Pool,Dedicated workspace,Long term stays allowed,Elevator,Dryer,Wifi,Smoke alarm,Shampoo,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Fire extinguisher
## 82 Hangers,Washer,Smart lock,Carbon monoxide alarm,Hair dryer,TV,Free parking on premises,Pool,Dedicated workspace,Long term stays allowed,Elevator,Dryer,Wifi,Smoke alarm,Shampoo,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Fire extinguisher
## 83 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Host greets you,TV,Paid parking on premises,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Microwave,Baby bath,Wifi,Luggage dropoff allowed,Shampoo,Heating,Hot water,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 84 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Oven,TV,Lockbox,Dedicated workspace,Security cameras on property,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Patio or balcony,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware
## 85 Shampoo,Building staff,Essentials,Security cameras on property,Hangers,Kitchen,Cooking basics,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Elevator,Dryer,Wifi,Hot water,Pool,TV,Paid parking on premises,Air conditioning,Smoke alarm
## 86 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Hair dryer,Dedicated workspace,Free parking on premises,Pool,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Extra pillows and blankets,Heating,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 87 Essentials,Hangers,Heating,Paid parking off premises,Long term stays allowed,Washer,Luggage dropoff allowed,Private entrance,Hair dryer,Lock on bedroom door,Refrigerator,Host greets you,Dryer,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Iron,Fire extinguisher
## 88 Hangers,Cooking basics,Washer,Hair dryer,TV,Dedicated workspace,Cleaning products,Long term stays allowed,Private entrance,Patio or balcony,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Heating,Paid parking off premises,Hot water,Stove,Body soap,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 89 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Private entrance,Hair dryer,Lock on bedroom door,Host greets you,Wifi,Hot water,TV,Air conditioning,Iron
## 90 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Oven,TV,Lockbox,Dedicated workspace,Security cameras on property,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Patio or balcony,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Paid parking off premises,Hot water,Stove,Body soap,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware
## 91 Shampoo,Breakfast,Hangers,Long term stays allowed,Washer,Wifi,TV,Air conditioning,Dedicated workspace
## 92 Hangers,Coffee maker,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,Oven,Paid parking on premises,Dedicated workspace,Long term stays allowed,Outdoor dining area,Elevator,Refrigerator,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Heating,Cable TV,Hot water,Stove,BBQ grill,Iron,Essentials,Kitchen,First aid kit,Shared pool,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 93 Shampoo,Building staff,Essentials,Long term stays allowed,Washer,Private entrance,Hair dryer,Lock on bedroom door,Elevator,Dryer,First aid kit,Wifi,Hot water,TV,Paid parking on premises,Air conditioning,Dedicated workspace,Iron,Fire extinguisher
## 94 Backyard,Hangers,Cooking basics,Washer,Single level home,Hair dryer,Oven,TV,Lockbox,Dedicated workspace,Room-darkening shades,Long term stays allowed,Private entrance,Patio or balcony,Refrigerator,Free street parking,Wifi,Luggage dropoff allowed,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 95 Hangers,Cooking basics,Washer,Hair dryer,TV,Dedicated workspace,Pool,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Gym,Wifi,Shampoo,Hot tub,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 96 Hangers,Washer,Smart lock,Carbon monoxide alarm,Hair dryer,TV,Free parking on premises,Pool,Dedicated workspace,Long term stays allowed,Elevator,Dryer,Wifi,Smoke alarm,Shampoo,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Fire extinguisher
## 97 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Elevator,Dryer,First aid kit,Wifi,Free parking on premises,Pool,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 98 Hangers,Washer,Smart lock,Carbon monoxide alarm,Hair dryer,TV,Free parking on premises,Pool,Dedicated workspace,Long term stays allowed,Elevator,Dryer,Wifi,Smoke alarm,Shampoo,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Fire extinguisher
## 99 Hangers,Washer,Hair dryer,TV,High chair,Free parking on premises,Dedicated workspace,Crib,Pool,Long term stays allowed,Private entrance,Elevator,Dryer,Wifi,Luggage dropoff allowed,Shampoo,Keypad,Heating,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Fire extinguisher
## 100 Hangers,Bed linens,Washer,Hair dryer,Free parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Patio or balcony,Microwave,Wifi,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 101 Shampoo,Essentials,Kitchen,Long term stays allowed,Private entrance,Hair dryer,Lock on bedroom door,First aid kit,Wifi,TV,Air conditioning,Smoke alarm,Iron,Fire extinguisher
## 102 Shampoo,Essentials,Long term stays allowed,Washer,Private entrance,Hair dryer,Lock on bedroom door,Elevator,Host greets you,First aid kit,Wifi,Hot water,TV,Paid parking on premises,Air conditioning,Dedicated workspace,Iron,Fire extinguisher
## 103 Cleaning before checkout,Backyard,Hangers,Bed linens,Cooking basics,Washer,Single level home,Carbon monoxide alarm,Hair dryer,Oven,TV,Paid parking on premises,Children\\u2019s books and toys,Dedicated workspace,Pool,Security cameras on property,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,Microwave,Gym,Wifi,Smoke alarm,Children\\u2019s dinnerware,Luggage dropoff allowed,Shampoo,Dishwasher,Extra pillows and blankets,Keypad,Paid parking off premises,Hot water,Stove,Iron,Bread maker,Essentials,Window guards,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel
## 104 Hangers,Washer,Hair dryer,TV,Dedicated workspace,Security cameras on property,Long term stays allowed,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,Wifi,Luggage dropoff allowed,Keypad,Paid parking off premises,Hot water,Iron,Essentials,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 105 Cleaning before checkout,Hangers,Coffee maker,Cooking basics,Fireplace guards,Single level home,Bathtub,Hair dryer,Oven,Paid parking on premises,Children\\u2019s books and toys,Dedicated workspace,Room-darkening shades,Lake access,Refrigerator,Microwave,Outlet covers,Table corner guards,Wifi,Children\\u2019s dinnerware,Smoke alarm,Luggage dropoff allowed,Shampoo,Dishwasher,Extra pillows and blankets,Baby safety gates,Heating,Cable TV,Hot water,Iron,Building staff,Essentials,Window guards,Kitchen,EV charger,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable
## 106 Hangers,Washer,Smart lock,Carbon monoxide alarm,Hair dryer,TV,Free parking on premises,Pool,Dedicated workspace,Long term stays allowed,Elevator,Dryer,Wifi,Smoke alarm,Shampoo,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Fire extinguisher
## 107 Essentials,Hangers,Bed linens,Kitchen,Cooking basics,Paid parking off premises,Washer,Long term stays allowed,Lock on bedroom door,Refrigerator,Dryer,Wifi,Hot water,Stove,Microwave,TV,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 108 Hangers,Washer,Carbon monoxide alarm,Hair dryer,TV,High chair,Free parking on premises,Pool,Dedicated workspace,Long term stays allowed,Elevator,Dryer,Wifi,Smoke alarm,Shampoo,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Fire extinguisher
## 109 Hangers,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Free parking on premises,Crib,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Refrigerator,Microwave,Free street parking,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,Private patio or balcony,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 110 Bed linens,Washer,Hair dryer,TV,Paid parking on premises,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Wifi,Shampoo,Extra pillows and blankets,Hot water,Iron,Building staff,Essentials,First aid kit,Air conditioning,Fire extinguisher
## 111 Hangers,Bed linens,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Long term stays allowed,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 112 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Oven,TV,Lockbox,Dedicated workspace,Security cameras on property,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Patio or balcony,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware
## 113 Hangers,Bed linens,Washer,Hair dryer,Dedicated workspace,Long term stays allowed,Private entrance,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Heating,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 114 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Oven,TV,Lockbox,Dedicated workspace,Security cameras on property,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Patio or balcony,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware
## 115 Hangers,Bed linens,Cooking basics,Washer,Host greets you,Free parking on premises,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Microwave,Gym,Wifi,Luggage dropoff allowed,Shared patio or balcony,Hot water,Stove,Iron,Essentials,Kitchen,Shared pool,Air conditioning,Dishes and silverware
## 116 Hangers,Washer,Hair dryer,TV,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,Free street parking,Wifi,Hot water,Iron,Essentials,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 117 Hangers,Washer,Hair dryer,TV,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,Wifi,Keypad,Paid parking off premises,Hot water,Iron,Essentials,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 118 Hangers,Bed linens,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Room-darkening shades,Long term stays allowed,Private entrance,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Keypad,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 119 Shampoo,Breakfast,Essentials,Security cameras on property,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Dryer,First aid kit,Wifi,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 120 Hangers,Washer,Carbon monoxide alarm,Hair dryer,TV,High chair,Free parking on premises,Dedicated workspace,Crib,Pool,Long term stays allowed,Elevator,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Keypad,Heating,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Fire extinguisher
## 121 Hangers,Washer,Hair dryer,TV,Free parking on premises,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Building staff,Essentials,Kitchen,Air conditioning,Fire extinguisher
## 122 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Elevator,Dryer,First aid kit,Wifi,Free parking on premises,Pool,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 123 Hangers,Bed linens,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Heating,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 124 Hangers,Washer,Hair dryer,TV,High chair,Free parking on premises,Dedicated workspace,Crib,Pool,Long term stays allowed,Private entrance,Elevator,Dryer,Wifi,Luggage dropoff allowed,Shampoo,Keypad,Heating,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Fire extinguisher
## 125 Hangers,Bed linens,Washer,Hair dryer,Long term stays allowed,Private entrance,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Heating,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 126 Backyard,Hangers,Bed linens,Hair dryer,Host greets you,TV,Free parking on premises,Dedicated workspace,Long term stays allowed,Lock on bedroom door,Refrigerator,Patio or balcony,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Paid parking off premises,Hot water,Iron,Essentials,First aid kit,Air conditioning,Shower gel
## 127 Cleaning before checkout,Hangers,Bed linens,Washer,Hair dryer,Long term stays allowed,Private entrance,Patio or balcony,Refrigerator,Dryer,Microwave,Wifi,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 128 Rice maker,Bidet,Hangers,Bed linens,Hot water kettle,Freezer,Coffee maker,Washer,Cooking basics,Single level home,Bathtub,Hair dryer,Clothing storage,Fire pit,Oven,Ethernet connection,Baking sheet,Dining table,Dedicated workspace,Wine glasses,Sound Bar | Bose bluetooth speaker Bluetooth sound system,Long term stays allowed,Drying rack for clothing,Private entrance,Elevator,Refrigerator,Paid parking lot on premises \\u2013 100 spaces,Microwave,Waterfront,Free street parking,Beachfront,Luggage dropoff allowed,Shampoo,Fast wifi \\u2013 366 Mbps,Free dryer \\u2013 In unit,Extra pillows and blankets,Keypad,Conditioner,Barbecue utensils,Cable TV,Hot water,Mini fridge,Stove,Body soap,Bikes,Beach essentials,BBQ grill,Iron,Essentials,Shared gym nearby,Kitchen,Game console: PS4,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable
## 129 Cleaning before checkout,Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Heating,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 130 Hangers,Washer,Smart lock,Carbon monoxide alarm,Hair dryer,TV,Free parking on premises,Pool,Dedicated workspace,Long term stays allowed,Elevator,Dryer,Wifi,Smoke alarm,Shampoo,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Fire extinguisher
## 131 Hangers,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Free parking on premises,Crib,Long term stays allowed,Private entrance,Elevator,Refrigerator,Microwave,Free street parking,Wifi,Smoke alarm,Shampoo,Shared patio or balcony,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 132 Hangers,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Free parking on premises,Crib,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Refrigerator,Microwave,Free street parking,Wifi,Smoke alarm,Shampoo,Shared patio or balcony,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 133 Shampoo,Breakfast,Essentials,Long term stays allowed,Hair dryer,Lock on bedroom door,Host greets you,Wifi,Hot water,TV,Air conditioning
## 134 Hangers,Bed linens,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,Oven,Lockbox,Dedicated workspace,Free parking on premises,Long term stays allowed,Lock on bedroom door,Refrigerator,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Heating,Cable TV,Hot water,Stove,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 135 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Luggage dropoff allowed,Private entrance,Hair dryer,Lock on bedroom door,Host greets you,Dryer,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Iron
## 136 Hangers,Washer,Hair dryer,TV,High chair,Free parking on premises,Dedicated workspace,Crib,Pool,Long term stays allowed,Private entrance,Elevator,Dryer,Wifi,Luggage dropoff allowed,Shampoo,Keypad,Heating,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Fire extinguisher
## 137 Hangers,Washer,Carbon monoxide alarm,Hair dryer,TV,High chair,Free parking on premises,Dedicated workspace,Crib,Pool,Long term stays allowed,Elevator,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Keypad,Heating,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Fire extinguisher
## 138 Backyard,Hangers,Cooking basics,Single level home,Hair dryer,Oven,TV,Paid parking on premises,Lockbox,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Refrigerator,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,Private patio or balcony,Air conditioning,Dishes and silverware,Fire extinguisher
## 139 Hangers,Bed linens,Washer,Hair dryer,Host greets you,TV,Free parking on premises,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Elevator,Pocket wifi,Dryer,Gym,Wifi,Shampoo,Extra pillows and blankets,Heating,Hot water,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 140 Hangers,Bed linens,Washer,Hair dryer,Dedicated workspace,Long term stays allowed,Private entrance,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Heating,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 141 Hangers,Bed linens,Free dryer \\u2013 In building,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Security cameras on property,Free washer \\u2013 In building,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Shower gel,Fire extinguisher
## 142 Backyard,Hangers,Washer,Hair dryer,Oven,TV,Lockbox,Dedicated workspace,Long term stays allowed,Private entrance,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Paid parking off premises,Hot water,Iron,Essentials,Shared pool,Air conditioning,Dishes and silverware
## 143 Shampoo,Building staff,Essentials,Paid parking off premises,Long term stays allowed,Washer,Hair dryer,Dryer,Wifi,Hot water,TV,Air conditioning,Smoke alarm,Luggage dropoff allowed
## 144 Cleaning before checkout,Hangers,Bed linens,Cooking basics,Washer,Single level home,Carbon monoxide alarm,Hair dryer,Host greets you,Ethernet connection,Dedicated workspace,Free parking on premises,Pool,Long term stays allowed,Private entrance,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Cable TV,Hot water,Stove,BBQ grill,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 145 Shampoo,Essentials,Security cameras on property,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Elevator,Wifi,TV,Air conditioning,Free parking on premises,Iron
## 146 Hangers,Washer,Hair dryer,TV,Free parking on premises,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Heating,Hot water,Iron,Building staff,Essentials,Kitchen,Air conditioning,Fire extinguisher
## 147 Shampoo,Essentials,Hangers,Long term stays allowed,Washer,Private entrance,Hair dryer,Lock on bedroom door,Elevator,Host greets you,First aid kit,Wifi,Hot water,TV,Paid parking on premises,Air conditioning,Dedicated workspace,Iron,Fire extinguisher
## 148 Hangers,Bed linens,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,Dedicated workspace,Room-darkening shades,Long term stays allowed,Private entrance,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Shampoo,Extra pillows and blankets,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 149 Shampoo,Essentials,Backyard,Hangers,Bed linens,Paid parking off premises,Long term stays allowed,Luggage dropoff allowed,Hair dryer,Cable TV,Elevator,Host greets you,Wifi,Hot water,Air conditioning,Dedicated workspace,Smoke alarm,TV with standard cable,Iron
## 150 Hangers,Cooking basics,Washer,Single level home,Hair dryer,TV,Free parking on premises,Pool,Long term stays allowed,Private entrance,Elevator,Patio or balcony,Refrigerator,Microwave,Wifi,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Shower gel
## 151 Shampoo,Breakfast,Essentials,Hangers,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Dryer,First aid kit,Wifi,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 152 Hangers,Bed linens,Cooking basics,Washer,Carbon monoxide alarm,Bathtub,Hair dryer,Oven,Lockbox,High chair,Children\\u2019s books and toys,Dedicated workspace,Crib,Room-darkening shades,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Baby bath,Gym,Wifi,Children\\u2019s dinnerware,Smoke alarm,Shampoo,Extra pillows and blankets,Cable TV,Hot tub,Hot water,Stove,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,First aid kit,Shared pool,Air conditioning,Dishes and silverware,TV with standard cable
## 153 Essentials,Extra pillows and blankets,Hangers,Bed linens,Long term stays allowed,Washer,Smart lock,Hair dryer,Lock on bedroom door,Refrigerator,Wifi,Hot water,TV,Paid parking on premises,Air conditioning,Dedicated workspace,Iron
## 154 Shampoo,Breakfast,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Cable TV,Lock on bedroom door,Dryer,First aid kit,Wifi,Air conditioning,Dedicated workspace,TV with standard cable,Iron,Fire extinguisher
## 155 Essentials,Security cameras on property,Hangers,Long term stays allowed,Washer,Private entrance,Hair dryer,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,First aid kit,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Dishes and silverware,Iron,Fire extinguisher
## 156 Shampoo,Breakfast,Essentials,Security cameras on property,Coffee maker,Long term stays allowed,Washer,Hair dryer,Dryer,Wifi,Microwave,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 157 Hangers,Bed linens,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Security cameras on property,Long term stays allowed,Lock on bedroom door,Refrigerator,Free washer \\u2013 In unit,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Free dryer \\u2013 In unit,Induction stove,Hot water,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 158 Hangers,Washer,Hair dryer,TV,High chair,Free parking on premises,Dedicated workspace,Pool,Crib,Long term stays allowed,Elevator,Dryer,Wifi,Luggage dropoff allowed,Shampoo,Keypad,Heating,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Fire extinguisher
## 159 Backyard,Hangers,Cooking basics,Single level home,Hair dryer,Oven,TV,Paid parking on premises,Lockbox,Dedicated workspace,Room-darkening shades,Long term stays allowed,Private entrance,Refrigerator,Microwave,Wifi,Smoke alarm,Shampoo,Hot water,Body soap,Iron,Essentials,Kitchen,Private patio or balcony,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 160 Shampoo,Essentials,Hangers,Long term stays allowed,Washer,Smart lock,Hair dryer,Lock on bedroom door,Dryer,Wifi,Hot water,Free parking on premises,Free street parking,TV,Air conditioning,Dedicated workspace
## 161 Hangers,Bed linens,Washer,Carbon monoxide alarm,Hair dryer,Dedicated workspace,Long term stays allowed,Elevator,Pocket wifi,Refrigerator,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Heating,Paid parking off premises,Cable TV,Hot water,Iron,Building staff,Essentials,First aid kit,Air conditioning,TV with standard cable,Fire extinguisher
## 162 Hangers,Bed linens,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Long term stays allowed,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Shampoo,Paid parking off premises,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 163 Shampoo,Essentials,Hangers,Kitchen,Cooking basics,Long term stays allowed,Washer,Hair dryer,Patio or balcony,Refrigerator,Elevator,Oven,Wifi,Microwave,Gym,Pool,TV,Air conditioning,Dishes and silverware,Iron
## 164 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Dedicated workspace,Security cameras on property,Long term stays allowed,Patio or balcony,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Cable TV,Hot water,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 165 Hangers,Washer,Hair dryer,TV,Free parking on premises,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Lock on bedroom door,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Building staff,Essentials,Kitchen,First aid kit,Air conditioning,Fire extinguisher
## 166 Hangers,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Host greets you,Dryer,Wifi,Hot water,TV,Air conditioning,Iron
## 167 Hangers,Bed linens,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Long term stays allowed,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Stove,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 168 Rice maker,Cleaning before checkout,Baby monitor,Hangers,Bed linens,Hot water kettle,Freezer,Coffee maker,Washer,Ping pong table,Carbon monoxide alarm,Bathtub,Hair dryer,Cooking basics,55\\ HDTV,Fire pit,Oven,Clothing storage: closet and dresser,Smart lock,Electrolux stainless steel induction stove,High chair,Electrolux refrigerator,Dining table,Crib,Cleaning products,Wine glasses,Security cameras on property,Shared gym in building,Long term stays allowed,Drying rack for clothing,Laundromat nearby,Elevator,Dryer,Microwave,Waterfront,Wifi,Paid parking garage off premises,Smoke alarm,Luggage dropoff allowed,Shampoo,Shared patio or balcony,Shared garden or backyard,Extra pillows and blankets,Portable fans,Shared outdoor lap pool,Conditioner,Hot tub,Hot water,Body soap,Paid parking garage on premises,Dedicated workspace: office chair,desk,and table,BBQ grill,Iron,Shared sauna,Essentials,Window guards,Window AC unit,Kitchen,First aid kit,Dishes and silverware,Shower gel,Portable heater,Fire extinguisher
## 169 Shampoo,Breakfast,Essentials,Hangers,Long term stays allowed,Washer,Luggage dropoff allowed,Smart lock,Hair dryer,Lock on bedroom door,Host greets you,Dryer,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron
## 170 Hangers,Bed linens,Washer,Carbon monoxide alarm,Hair dryer,Oven,TV,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Shampoo,Extra pillows and blankets,Heating,Hot water,Stove,Iron,Essentials,Kitchen,Private patio or balcony,Shared pool,Air conditioning,Dishes and silverware
## 171 Hangers,Coffee maker,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Free parking on premises,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Microwave,Wifi,Beachfront,Smoke alarm,Shampoo,Hot water,Iron,Building staff,Essentials,Kitchen,Shared pool,Air conditioning,Dishes and silverware,Fire extinguisher
## 172 Essentials,Security cameras on property,Keypad,Heating,Kitchen,Paid parking off premises,Washer,Long term stays allowed,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Stove,TV,Air conditioning,Dedicated workspace,Dishes and silverware,Iron
## 173 Shampoo,Essentials,Hangers,Long term stays allowed,Carbon monoxide alarm,Hair dryer,Elevator,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Fire extinguisher
## 174 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,TV,Air conditioning,Dedicated workspace,Iron,Fire extinguisher
## 175 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Microwave,Gym,TV,Pool,Air conditioning,Dishes and silverware,Iron
## 176 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Microwave,Gym,TV,Shared pool,Air conditioning,Dishes and silverware,Iron
## 177 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Microwave,Gym,TV,Pool,Air conditioning,Dishes and silverware,Iron
## 178 Hangers,Washer,Hair dryer,TV,Free parking on premises,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Building staff,Essentials,Kitchen,Air conditioning,Fire extinguisher
## 179 Essentials,Hangers,Long term stays allowed,Washer,Private entrance,Hair dryer,Lock on bedroom door,Refrigerator,Dryer,First aid kit,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Iron,Fire extinguisher
## 180 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Hair dryer,Paid parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Refrigerator,Dryer,Microwave,Wifi,Shampoo,Keypad,Heating,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 181 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Microwave,Gym,TV,Pool,Air conditioning,Dishes and silverware,Iron
## 182 Shampoo,Breakfast,Essentials,Hangers,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Dishes and silverware,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron
## 183 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Oven,Lockbox,Dedicated workspace,Long term stays allowed,Lock on bedroom door,Refrigerator,Wifi,Shampoo,Shared patio or balcony,Extra pillows and blankets,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 184 Essentials,Hangers,Paid parking off premises,Long term stays allowed,Washer,Private entrance,Hair dryer,Lock on bedroom door,Refrigerator,Host greets you,Dryer,First aid kit,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 185 Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Luggage dropoff allowed,Dryer,Wifi,Hot water,Air conditioning,Iron,Fire extinguisher
## 186 Hangers,Bed linens,Washer,Hair dryer,TV,Dedicated workspace,Security cameras on property,Long term stays allowed,Lock on bedroom door,Refrigerator,Dryer,Wifi,Luggage dropoff allowed,Keypad,Paid parking off premises,Hot water,Iron,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 187 Shampoo,TV,Bed linens,Kitchen,Long term stays allowed,Hair dryer,Lock on bedroom door,Wifi,Hot water,Body soap,Air conditioning,Smoke alarm
## 188 Shampoo,Essentials,Hangers,Keypad,Long term stays allowed,Washer,Luggage dropoff allowed,Hair dryer,Lock on bedroom door,Host greets you,Dryer,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Iron
## 189 Hangers,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Heating,Cable TV,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 190 Hangers,Washer,Hair dryer,Host greets you,Free parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Patio or balcony,Microwave,Free street parking,Wifi,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 191 Hangers,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Hot water,Microwave,Gym,TV,Pool,Air conditioning,Dishes and silverware,Iron
## 192 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Wifi,Free street parking,TV,Air conditioning,Dedicated workspace,Pool,Iron
## 193 Shampoo,Breakfast,Essentials,Hangers,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Dryer,Wifi,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 194 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,TV,Air conditioning,Dedicated workspace,Iron,Fire extinguisher
## 195 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Private entrance,Hair dryer,Lock on bedroom door,Refrigerator,Wifi,TV,Air conditioning,Dedicated workspace,Iron
## 196 Shampoo,Essentials,Hangers,Bed linens,Kitchen,Long term stays allowed,Washer,Hair dryer,Dryer,Wifi,Hot water,TV,Air conditioning,Shower gel,Iron
## 197 Shampoo,Breakfast,Essentials,Hangers,Keypad,Long term stays allowed,Washer,Luggage dropoff allowed,Hair dryer,Lock on bedroom door,Dryer,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron
## 198 Bed linens,Washer,Ethernet connection,Paid parking on premises,Lockbox,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Microwave,Wifi,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 199 Hangers,Paid parking off premises,Long term stays allowed,Washer,Luggage dropoff allowed,Private entrance,Hair dryer,Lock on bedroom door,Refrigerator,Host greets you,Dryer,First aid kit,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Iron,Fire extinguisher
## 200 Essentials,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Dryer,Wifi,TV,Air conditioning,Smoke alarm,Iron,Fire extinguisher
## 201 Hangers,Bed linens,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Cable TV,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 202 Hangers,Bed linens,Washer,Hair dryer,Host greets you,TV,Dedicated workspace,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Wifi,Luggage dropoff allowed,Paid parking off premises,Hot water,Iron,Essentials,First aid kit,Air conditioning,Shower gel,Fire extinguisher
## 203 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Host greets you,Oven,Paid parking on premises,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Patio or balcony,Microwave,Gym,Wifi,Shampoo,Extra pillows and blankets,Heating,Cable TV,Hot tub,Hot water,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 204 Shampoo,Breakfast,Essentials,Hangers,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Dryer,Wifi,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 205 Hangers,Washer,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Dishwasher,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 206 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Private entrance,Hair dryer,Cable TV,Wifi,Hot water,Gym,Paid parking on premises,Air conditioning,Dedicated workspace,Pool,TV with standard cable,Iron
## 207 Hangers,Bed linens,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Long term stays allowed,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 208 Hangers,Bed linens,Washer,Smart lock,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Lock on bedroom door,Refrigerator,Patio or balcony,Microwave,Free street parking,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 209 Backyard,Hangers,Cooking basics,Hair dryer,Oven,TV,Pool,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Microwave,Gym,Wifi,Hot water,Stove,BBQ grill,Essentials,First aid kit,Air conditioning,Dishes and silverware
## 210 Essentials,Security cameras on property,Keypad,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Stove,TV,Air conditioning,Dishes and silverware,Iron
## 211 Hangers,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Microwave,TV,Air conditioning,Dishes and silverware,Iron
## 212 Hangers,Bed linens,Carbon monoxide alarm,Hair dryer,Dedicated workspace,Crib,Long term stays allowed,Elevator,Refrigerator,Wifi,Smoke alarm,Shampoo,Heating,Paid parking off premises,Cable TV,Hot water,Iron,Building staff,Essentials,First aid kit,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 213 Hangers,Washer,Hair dryer,TV,Free parking on premises,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Building staff,Essentials,Kitchen,Air conditioning,Fire extinguisher
## 214 Essentials,Security cameras on property,Hangers,Long term stays allowed,Washer,Private entrance,Hair dryer,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Dishes and silverware,Iron,Fire extinguisher
## 215 Hangers,Bed linens,Washer,Hair dryer,Host greets you,TV,Children\\u2019s books and toys,Long term stays allowed,Elevator,Lock on bedroom door,Dryer,Free street parking,Beachfront,Wifi,Shampoo,Iron,Essentials,Kitchen,First aid kit,Shared pool,Air conditioning,Dishes and silverware
## 216 Cleaning before checkout,Hangers,Bed linens,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Heating,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 217 Hangers,Cooking basics,Washer,Hair dryer,Host greets you,TV,Pool,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Shampoo,Hot water,Beach essentials,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 218 Hangers,Bed linens,Cooking basics,Hair dryer,Lockbox,Dedicated workspace,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Shampoo,Heating,Hot water,Stove,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 219 Hangers,Bed linens,Washer,Hair dryer,Dedicated workspace,Room-darkening shades,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Microwave,Free street parking,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Keypad,Hot water,Iron,Shower gel,Essentials,Air conditioning,Dishes and silverware
## 220 Cleaning before checkout,Hangers,Bed linens,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Heating,Cable TV,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 221 Hangers,Bed linens,Washer,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Crib,Long term stays allowed,Elevator,Refrigerator,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Paid parking off premises,Hot water,Iron,Building staff,Essentials,Air conditioning,Fire extinguisher
## 222 Shampoo,Essentials,Security cameras on property,Hangers,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Elevator,Wifi,Hot water,TV,Air conditioning
## 223 Hangers,Bed linens,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Induction stove,Hot water,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 224 Hangers,Bed linens,Cooking basics,Washer,Single level home,Carbon monoxide alarm,Hair dryer,High chair,Dedicated workspace,Free parking on premises,Crib,Room-darkening shades,Pool,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Cable TV,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 225 Shampoo,Essentials,Hangers,Bed linens,Long term stays allowed,Carbon monoxide alarm,Hair dryer,Elevator,First aid kit,Wifi,Hot water,Free parking on premises,Hot tub,Gym,Pool,Air conditioning,Dedicated workspace,Smoke alarm,Lockbox
## 226 Shampoo,Security cameras on property,Hangers,Long term stays allowed,Luggage dropoff allowed,Hair dryer,Host greets you,Wifi,Hot water,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 227 Hangers,Bed linens,Coffee maker,Washer,Hair dryer,TV,Free parking on premises,Dedicated workspace,Room-darkening shades,Pool,Long term stays allowed,Elevator,Lock on bedroom door,Patio or balcony,Dryer,Microwave,Gym,Wifi,Extra pillows and blankets,Heating,Hot water,Iron,Essentials,Air conditioning,Dishes and silverware
## 228 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Hair dryer,Host greets you,Oven,TV,Outdoor furniture,Dedicated workspace,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Gym,Wifi,Shampoo,Shared patio or balcony,Heating,Hot water,Stove,Iron,Essentials,Kitchen,Shared pool,Air conditioning,Dishes and silverware
## 229 Shampoo,Essentials,Long term stays allowed,Carbon monoxide alarm,Hair dryer,Elevator,Wifi,Hot water,TV,Air conditioning,Smoke alarm,Fire extinguisher
## 230 Backyard,Hangers,Cooking basics,Washer,Hair dryer,TV,Free parking on premises,Pool,Long term stays allowed,Private entrance,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Hot water,BBQ grill,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 231 Hangers,Washer,Hair dryer,TV,Free parking on premises,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Heating,Hot water,Iron,Building staff,Essentials,Kitchen,Air conditioning,Fire extinguisher
## 232 Shampoo,Breakfast,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Cable TV,Lock on bedroom door,Dryer,First aid kit,Wifi,Air conditioning,Dedicated workspace,TV with standard cable,Iron,Fire extinguisher
## 233 Essentials,Hangers,Paid parking off premises,Long term stays allowed,Washer,Private entrance,Hair dryer,Lock on bedroom door,Refrigerator,Host greets you,Dryer,First aid kit,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Iron,Fire extinguisher
## 234 Hangers,Bed linens,Cooking basics,Washer,Single level home,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Free parking on premises,Crib,Room-darkening shades,Pool,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 235 Hangers,Bed linens,Cooking basics,Washer,Single level home,Carbon monoxide alarm,Hair dryer,High chair,Dedicated workspace,Free parking on premises,Crib,Room-darkening shades,Pool,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Cable TV,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 236 Hangers,Bed linens,Washer,Smart lock,Carbon monoxide alarm,Hair dryer,Oven,TV,Dedicated workspace,Long term stays allowed,Lock on bedroom door,Refrigerator,Patio or balcony,Microwave,Free street parking,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 237 Hangers,Bed linens,Washer,Hair dryer,TV,Pool,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Gym,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Hot tub,Hot water,Iron,Essentials,Air conditioning,Dishes and silverware
## 238 Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Gym,TV,Air conditioning,Pool,Iron
## 239 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Host greets you,Oven,Dedicated workspace,Pool,Long term stays allowed,Elevator,Refrigerator,Microwave,Beachfront,Wifi,Luggage dropoff allowed,Shampoo,Hot water,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware
## 240 Hangers,Cooking basics,Washer,Single level home,Hair dryer,Oven,TV,Free parking on premises,Pool,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Keypad,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 241 Hangers,Bed linens,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Heating,Cable TV,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 242 Shampoo,Essentials,Long term stays allowed,Carbon monoxide alarm,Hair dryer,Host greets you,Hot water,Pool,TV,Paid parking on premises,Air conditioning,Smoke alarm,Fire extinguisher
## 243 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Hair dryer,Wifi,Air conditioning,Free parking on premises,Iron
## 244 Backyard,Hangers,Coffee maker,Cooking basics,Washer,Single level home,Carbon monoxide alarm,Hair dryer,Host greets you,Oven,TV,Dedicated workspace,Free parking on premises,Pool,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Dishwasher,Hot tub,Hot water,Stove,BBQ grill,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 245 Essentials,Hangers,Keypad,Kitchen,Long term stays allowed,Washer,Elevator,Refrigerator,Dryer,Wifi,Dishes and silverware,Stove,TV,Air conditioning,Dedicated workspace,Smoke alarm,Fire extinguisher
## 246 Hangers,Washer,Hair dryer,TV,Free parking on premises,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Building staff,Essentials,Kitchen,Air conditioning,Fire extinguisher
## 247 Hangers,Bed linens,Washer,Single level home,Hair dryer,Oven,TV,Dedicated workspace,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware
## 248 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Host greets you,TV,Dedicated workspace,Long term stays allowed,Lock on bedroom door,Microwave,Wifi,Shampoo,Conditioner,Hot water,Body soap,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 249 Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Cable TV,Wifi,Lockbox,Air conditioning,TV with standard cable,Iron
## 250 Hangers,Bed linens,Cooking basics,Washer,Smart lock,Hair dryer,Clothing storage,Free parking on premises,Dedicated workspace,Room-darkening shades,Long term stays allowed,Drying rack for clothing,Private entrance,Lock on bedroom door,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Hot water,Iron,Essentials,Kitchen,EV charger,Air conditioning,Dishes and silverware
## 251 Hangers,Bed linens,Washer,Hair dryer,High chair,Dedicated workspace,Free parking on premises,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 252 Cleaning before checkout,Backyard,Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Hair dryer,Host greets you,Oven,TV,Dedicated workspace,Room-darkening shades,Long term stays allowed,Lock on bedroom door,Refrigerator,Patio or balcony,Microwave,Baby bath,Free street parking,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Heating,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware
## 253 Hangers,Washer,Hair dryer,TV,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,Wifi,Keypad,Hot water,Iron,Essentials,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 254 Hangers,Cooking basics,Washer,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Dryer,Wifi,Smoke alarm,Shampoo,Dishwasher,Keypad,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 255 Shampoo,Breakfast,Essentials,Building staff,Hangers,Long term stays allowed,Luggage dropoff allowed,Private entrance,Hair dryer,Lock on bedroom door,First aid kit,Wifi,Hot water,Free parking on premises,TV,Air conditioning,Dedicated workspace,Pool,Iron,Fire extinguisher
## 256 Shampoo,Essentials,Security cameras on property,Hangers,Long term stays allowed,Washer,Private entrance,Hair dryer,Lock on bedroom door,Refrigerator,Elevator,Host greets you,First aid kit,Wifi,TV,Air conditioning,Dedicated workspace,Iron,Fire extinguisher
## 257 Security cameras on property,Keypad,Kitchen,Cooking basics,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Stove,TV,Air conditioning,Dishes and silverware
## 258 Hangers,Cooking basics,Washer,Hair dryer,Oven,Outdoor furniture,Lockbox,Free parking on premises,Dedicated workspace,Long term stays allowed,Outdoor dining area,Lock on bedroom door,Refrigerator,Dryer,Free street parking,Wifi,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 259 Hangers,Bed linens,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,TV,Paid parking on premises,Dedicated workspace,Pool,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Building staff,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 260 Hangers,Bed linens,Hair dryer,Host greets you,Dedicated workspace,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,Microwave,Free street parking,Wifi,Shampoo,Heating,Hot water,Stove,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 261 Shampoo,Essentials,Smoke alarm,Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Dryer,First aid kit,Wifi,Hot water,TV,Air conditioning,Shower gel,Iron,Fire extinguisher
## 262 Keypad,Heating,Kitchen,Cooking basics,Washer,Long term stays allowed,Private entrance,Hair dryer,Refrigerator,Dryer,Wifi,Hot water,Stove,Dishes and silverware,TV,Air conditioning,Smoke alarm
## 263 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Hair dryer,Fire pit,Oven,TV,Outdoor furniture,Children\\u2019s books and toys,Long term stays allowed,Outdoor dining area,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Shampoo,Extra pillows and blankets,Keypad,Paid parking off premises,Hot water,Stove,BBQ grill,Iron,Essentials,Kitchen,Private fenced garden or backyard,Air conditioning
## 264 Backyard,Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,Oven,High chair,Free parking on premises,Room-darkening shades,Long term stays allowed,Lock on bedroom door,Refrigerator,Patio or balcony,Microwave,Gym,Free street parking,Wifi,Smoke alarm,Shampoo,Breakfast,Extra pillows and blankets,Cable TV,Hot water,Iron,Essentials,Window guards,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 265 Hangers,Washer,Hair dryer,TV,Free parking on premises,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Heating,Hot water,Iron,Building staff,Essentials,Kitchen,Air conditioning,Fire extinguisher
## 266 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Stove,Microwave,TV,Gym,Air conditioning,Pool,Dishes and silverware,Iron
## 267 Breakfast,Essentials,Long term stays allowed,Washer,Dryer,Wifi,Air conditioning,Smoke alarm,Fire extinguisher
## 268 Shampoo,Breakfast,Building staff,Hangers,Long term stays allowed,Washer,Hair dryer,Dryer,First aid kit,Wifi,Hot water,Air conditioning,Smoke alarm,Iron,Fire extinguisher
## 269 Shampoo,Essentials,Hangers,Heating,Long term stays allowed,Smart lock,Hair dryer,Lock on bedroom door,Pocket wifi,Refrigerator,Wifi,Hot water,Free street parking,TV,Air conditioning,Luggage dropoff allowed
## 270 Hangers,Bed linens,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Security cameras on property,Long term stays allowed,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Essentials,Kitchen,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 271 Toaster,Bidet,Hangers,Bed linens,Hot water kettle,Cooking basics,Freezer,Washer,Single level home,Hair dryer,Shared fenced garden or backyard,Host greets you,Oven,Dining table,Dedicated workspace,Free parking on premises,Cleaning products,Long term stays allowed,Drying rack for clothing,Laundromat nearby,Elevator,Refrigerator,Microwave,Gym,Wifi,Paid parking lot on premises \\u2013 1 space,Shampoo,Free dryer \\u2013 In unit,Extra pillows and blankets,Cable TV,Hot water,Stove,Body soap,Iron,Essentials,Clothing storage: closet,Kitchen,Dishes and silverware,Shared pool,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 272 Hangers,Bed linens,Hot water kettle,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,Oven,Ethernet connection,Paid parking on premises,Dedicated workspace,Pool,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Dishwasher,Extra pillows and blankets,Heating,Cable TV,Hot tub,Hot water,Stove,Iron,Essentials,Kitchen,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable
## 273 Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Microwave,Gym,TV,Air conditioning,Pool,Iron
## 274 Hangers,Bed linens,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Cable TV,Hot water,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 275 Shampoo,Essentials,Heating,Kitchen,Long term stays allowed,Washer,Private entrance,Hair dryer,Cable TV,Lock on bedroom door,Host greets you,First aid kit,Wifi,Hot water,Free street parking,Air conditioning,Free parking on premises,TV with standard cable
## 276 Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Cable TV,Refrigerator,Elevator,Dryer,Host greets you,Wifi,Hot water,Microwave,Air conditioning,Dishes and silverware,TV with standard cable,Iron
## 277 Hangers,Cooking basics,Washer,Smart lock,Hair dryer,Shared fenced garden or backyard,Oven,Outdoor furniture,TV,Dedicated workspace,Free parking on premises,Long term stays allowed,Outdoor dining area,Refrigerator,Dryer,Microwave,Gym,Wifi,Shampoo,Heating,Hot water,Stove,BBQ grill,Iron,Essentials,Kitchen,Private patio or balcony,Shared pool,Air conditioning,Dishes and silverware
## 278 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Stove,Microwave,TV,Gym,Air conditioning,Pool,Dishes and silverware,Iron
## 279 Hangers,Bed linens,Washer,Hair dryer,High chair,Free parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Dryer,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Cable TV,Hot water,Iron,Essentials,Kitchen,Air conditioning,TV with standard cable,Fire extinguisher
## 280 Hangers,Bed linens,Cooking basics,Washer,Single level home,Carbon monoxide alarm,Hair dryer,High chair,Dedicated workspace,Free parking on premises,Crib,Room-darkening shades,Pool,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Cable TV,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 281 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Heating,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 282 Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,Oven,Ethernet connection,Lockbox,Dedicated workspace,Room-darkening shades,Long term stays allowed,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 283 Essentials,Security cameras on property,Hangers,Keypad,Kitchen,Cooking basics,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Stove,TV,Air conditioning,Dedicated workspace,Dishes and silverware,Iron
## 284 Hangers,Coffee maker,Cooking basics,Washer,Smart lock,Hair dryer,Oven,TV,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Dishwasher,Hot water,Stove,Beach essentials,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 285 Hangers,Keypad,Heating,Kitchen,Cooking basics,Washer,Long term stays allowed,Private entrance,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,TV,Air conditioning,Dishes and silverware
## 286 Hangers,Bed linens,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Heating,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 287 Hangers,Bed linens,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Heating,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 288 Toaster,Indoor fireplace,Safe,Rice maker,Hangers,Bed linens,Hot water kettle,Washer,Carbon monoxide alarm,Hair dryer,Bathtub,Paid parking on premises,Dining table,Pool,Room-darkening shades,Cleaning products,Wine glasses,Long term stays allowed,Private entrance,Elevator,Patio or balcony,Refrigerator,Microwave,Wifi,Smoke alarm,Shampoo,Conditioner,Cable TV,Hot tub,Hot water,Stove,Clothing storage: wardrobe,Iron,Bread maker,Essentials,Kitchen,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 289 Shampoo,Essentials,Kitchen,Long term stays allowed,Private entrance,Hair dryer,Lock on bedroom door,First aid kit,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Fire extinguisher
## 290 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Elevator,Dryer,First aid kit,Wifi,TV,Air conditioning,Smoke alarm,Fire extinguisher
## 291 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Dedicated workspace,Security cameras on property,Long term stays allowed,Patio or balcony,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Cable TV,Hot water,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 292 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Microwave,Gym,TV,Pool,Air conditioning,Dishes and silverware,Iron
## 293 Bidet,Hangers,Bed linens,Hot water kettle,Freezer,Washer,Hair dryer,TV,Dedicated workspace,Room-darkening shades,Paid parking lot on premises,Long term stays allowed,Drying rack for clothing,Elevator,Lock on bedroom door,Children\\u2019s books and toys for ages 2-5 years old and 5-10 years old,Wifi,Luggage dropoff allowed,Shampoo,Breakfast,Extra pillows and blankets,Hot water,Mini fridge,Stove,Clothing storage: wardrobe,Body soap,Bikes,Iron,Building staff,Essentials,Kitchen,Dishes and silverware,Air conditioning,Shower gel
## 294 Backyard,Hangers,Cooking basics,Washer,Hair dryer,Free parking on premises,Dedicated workspace,Long term stays allowed,Patio or balcony,Refrigerator,Microwave,Free street parking,Wifi,Shampoo,Cable TV,Hot water,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 295 Hangers,Bed linens,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Long term stays allowed,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 296 Hangers,Washer,Hair dryer,High chair,Free parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Dryer,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Cable TV,Hot water,Iron,Essentials,Kitchen,Air conditioning,TV with standard cable,Fire extinguisher
## 297 Cleaning before checkout,Backyard,Hangers,Bed linens,Cooking basics,Washer,Single level home,Bathtub,Hair dryer,Ethernet connection,Paid parking on premises,Dedicated workspace,Crib,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Extra pillows and blankets,Heating,Cable TV,Hot tub,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 298 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Microwave,Gym,TV,Pool,Air conditioning,Dishes and silverware,Iron
## 299 Shampoo,Breakfast,Essentials,Hangers,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Lock on bedroom door,Dryer,Wifi,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 300 Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Lock on bedroom door,Refrigerator,Wifi,Hot water,TV,Lockbox,Air conditioning,Fire extinguisher
## 301 Keypad,Bed linens,Kitchen,Cooking basics,Long term stays allowed,Washer,Luggage dropoff allowed,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,TV,Air conditioning,Dedicated workspace,Dishes and silverware,Iron,Fire extinguisher
## 302 Toaster,Cleaning before checkout,Hangers,Bed linens,Hot water kettle,Coffee maker,Cooking basics,Washer,Freezer,Single level home,Hair dryer,Smart lock,Oven,Dining table,Dedicated workspace,Wine glasses,Security cameras on property,Long term stays allowed,Drying rack for clothing,Private entrance,Patio or balcony,Refrigerator,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Ceiling fan,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 303 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Oven,Long term stays allowed,Lock on bedroom door,Refrigerator,Microwave,Free street parking,Wifi,Extra pillows and blankets,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 304 Essentials,Hangers,Paid street parking off premises,Kitchen,Long term stays allowed,Washer,Hair dryer,Patio or balcony,Refrigerator,Elevator,Dryer,Wifi,Hot water,Microwave,Gym,TV,Air conditioning,Pool,Iron
## 305 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Microwave,Gym,TV,Pool,Air conditioning,Dishes and silverware,Iron
## 306 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Stove,Microwave,TV,Gym,Air conditioning,Pool,Dishes and silverware,Iron
## 307 Shampoo,Breakfast,Essentials,Hangers,Long term stays allowed,Washer,Hair dryer,Cable TV,Dryer,First aid kit,Wifi,Air conditioning,Dedicated workspace,Smoke alarm,TV with standard cable,Iron,Fire extinguisher
## 308 Shampoo,Building staff,Essentials,Hangers,Heating,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Elevator,Wifi,Air conditioning,Iron
## 309 Shampoo,Essentials,Hangers,Bed linens,Long term stays allowed,Washer,Single level home,Hair dryer,Lock on bedroom door,Elevator,Host greets you,Wifi,Hot water,Microwave,Free parking on premises,Gym,Shared pool,Air conditioning,Dedicated workspace,Iron
## 310 Shampoo,Breakfast,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Cable TV,Lock on bedroom door,Dryer,First aid kit,Wifi,Free parking on premises,Air conditioning,Dedicated workspace,TV with standard cable,Iron,Fire extinguisher
## 311 Shampoo,Essentials,Long term stays allowed,Host greets you,Wifi,Hot water,Air conditioning,Free parking on premises,Shower gel,Luggage dropoff allowed
## 312 Hangers,Bed linens,Coffee maker,Washer,Hair dryer,TV,Dedicated workspace,Pool,Long term stays allowed,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Hot water,Iron,Building staff,Essentials,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 313 Hangers,Washer,Single level home,Hair dryer,TV,Free parking on premises,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Building staff,Essentials,Kitchen,Air conditioning,Fire extinguisher
## 314 Hangers,Bed linens,Record player,Hot water kettle,32\\ HDTV,Host greets you,Ethernet connection,Free parking on premises,Dedicated workspace,Shared outdoor olympic-sized pool,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Free washer \\u2013 In unit,Gym,Wifi,Shampoo,Ceiling fan,Extra pillows and blankets,Hot water,Iron,Essentials,Air conditioning,Dishes and silverware
## 315 Toaster,Hangers,Bed linens,Hot water kettle,Free dryer \\u2013 In building,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Wine glasses,Security cameras on property,Free washer \\u2013 In building,Long term stays allowed,Lock on bedroom door,Refrigerator,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Induction stove,Hot water,Iron,Essentials,Kitchen,Air conditioning,Shower gel,Fire extinguisher
## 316 Shampoo,Essentials,Dining table,Hangers,Bed linens,Long term stays allowed,Washer,Single level home,Elevator,Lock on bedroom door,Refrigerator,Dryer,Wifi,Hot water,Microwave,Pool,Clothing storage: wardrobe,Air conditioning,Dedicated workspace,Shower gel
## 317 Essentials,Security cameras on property,Hangers,Keypad,Kitchen,Cooking basics,Long term stays allowed,Washer,Bathtub,Hair dryer,Refrigerator,Elevator,Dryer,Wifi,Hot water,Stove,TV,Air conditioning,Dishes and silverware
## 318 Bidet,Hangers,Bed linens,Hot water kettle,Washer,Clothing storage,Host greets you,Dedicated workspace,Cleaning products,Long term stays allowed,Laundromat nearby,Elevator,Lock on bedroom door,Patio or balcony,Dryer,Shared outdoor olympic-sized lap pool,Wifi,Paid parking garage off premises,Luggage dropoff allowed,Shampoo,Portable fans,Heating,Hot water,Body soap,Iron,Essentials,Window guards,Shower gel,Fire extinguisher
## 319 Essentials,Dishwasher,Hangers,Keypad,Kitchen,Cooking basics,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Stove,TV,Air conditioning,Dishes and silverware,Iron
## 320 Hangers,Bed linens,Hot water kettle,Cooking basics,Washer,Hair dryer,Oven,Shared hot tub,Ethernet connection,Paid parking on premises,Dedicated workspace,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Shared patio or balcony,Heating,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Dishes and silverware,Shared pool,Air conditioning,Shower gel,TV with standard cable
## 321 Essentials,Hangers,Paid street parking off premises,Kitchen,Long term stays allowed,Washer,Hair dryer,Patio or balcony,Refrigerator,Elevator,Dryer,Wifi,Microwave,Gym,TV,Air conditioning,Pool,Iron
## 322 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Single level home,Hair dryer,Paid parking on premises,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Elevator,Pocket wifi,Refrigerator,Dryer,Microwave,Baby bath,Gym,Wifi,Children\\u2019s dinnerware,Luggage dropoff allowed,Shampoo,Cable TV,Hot water,Stove,Iron,Building staff,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 323 Hangers,Bed linens,Cooking basics,Washer,Single level home,Free parking on premises,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Gym,Wifi,Smoke alarm,Heating,Cable TV,Hot water,Stove,BBQ grill,Iron,Kitchen,Private patio or balcony,Shared pool,Air conditioning,TV with standard cable,Fire extinguisher
## 324 Hangers,Bed linens,Coffee maker,Washer,Hair dryer,Host greets you,Oven,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Microwave,Wifi,Shampoo,Heating,Hot water,Stove,Iron,Essentials,Air conditioning,Dishes and silverware
## 325 Hangers,Cooking basics,Washer,Hair dryer,TV,Lockbox,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Refrigerator,Dryer,Microwave,Wifi,Shampoo,Breakfast,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 326 Hangers,Washer,Hair dryer,TV,Free parking on premises,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Building staff,Essentials,Kitchen,Air conditioning,Fire extinguisher
## 327 Shampoo,Breakfast,Essentials,Building staff,Hangers,Long term stays allowed,Hair dryer,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron
## 328 Hangers,Bed linens,Hot water kettle,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,Oven,Ethernet connection,Paid parking on premises,Dedicated workspace,Pool,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Heating,Cable TV,Hot tub,Hot water,Stove,Iron,Essentials,Kitchen,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable
## 329 Hangers,Hair dryer,Host greets you,Oven,TV,Paid parking on premises,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Microwave,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 330 Shampoo,Washer \\u2013\\u00a0In building,Essentials,Heating,Long term stays allowed,Private entrance,Hair dryer,Dryer,First aid kit,Wifi,Pool,Gym,TV,Air conditioning,Free parking on premises,Smoke alarm,Fire extinguisher
## 331 Coffee maker,Cooking basics,Washer,Hair dryer,Fire pit,Shared hot tub,Outdoor furniture,TV,Long term stays allowed,Outdoor dining area,Lock on bedroom door,Free street parking,Wifi,Smoke alarm,Shampoo,Keypad,Heating,Hot water,BBQ grill,Essentials,Kitchen,Air conditioning
## 332 Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Microwave,Gym,TV,Air conditioning,Pool,Iron
## 333 Hangers,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Free parking on premises,Pool,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 334 Hangers,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Crib,Long term stays allowed,Lock on bedroom door,Free street parking,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Essentials,Private fenced garden or backyard,First aid kit,Air conditioning,Fire extinguisher
## 335 Shampoo,Building staff,Essentials,Long term stays allowed,Hair dryer,Lock on bedroom door,Elevator,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Smoke alarm,Luggage dropoff allowed
## 336 Beachfront,Free parking on premises,Free street parking
## 337 Beachfront,Free parking on premises,Free street parking
## 338 Shampoo,Breakfast,Essentials,Building staff,Kitchen,Long term stays allowed,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm
## 339 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Host greets you,Dedicated workspace,Pool,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Shampoo,Hot water,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 340 Backyard,Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Oven,TV,Dedicated workspace,Free parking on premises,Pool,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,Microwave,Gym,Wifi,Shampoo,Hot tub,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 341 Shampoo,Essentials,Kitchen,Long term stays allowed,Private entrance,Hair dryer,Lock on bedroom door,First aid kit,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Fire extinguisher
## 342 Hangers,Washer,Hair dryer,TV,Free parking on premises,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Heating,Hot water,Iron,Building staff,Essentials,Kitchen,Air conditioning,Fire extinguisher
## 343 Hangers,Bed linens,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Microwave,Gym,TV,Pool,Air conditioning,Dishes and silverware,Iron
## 344 Hangers,Bed linens,Cooking basics,Washer,Single level home,Smart lock,Hair dryer,Oven,TV,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Elevator,Patio or balcony,Refrigerator,Microwave,Gym,Wifi,Children\\u2019s dinnerware,Shampoo,Extra pillows and blankets,Paid parking off premises,Hot water,Stove,Iron,Essentials,Window guards,Kitchen,Air conditioning,Dishes and silverware
## 345 Shampoo,Breakfast,Essentials,Building staff,Hangers,Bed linens,Long term stays allowed,Washer,Luggage dropoff allowed,Hair dryer,Dryer,First aid kit,Wifi,Hot water,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 346 Essentials,Keypad,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Dishes and silverware,Iron
## 347 Shampoo,Essentials,Long term stays allowed,Hair dryer,Lock on bedroom door,Wifi,Hot water,Free parking on premises,TV,Air conditioning,Dedicated workspace
## 348 Hangers,Bed linens,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,TV,Paid parking on premises,Dedicated workspace,Pool,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Dryer,Wifi,Smoke alarm,Shampoo,Hot water,Building staff,Essentials,Kitchen,Air conditioning
## 349 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Keypad,Heating,Hot water,Stove,Iron,Kitchen,Air conditioning,Dishes and silverware
## 350 Hangers,Hair dryer,Host greets you,Oven,TV,Paid parking on premises,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Microwave,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 351 Hangers,Hair dryer,Host greets you,Oven,TV,Paid parking on premises,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Microwave,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 352 Hangers,Bed linens,Hair dryer,Host greets you,Dedicated workspace,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,Microwave,Free street parking,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Stove,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 353 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Oven,Dedicated workspace,Long term stays allowed,Lock on bedroom door,Refrigerator,Microwave,Free street parking,Wifi,Smoke alarm,Shampoo,Extra pillows and blankets,Hot water,Stove,Iron,Essentials,Kitchen,Private patio or balcony,Air conditioning,Dishes and silverware
## 354 Hangers,Washer,Hair dryer,TV,Free parking on premises,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Building staff,Essentials,Kitchen,Air conditioning,Fire extinguisher
## 355 Essentials,Safe,Hangers,Kitchen,Hot water kettle,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Microwave,Gym,TV,Air conditioning,Pool,Iron
## 356 Hangers,Washer,Hair dryer,TV,Free parking on premises,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Building staff,Essentials,Kitchen,Air conditioning,Fire extinguisher
## 357 Backyard,Hangers,Bed linens,Washer,Single level home,Hair dryer,Paid parking on premises,Lockbox,Dedicated workspace,Pool,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Refrigerator,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Paid parking off premises,Hot water,Iron,Essentials,First aid kit,Air conditioning,Fire extinguisher
## 358 Shampoo,Essentials,Backyard,Hangers,Coffee maker,Cooking basics,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Lock on bedroom door,Host greets you,Wifi,Free parking on premises,Air conditioning,Dedicated workspace,Smoke alarm,Iron
## 359 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Carbon monoxide alarm,Bathtub,Hair dryer,Host greets you,TV,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Extra pillows and blankets,Heating,Hot tub,Hot water,Stove,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware
## 360 Cleaning before checkout,Backyard,Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Bathtub,Host greets you,Ethernet connection,Dining table,Dedicated workspace,Free parking on premises,Cleaning products,Wine glasses,Long term stays allowed,Drying rack for clothing,Private entrance,Lock on bedroom door,Refrigerator,Patio or balcony,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Ceiling fan,Breakfast,Dishwasher,Extra pillows and blankets,Portable fans,Heating,Hot water,Stove,Body soap,Iron,Essentials,Clothing storage: closet,Window guards,Kitchen,Dishes and silverware,Air conditioning,Shower gel
## 361 Essentials,Security cameras on property,Hangers,Long term stays allowed,Washer,Private entrance,Hair dryer,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,First aid kit,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Dishes and silverware,Iron,Fire extinguisher
## 362 Hangers,Free dryer \\u2013 In building,Smart lock,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Free washer \\u2013 In building,Long term stays allowed,Elevator,Refrigerator,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Stove,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 363 Shampoo,Building staff,Essentials,Long term stays allowed,Hair dryer,Lock on bedroom door,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Fire extinguisher
## 364 Shampoo,Essentials,Hangers,Kitchen,Cooking basics,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Gym,TV,Air conditioning,Dedicated workspace,Pool,Iron
## 365 Keypad,Kitchen,Cooking basics,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Stove,Dishes and silverware,TV,Paid parking on premises,Air conditioning,Dedicated workspace,Smoke alarm
## 366 Shampoo,Essentials,Hangers,Long term stays allowed,Carbon monoxide alarm,Hair dryer,Elevator,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Fire extinguisher
## 367 Shampoo,Essentials,Smoke alarm,Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Dryer,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Shower gel,Iron,Fire extinguisher
## 368 Hangers,Bed linens,Washer,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Lock on bedroom door,Dryer,Microwave,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Stove,Mini fridge,Iron,Essentials,Kitchen,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 369 Hangers,Bed linens,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Microwave,Gym,TV,Pool,Air conditioning,Dishes and silverware,Iron
## 370 Hangers,Bed linens,Kitchen,Paid parking off premises,Long term stays allowed,Washer,Hair dryer,Host greets you,Refrigerator,Dryer,Wifi,Hot water,Microwave,Pool,TV,Air conditioning,Dishes and silverware,Iron
## 371 Long term stays allowed,Washer,Lock on bedroom door,Dryer,First aid kit,Wifi,Hot water,Air conditioning,Smoke alarm,Iron,Fire extinguisher
## 372 Hangers,Bed linens,Washer,Hair dryer,Host greets you,TV,High chair,Dedicated workspace,Crib,Long term stays allowed,Refrigerator,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Breakfast,Extra pillows and blankets,Hot water,Essentials,Air conditioning,Dishes and silverware
## 373 Shampoo,Breakfast,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Cable TV,Lock on bedroom door,Dryer,First aid kit,Wifi,Free parking on premises,Air conditioning,Dedicated workspace,TV with standard cable,Iron
## 374 Essentials,Safe,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Microwave,Gym,TV,Air conditioning,Pool,Iron
## 375 Essentials,Hangers,Heating,Long term stays allowed,Washer,Private entrance,Lock on bedroom door,Dryer,First aid kit,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 376 Shampoo,Essentials,Extra pillows and blankets,Hangers,Bed linens,Kitchen,Long term stays allowed,Washer,Hair dryer,Host greets you,Refrigerator,Oven,Wifi,Hot water,Air conditioning,Dedicated workspace,Iron
## 377 Hangers,Bed linens,Washer,Hair dryer,High chair,Free parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Dryer,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Cable TV,Hot water,Iron,Essentials,Kitchen,Air conditioning,TV with standard cable,Fire extinguisher
## 378 Essentials,Hangers,Long term stays allowed,Washer,Elevator,Lock on bedroom door,Host greets you,Dryer,Wifi,Hot water,Free parking on premises,Gym,Pool,Air conditioning,Dedicated workspace,Dishes and silverware
## 379 Essentials,Security cameras on property,Keypad,Kitchen,Paid parking off premises,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Stove,TV,Air conditioning,Dedicated workspace,Dishes and silverware,Iron
## 380 Hangers,Coffee maker,Cooking basics,Washer,Single level home,Hair dryer,Host greets you,Oven,TV,Free parking on premises,Security cameras on property,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Dishwasher,Hot water,Stove,BBQ grill,Iron,Essentials,Kitchen,Private patio or balcony,First aid kit,Shared pool,Air conditioning,Dishes and silverware
## 381 Safe,Hangers,Bed linens,Hot water kettle,Washer,Bathtub,Hair dryer,TV,Pool,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Hot water,Stove,Iron,Kitchen,Air conditioning,Dishes and silverware
## 382 Shampoo,Breakfast,Essentials,Security cameras on property,Long term stays allowed,Washer,Hair dryer,Dryer,Wifi,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 383 Shampoo,Breakfast,Essentials,Coffee maker,Long term stays allowed,Washer,Hair dryer,Patio or balcony,Refrigerator,Dryer,Wifi,Hot water,Microwave,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 384 Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,Host greets you,Paid parking on premises,Lockbox,Dedicated workspace,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Shower gel,Essentials,Kitchen,Shared pool,Air conditioning,Dishes and silverware
## 385 Backyard,Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Oven,Lockbox,Dedicated workspace,Free parking on premises,Long term stays allowed,Patio or balcony,Refrigerator,Microwave,Free street parking,Wifi,Shampoo,Extra pillows and blankets,Cable TV,Hot water,Stove,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 386 Hangers,Bed linens,Carbon monoxide alarm,Hair dryer,Host greets you,Dedicated workspace,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,Microwave,Free street parking,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Stove,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 387 Shampoo,Essentials,Hangers,Keypad,Kitchen,Long term stays allowed,Washer,Hair dryer,Refrigerator,Dryer,Wifi,Microwave,Dishes and silverware,Gym,TV,Pool,Air conditioning,Free parking on premises,Smoke alarm,Iron
## 388 Hangers,Washer,Carbon monoxide alarm,Hair dryer,TV,Lockbox,High chair,Pool,Crib,Long term stays allowed,Elevator,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Heating,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Fire extinguisher
## 389 Hangers,Bed linens,Cooking basics,Washer,Single level home,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Pool,Room-darkening shades,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Children\\u2019s dinnerware,Shampoo,Paid parking off premises,Hot water,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 390 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Oven,TV,Dedicated workspace,Long term stays allowed,Lock on bedroom door,Refrigerator,Microwave,Free street parking,Wifi,Smoke alarm,Shampoo,Extra pillows and blankets,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 391 Hangers,Washer,Hair dryer,TV,Free parking on premises,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Heating,Hot water,Iron,Building staff,Essentials,Kitchen,Air conditioning,Fire extinguisher
## 392 Essentials,Safe,Hangers,Kitchen,Hot water kettle,Free washer \\u2013 In building,Free dryer \\u2013 In building,Long term stays allowed,Bathtub,Hair dryer,Cable TV,Refrigerator,Elevator,Wifi,Hot water,Microwave,Air conditioning,TV with standard cable,Iron
## 393 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Bathtub,Oven,Dedicated workspace,Free parking on premises,Room-darkening shades,Cleaning products,Long term stays allowed,Lock on bedroom door,Refrigerator,Patio or balcony,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Hot water,Stove,Body soap,Iron,Building staff,Essentials,Clothing storage: dresser and closet,Kitchen,Dishes and silverware,Air conditioning,Shower gel
## 394 Paid parking off premises,Long term stays allowed,Washer,Lock on bedroom door,Host greets you,Dryer,Wifi,Hot water,Air conditioning,Iron
## 395 Hangers,Bed linens,Hot water kettle,Cooking basics,Freezer,Washer,Smart lock,Hair dryer,Clothing storage: closet and dresser,Dining table,Dedicated workspace,Free parking on premises,Room-darkening shades,Cleaning products,Long term stays allowed,Drying rack for clothing,Lock on bedroom door,Refrigerator,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Shampoo,Shared patio or balcony,Extra pillows and blankets,Hot water,Stove,Body soap,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 396 Hangers,Cooking basics,Washer,Host greets you,TV,Dedicated workspace,Free parking on premises,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Shared garden or backyard,Heating,Hot water,Stove,Iron,Essentials,Kitchen,Private patio or balcony,Shared pool,Air conditioning,Dishes and silverware
## 397 Backyard,Hangers,Bed linens,Cooking basics,Washer,Single level home,Host greets you,Dedicated workspace,Long term stays allowed,Patio or balcony,Refrigerator,Microwave,Free street parking,Wifi,Shampoo,Hot water,Stove,BBQ grill,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 398 Backyard,Hangers,Washer,Carbon monoxide alarm,Hair dryer,TV,Lockbox,Free parking on premises,Dedicated workspace,Long term stays allowed,Elevator,Lock on bedroom door,Patio or balcony,Dryer,Free street parking,Wifi,Smoke alarm,Shampoo,Extra pillows and blankets,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning
## 399 Hangers,Bed linens,Washer,Single level home,Hair dryer,Host greets you,Paid parking on premises,Dedicated workspace,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Microwave,Gym,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Hot water,Stove,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 400 Hangers,Washer,Hair dryer,TV,Free parking on premises,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Wifi,Luggage dropoff allowed,Shampoo,Breakfast,Hot water,Iron,Building staff,Essentials,First aid kit,Air conditioning,Fire extinguisher
## 401 Hangers,Washer,Hair dryer,TV,Free parking on premises,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Building staff,Essentials,Kitchen,Air conditioning,Fire extinguisher
## 402 Hangers,Bed linens,Washer,Carbon monoxide alarm,Hair dryer,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Dryer,Wifi,Smoke alarm,Shampoo,Heating,Paid parking off premises,Cable TV,Hot water,Iron,Building staff,Essentials,First aid kit,Air conditioning,TV with standard cable,Fire extinguisher
## 403 Breakfast,Essentials,Hangers,Long term stays allowed,First aid kit,Wifi,Air conditioning,Dedicated workspace,Fire extinguisher
## 404 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Private entrance,Hair dryer,Elevator,Dryer,Wifi,Gym,TV,Air conditioning,Dedicated workspace,Pool,Iron
## 405 Shampoo,Essentials,Long term stays allowed,Private entrance,Hair dryer,Lock on bedroom door,Elevator,Wifi,Hot water,Free parking on premises,TV,Air conditioning,Dedicated workspace,Smoke alarm,Fire extinguisher
## 406 Backyard,Hangers,Bed linens,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Cable TV,Hot water,Iron,Building staff,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 407 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Single level home,Bathtub,Hair dryer,Oven,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Elevator,Pocket wifi,Refrigerator,Dryer,Microwave,Baby bath,Gym,Wifi,Luggage dropoff allowed,Shampoo,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Building staff,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 408 Hangers,Washer,Hair dryer,Dedicated workspace,Long term stays allowed,Patio or balcony,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Breakfast,Paid parking off premises,Hot water,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 409 Rice maker,Toaster,Hangers,Bed linens,Pool table,Hot water kettle,Freezer,Coffee maker,Cooking basics,Bathtub,Hair dryer,Clothing storage,Oven,Outdoor furniture,Lockbox,Dining table,Dedicated workspace,Free parking on premises,Room-darkening shades,Cleaning products,Wine glasses,Long term stays allowed,Drying rack for clothing,Laundromat nearby,Private entrance,Outdoor dining area,Lock on bedroom door,Pocket wifi,Refrigerator,Dryer,Nespresso machine,Keurig coffee machine,Microwave,Free street parking,Private hot tub,Wifi,Luggage dropoff allowed,Shampoo,Ceiling fan,Shared patio or balcony,Dishwasher,Extra pillows and blankets,Conditioner,Hot water,Stove,Body soap,Bikes,Outdoor shower,Iron,Essentials,Kitchen,Private fenced garden or backyard,First aid kit,Dishes and silverware,Shared pool,Air conditioning,Shower gel,Fire extinguisher
## 410 Shampoo,Breakfast,Hangers,Long term stays allowed,Hair dryer,First aid kit,Wifi,Hot water,Microwave,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 411 Hangers,Hair dryer,Host greets you,Oven,TV,Paid parking on premises,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Microwave,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 412 Shampoo,Essentials,Hangers,Coffee maker,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Microwave,Shared pool,Air conditioning,Free parking on premises,Dishes and silverware,Iron
## 413 Essentials,Hangers,Paid street parking off premises,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Microwave,Gym,TV,Air conditioning,Pool,Iron
## 414 Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Microwave,Gym,TV,Air conditioning,Pool,Iron
## 415 Hangers,Bed linens,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Microwave,Gym,TV,Pool,Air conditioning,Dishes and silverware,Iron
## 416 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Microwave,Gym,TV,Pool,Air conditioning,Dishes and silverware,Iron
## 417 Essentials,Hangers,Kitchen,Paid parking off premises,Long term stays allowed,Washer,Single level home,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Microwave,Gym,TV,Air conditioning,Pool,Iron
## 418 Rice maker,Bidet,Sound system,Trash compactor,Toaster,Hangers,Bed linens,Hot water kettle,Freezer,Coffee maker,Washer,Cooking basics,Single level home,Hair dryer,Bathtub,Clothing storage,Oven,Ethernet connection,TV,Baking sheet,Dining table,Dedicated workspace,Paid parking on premises,Room-darkening shades,Lockbox,Cleaning products,Wine glasses,Cleaning before checkout,Long term stays allowed,Drying rack for clothing,Laundromat nearby,Elevator,Lock on bedroom door,Refrigerator,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Ceiling fan,Extra pillows and blankets,Portable fans,Conditioner,Paid parking off premises,Barbecue utensils,Hot water,Mini fridge,Stove,Body soap,Bikes,Iron,Essentials,Kitchen,First aid kit,Private gym in building,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 419 Breakfast,Essentials,Building staff,Hangers,Long term stays allowed,Washer,Hair dryer,Cable TV,Dryer,First aid kit,Wifi,Hot water,Paid parking on premises,Air conditioning,Dedicated workspace,Smoke alarm,TV with standard cable,Iron,Fire extinguisher
## 420 Shampoo,Breakfast,Hangers,Window guards,Long term stays allowed,Washer,Dryer,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Smoke alarm
## 421 Hangers,Coffee maker,Cooking basics,Washer,Hair dryer,Oven,TV,Dedicated workspace,Pool,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Shampoo,Dishwasher,Hot tub,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 422 Hangers,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Cable TV,Elevator,Host greets you,Dryer,Wifi,Hot water,Air conditioning,TV with standard cable,Iron
## 423 Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Cable TV,Elevator,Dryer,Wifi,Hot tub,Air conditioning,TV with standard cable,Iron
## 424 Hangers,Bed linens,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Long term stays allowed,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Shampoo,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 425 Hangers,Bed linens,Washer,Hair dryer,High chair,Free parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Cable TV,Hot water,Iron,Essentials,Kitchen,Air conditioning,TV with standard cable,Fire extinguisher
## 426 Backyard,Hangers,Bed linens,Washer,Hair dryer,Free parking on premises,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Cable TV,Hot water,Iron,Building staff,Essentials,First aid kit,Air conditioning,TV with standard cable,Fire extinguisher
## 427 Essentials,Security cameras on property,Hangers,Keypad,Long term stays allowed,Washer,Private entrance,Lock on bedroom door,Refrigerator,Dryer,First aid kit,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Dishes and silverware,Fire extinguisher
## 428 Shampoo,Essentials,Security cameras on property,Backyard,Hangers,Paid parking off premises,Long term stays allowed,Luggage dropoff allowed,Hair dryer,Elevator,Host greets you,First aid kit,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 429 Hangers,Cooking basics,Washer,Single level home,Carbon monoxide alarm,Hair dryer,Dedicated workspace,Free parking on premises,Crib,Pool,Security cameras on property,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Cable TV,Hot water,Iron,Building staff,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 430 Cleaning before checkout,Hangers,Washer,Hair dryer,Host greets you,TV,Paid parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Heating,Hot water,Iron,Essentials,First aid kit,Air conditioning,Fire extinguisher
## 431 Shampoo,Breakfast,Essentials,Hangers,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Dryer,Wifi,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 432 Hangers,Bed linens,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,Oven,TV,Dedicated workspace,Long term stays allowed,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Dishwasher,Extra pillows and blankets,Heating,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 433 Essentials,Keypad,Kitchen,Cooking basics,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Stove,TV,Air conditioning,Dishes and silverware,Iron
## 434 Essentials,Dishwasher,Hangers,Coffee maker,Kitchen,Cooking basics,Keypad,Washer,Long term stays allowed,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Stove,TV,Air conditioning,Dishes and silverware,Iron
## 435 Shampoo,Essentials,Hangers,Paid parking off premises,Long term stays allowed,Washer,Elevator,Lock on bedroom door,Refrigerator,Wifi,Hot water,Air conditioning
## 436 Hangers,Bed linens,Coffee maker,Cooking basics,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Microwave,Wifi,Smoke alarm,Shampoo,Hot water,Iron,Shower gel,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 437 Hangers,Bed linens,Cooking basics,Washer,Single level home,Carbon monoxide alarm,Hair dryer,Host greets you,Oven,TV,Dedicated workspace,Pool,Room-darkening shades,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Children\\u2019s dinnerware,Shampoo,Paid parking off premises,Hot water,Stove,Iron,Essentials,Babysitter recommendations,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 438 Hangers,Washer,Carbon monoxide alarm,Hair dryer,TV,Lockbox,High chair,Pool,Crib,Long term stays allowed,Elevator,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Heating,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Fire extinguisher
## 439 Bed linens,Cooking basics,Washer,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Keypad,Heating,Hot water,Stove,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 440 Toaster,Indoor fireplace,Safe,Rice maker,Hangers,Bed linens,Hot water kettle,Washer,Carbon monoxide alarm,Hair dryer,Bathtub,Clothing storage,Ethernet connection,Paid parking on premises,Dining table,Pool,Room-darkening shades,Cleaning products,Wine glasses,Long term stays allowed,Private entrance,Elevator,Patio or balcony,Refrigerator,Microwave,Wifi,Smoke alarm,Shampoo,Conditioner,Hot water,Stove,Iron,Essentials,Kitchen,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 441 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Single level home,Bathtub,Hair dryer,Oven,Ethernet connection,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Baby bath,Gym,Wifi,Luggage dropoff allowed,Shampoo,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Building staff,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 442 Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,Oven,TV,Dedicated workspace,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Keypad,Hot water,Stove,Iron,Essentials,Kitchen,Shared pool,Air conditioning,Dishes and silverware
## 443 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Cable TV,Refrigerator,Elevator,Dryer,Host greets you,Wifi,Hot water,Stove,Microwave,Air conditioning,Dishes and silverware,TV with standard cable,Iron
## 444 Shampoo,Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Luggage dropoff allowed,Hair dryer,Lock on bedroom door,Host greets you,Wifi,Hot water,Free parking on premises,Free street parking,TV,Air conditioning,Dedicated workspace,Iron
## 445 Breakfast,Essentials,Hangers,Keypad,Heating,Long term stays allowed,Washer,Hair dryer,Dryer,First aid kit,Wifi,Hot water,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 446 Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,TV,Dedicated workspace,Free parking on premises,Room-darkening shades,Security cameras on property,Private pool,Long term stays allowed,Private entrance,Refrigerator,Microwave,Private hot tub,Wifi,Children\\u2019s dinnerware,Shampoo,Extra pillows and blankets,Keypad,Hot water,Stove,Iron,Essentials,Kitchen,Private patio or balcony,Air conditioning,Dishes and silverware
## 447 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,High chair,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 448 Cleaning before checkout,Dryer \\u2013 In building,Hangers,Bed linens,Cooking basics,Bathtub,Hair dryer,Oven,High chair,Free parking on premises,Pool,Crib,Washer \\u2013\\u00a0In building,Long term stays allowed,Private entrance,Elevator,Refrigerator,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Cable TV,Hot water,Stove,BBQ grill,Iron,Essentials,Clothing storage: closet,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable
## 449 Essentials,Keypad,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Stove,TV,Air conditioning,Dedicated workspace,Dishes and silverware,Iron
## 450 Keypad,Kitchen,Cooking basics,Long term stays allowed,Washer,Private entrance,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Stove,Dishes and silverware,TV,Air conditioning,Dedicated workspace,Smoke alarm,Fire extinguisher
## 451 Backyard,Hangers,Bed linens,Washer,Hair dryer,Host greets you,Free parking on premises,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Patio or balcony,Refrigerator,Microwave,Gym,Free street parking,Wifi,Heating,Paid parking off premises,Hot water,Stove,BBQ grill,Essentials,Kitchen,Air conditioning
## 452 Hangers,Washer,Hair dryer,TV,Free parking on premises,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Wifi,Luggage dropoff allowed,Shampoo,Breakfast,Hot water,Iron,Building staff,Essentials,First aid kit,Air conditioning,Fire extinguisher
## 453 Shampoo,Security cameras on property,Hangers,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Elevator,Wifi,TV,Air conditioning
## 454 Hangers,Coffee maker,Cooking basics,Washer,Hair dryer,Oven,Paid parking on premises,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Dryer,Wifi,Shampoo,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable
## 455 Backyard,Hangers,Bed linens,Washer,Hair dryer,Oven,Dedicated workspace,Free parking on premises,Security cameras on property,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Gym,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Cable TV,Hot water,Iron,Building staff,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 456 Essentials,Security cameras on property,Keypad,Kitchen,Cooking basics,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Stove,TV,Air conditioning,Dishes and silverware,Iron
## 457 Shampoo,Essentials,Bidet,Hangers,Heating,Dedicated workspace: ,Long term stays allowed,Washer,Elevator,Host greets you,Refrigerator,Hot water,Stove,Air conditioning,Dishes and silverware
## 458 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Wifi,Hot water,Free parking on premises,Gym,TV,Air conditioning,Dedicated workspace,Pool,Iron
## 459 Hangers,Washer,Hair dryer,TV,Free parking on premises,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Heating,Hot water,Iron,Building staff,Essentials,Kitchen,Air conditioning,Fire extinguisher
## 460 Hangers,Bed linens,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Heating,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 461 Essentials,Hangers,Keypad,Kitchen,Cooking basics,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,TV,Air conditioning,Dishes and silverware,Iron
## 462 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Elevator,Wifi,Hot water,Microwave,Air conditioning,Dedicated workspace,Pool
## 463 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Heating,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 464 Coffee maker,Hot water kettle,Cooking basics,Freezer,Washer,Oven,Outdoor furniture,Dining table,Dedicated workspace,Cleaning products,Wine glasses,Security cameras on property,Paid parking lot on premises,Laundromat nearby,Elevator,Lock on bedroom door,Wifi,Luggage dropoff allowed,Shared patio or balcony,Shared garden or backyard,Free dryer \\u2013 In unit,Cable TV,Hot water,Mini fridge,BBQ grill,Essentials,Window AC unit,Kitchen,Children\\u2019s books and toys for ages 0-2 years old and 2-5 years old,Dishes and silverware,TV with standard cable,Fire extinguisher
## 465 Shampoo,Essentials,Kitchen,Long term stays allowed,Hair dryer,Lock on bedroom door,First aid kit,Wifi,TV,Air conditioning,Smoke alarm,Fire extinguisher
## 466 Hangers,Bed linens,Freezer,Washer,Hair dryer,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Heating,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 467 Cleaning before checkout,Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Single level home,Carbon monoxide alarm,Bathtub,Hair dryer,Host greets you,Oven,Paid parking on premises,Dedicated workspace,Free parking on premises,Pool,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Microwave,Waterfront,Gym,Free street parking,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Heating,Cable TV,Hot tub,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable
## 468 Shampoo,Essentials,Heating,Kitchen,Long term stays allowed,Washer,Host greets you,Dryer,Wifi,TV,Air conditioning,Free parking on premises,Fire extinguisher
## 469 Shampoo,Essentials,Heating,Kitchen,Long term stays allowed,Washer,Private entrance,Hair dryer,Cable TV,Lock on bedroom door,Host greets you,Wifi,Hot water,Free street parking,Air conditioning,Free parking on premises,TV with standard cable
## 470 Breakfast,Essentials,Long term stays allowed,Washer,Dryer,First aid kit,Wifi,Air conditioning,Smoke alarm,Fire extinguisher
## 471 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Hair dryer,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Elevator,Pocket wifi,Refrigerator,Dryer,Microwave,Baby bath,Gym,Wifi,Children\\u2019s dinnerware,Luggage dropoff allowed,Shampoo,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Building staff,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 472 Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Microwave,TV,Air conditioning,Dishes and silverware,Iron
## 473 Shampoo,Breakfast,Essentials,Bed linens,Paid parking off premises,Long term stays allowed,Washer,Hair dryer,Dryer,First aid kit,Wifi,Hot water,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 474 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Microwave,Gym,TV,Shared pool,Air conditioning,Dishes and silverware,Iron
## 475 Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Elevator,Wifi,TV,Air conditioning
## 476 Essentials,Coffee maker,Long term stays allowed,Washer,Luggage dropoff allowed,Bathtub,Hair dryer,Cable TV,Refrigerator,Dryer,Wifi,Gym,Air conditioning,Free parking on premises,Pool,TV with standard cable,Iron
## 477 Dryer \\u2013 In building,Backyard,Hangers,Bed linens,Cooking basics,Single level home,Hair dryer,Oven,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Washer \\u2013\\u00a0In building,Security cameras on property,Long term stays allowed,Laundromat nearby,Refrigerator,Microwave,Baby bath,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Cable TV,Hot water,Stove,BBQ grill,Iron,Building staff,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 478 Backyard,Hangers,Bed linens,Cooking basics,Washer,Bathtub,Hair dryer,Ethernet connection,Paid parking on premises,Dedicated workspace,Crib,Security cameras on property,Long term stays allowed,Private entrance,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Breakfast,Extra pillows and blankets,Heating,Cable TV,Hot tub,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 479 Hangers,Bed linens,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Long term stays allowed,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Iron,Essentials,Kitchen,Air conditioning,Shower gel,Fire extinguisher
## 480 Hangers,Bed linens,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Private entrance,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Cable TV,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 481 Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Baby bath,Gym,Wifi,Children\\u2019s dinnerware,Luggage dropoff allowed,Shampoo,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Building staff,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 482 Shampoo,Essentials,Long term stays allowed,Hair dryer,Lock on bedroom door,Wifi,TV,Lockbox,Air conditioning,Dedicated workspace,Smoke alarm,Fire extinguisher
## 483 Breakfast,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Cable TV,Elevator,First aid kit,Wifi,Free parking on premises,Gym,Pool,Air conditioning,Dedicated workspace,Smoke alarm,TV with standard cable,Iron,Fire extinguisher
## 484 Shampoo,Essentials,Security cameras on property,Backyard,Hangers,Paid parking off premises,Long term stays allowed,Luggage dropoff allowed,Hair dryer,Elevator,Host greets you,First aid kit,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 485 Hangers,Coffee maker,Washer,Hair dryer,TV,Dedicated workspace,Security cameras on property,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Shampoo,Iron,Building staff,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 486 Essentials,Keypad,Kitchen,Long term stays allowed,Washer,Private entrance,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Stove,TV,Air conditioning,Dedicated workspace,Iron
## 487 Shampoo,Essentials,Hangers,Long term stays allowed,Carbon monoxide alarm,Hair dryer,Elevator,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Smoke alarm,Fire extinguisher
## 488 Shampoo,Essentials,Hangers,Long term stays allowed,Carbon monoxide alarm,Hair dryer,Elevator,Wifi,Hot tub,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 489 Shampoo,Breakfast,Essentials,Hangers,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Lock on bedroom door,Dryer,Wifi,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 490 Shampoo,Essentials,Security cameras on property,Hangers,Long term stays allowed,Washer,Private entrance,Hair dryer,Elevator,Host greets you,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Iron,Fire extinguisher
## 491 Shampoo,Breakfast,Essentials,Hangers,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Dryer,Wifi,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 492 Shampoo,Essentials,Security cameras on property,Backyard,Paid parking off premises,Long term stays allowed,Luggage dropoff allowed,Hair dryer,Elevator,First aid kit,Wifi,TV,Air conditioning,Smoke alarm,Iron,Fire extinguisher
## 493 Shampoo,Essentials,Long term stays allowed,Body soap,Lock on bedroom door,Refrigerator,Wifi,Hot water,Microwave,TV,Air conditioning
## 494 Hangers,Bed linens,Hair dryer,Host greets you,Dedicated workspace,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Shampoo,Heating,Hot water,Stove,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 495 Backyard,Hangers,Bed linens,Cooking basics,Washer,Bathtub,Hair dryer,Ethernet connection,Paid parking on premises,Dedicated workspace,Crib,Security cameras on property,Long term stays allowed,Private entrance,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Breakfast,Extra pillows and blankets,Heating,Cable TV,Hot tub,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 496 Hangers,Bed linens,Hot water kettle,Coffee maker,Cooking basics,Washer,Single level home,Carbon monoxide alarm,Hair dryer,Oven,TV,Baking sheet,Dedicated workspace,Long term stays allowed,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Shampoo,Shared patio or balcony,Keypad,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 497 Shampoo,Essentials,Security cameras on property,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Host greets you,Dryer,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Iron,Fire extinguisher
## 498 Hangers,Washer,Carbon monoxide alarm,Hair dryer,Oven,Dedicated workspace,Long term stays allowed,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,Microwave,Free street parking,Wifi,Smoke alarm,Luggage dropoff allowed,Paid parking off premises,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 499 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Private entrance,Hair dryer,Lock on bedroom door,Host greets you,Dryer,Wifi,Hot water,Pool,Air conditioning,Free parking on premises,Smoke alarm,Iron
## 500 Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Microwave,Gym,TV,Air conditioning,Pool,Iron
## 501 Hangers,Bed linens,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Hot water,Gym,Pool,TV,Air conditioning,Dishes and silverware,Iron
## 502 Hangers,Bed linens,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Hot water,Gym,TV,Air conditioning,Pool,Iron
## 503 Hangers,Washer,Hair dryer,TV,Free parking on premises,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Heating,Hot water,Iron,Building staff,Essentials,Kitchen,Air conditioning,Fire extinguisher
## 504 Backyard,Hangers,Bed linens,Coffee maker,Washer,Single level home,Hair dryer,TV,Dedicated workspace,Pool,Security cameras on property,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,Microwave,Waterfront,Gym,Wifi,Shampoo,Keypad,Hot water,Iron,Essentials,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 505 Backyard,Hangers,Bed linens,Hair dryer,Host greets you,TV,Free parking on premises,Dedicated workspace,Long term stays allowed,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Paid parking off premises,Hot tub,Hot water,Iron,Essentials,First aid kit,Air conditioning,Shower gel
## 506 Shampoo,Essentials,Hangers,Kitchen,Paid parking off premises,Long term stays allowed,Washer,Hair dryer,Elevator,Host greets you,Dryer,First aid kit,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Iron,Fire extinguisher
## 507 Shampoo,Building staff,Essentials,Hangers,Bed linens,Paid parking off premises,Long term stays allowed,Luggage dropoff allowed,Hair dryer,Elevator,First aid kit,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Iron,Fire extinguisher
## 508 Toaster,Bidet,Rice maker,Hangers,Bed linens,Hot water kettle,Freezer,Washer,Single level home,Hair dryer,Bathtub,Oven,TV,Dining table,Dedicated workspace,Free parking on premises,Room-darkening shades,Cleaning products,Security cameras on property,Long term stays allowed,Drying rack for clothing,Laundromat nearby,Central air conditioning,Private entrance,Elevator,Refrigerator,Microwave,Free street parking,Wifi,Children\\u2019s dinnerware,Shampoo,Ceiling fan,Extra pillows and blankets,Keypad,Hot water,Stove,Iron,Essentials,Clothing storage: closet,Kitchen,Private patio or balcony,Dishes and silverware,Shower gel
## 509 Shampoo,Essentials,Hangers,Bed linens,Washer,Hair dryer,Elevator,Host greets you,First aid kit,Wifi,Dedicated workspace,Iron
## 510 Cleaning before checkout,Dryer \\u2013 In building,Hangers,Bed linens,Cooking basics,Single level home,Bathtub,Hair dryer,Oven,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Washer \\u2013\\u00a0In building,Long term stays allowed,Private entrance,Elevator,Refrigerator,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Cable TV,Hot water,Stove,BBQ grill,Iron,Building staff,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable
## 511 Hangers,Bed linens,Washer,Hair dryer,High chair,Free parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Dryer,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Cable TV,Hot water,Iron,Essentials,Kitchen,Air conditioning,TV with standard cable,Fire extinguisher
## 512 Shampoo,Breakfast,Essentials,Building staff,Hangers,Bed linens,Heating,Long term stays allowed,Washer,Luggage dropoff allowed,Hair dryer,Dryer,First aid kit,Wifi,Hot water,Air conditioning,Dedicated workspace,Smoke alarm,Iron
## 513 Hangers,Bed linens,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Cable TV,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 514 Shampoo,Essentials,Cleaning before checkout,Hangers,Heating,Kitchen,Long term stays allowed,Elevator,Host greets you,Wifi,Hot water,Dishes and silverware,Gym,TV,Pool,Air conditioning,Dedicated workspace,Smoke alarm
## 515 Shampoo,Long term stays allowed,Hair dryer,Wifi,TV,Air conditioning,Free parking on premises
## 516 Hangers,Bed linens,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,Ethernet connection,Free parking on premises,Dedicated workspace,Pool,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Patio or balcony,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Cable TV,Hot water,BBQ grill,Essentials,Air conditioning,TV with standard cable
## 517 Shampoo,Breakfast,Essentials,Security cameras on property,Building staff,Hangers,Long term stays allowed,Hair dryer,Elevator,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron
## 518 Shampoo,Building staff,Essentials,Security cameras on property,Hangers,Kitchen,Paid parking off premises,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,First aid kit,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron
## 519 Hangers,Bed linens,Washer,Single level home,Hair dryer,Dedicated workspace,Security cameras on property,Lake access,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Dryer,Gym,Wifi,Extra pillows and blankets,Hot water,Building staff,Essentials,First aid kit,Air conditioning
## 520 Backyard,Hangers,Coffee maker,Cooking basics,Washer,Single level home,Carbon monoxide alarm,Hair dryer,TV,Paid parking on premises,Dedicated workspace,Pool,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Keypad,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 521 Hangers,Bed linens,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Heating,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 522 Cleaning before checkout,Backyard,Hangers,Bed linens,Cooking basics,Washer,Single level home,Bathtub,Hair dryer,Ethernet connection,Paid parking on premises,Dedicated workspace,Crib,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Extra pillows and blankets,Heating,Cable TV,Hot tub,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 523 Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Refrigerator,Dryer,Wifi,TV,Lockbox,Air conditioning,Dishes and silverware,Iron
## 524 Hangers,Cooking basics,Washer,Hair dryer,TV,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Wifi,Smoke alarm,Keypad,Heating,Hot water,Stove,Iron,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 525 Hangers,Hair dryer,Host greets you,Oven,TV,Paid parking on premises,Dedicated workspace,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Microwave,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 526 Hangers,Hair dryer,Host greets you,Oven,TV,Paid parking on premises,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Microwave,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 527 Shampoo,Essentials,Kitchen,Long term stays allowed,Private entrance,Hair dryer,Lock on bedroom door,First aid kit,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Fire extinguisher
## 528 Shampoo,TV,Bed linens,Kitchen,Long term stays allowed,Hair dryer,Lock on bedroom door,Wifi,Hot water,Body soap,Air conditioning,Smoke alarm
## 529 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Single level home,Hair dryer,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Elevator,Pocket wifi,Refrigerator,Dryer,Microwave,Baby bath,Gym,Wifi,Children\\u2019s dinnerware,Luggage dropoff allowed,Shampoo,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Building staff,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 530 Rice maker,Bidet,Toaster,Hangers,Bed linens,Hot water kettle,Freezer,Cooking basics,Washer,Single level home,Carbon monoxide alarm,Hair dryer,Bathtub,Clothing storage,Oven,TV,Lockbox,Dining table,Children\\u2019s books and toys,Dedicated workspace,Room-darkening shades,Pool,Cleaning products,Long term stays allowed,Drying rack for clothing,Private entrance,Patio or balcony,Refrigerator,Microwave,Gym,Wifi,Children\\u2019s dinnerware,Smoke alarm,Shampoo,Ceiling fan,Extra pillows and blankets,Conditioner,Paid parking off premises,Hot water,Stove,Body soap,Iron,Essentials,Kitchen,Dishes and silverware,Air conditioning,Shower gel
## 531 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Single level home,Hair dryer,Paid parking on premises,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Elevator,Pocket wifi,Refrigerator,Dryer,Microwave,Baby bath,Gym,Wifi,Children\\u2019s dinnerware,Luggage dropoff allowed,Shampoo,Cable TV,Hot water,Stove,Iron,Building staff,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 532 Backyard,Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,Oven,Paid parking on premises,Dedicated workspace,Long term stays allowed,Drying rack for clothing,Elevator,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,Microwave,Waterfront,Gym,Wifi,Shampoo,Breakfast,Extra pillows and blankets,Cable TV,Hot water,Stove,Body soap,Iron,Essentials,Clothing storage: closet,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 533 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Single level home,Hair dryer,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Elevator,Pocket wifi,Refrigerator,Dryer,Microwave,Baby bath,Gym,Wifi,Children\\u2019s dinnerware,Luggage dropoff allowed,Shampoo,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Building staff,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 534 Shampoo,Breakfast,Essentials,Paid parking off premises,Long term stays allowed,Washer,Hair dryer,Refrigerator,Dryer,First aid kit,Wifi,Hot water,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 535 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Single level home,Hair dryer,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Elevator,Pocket wifi,Refrigerator,Dryer,Microwave,Baby bath,Gym,Wifi,Children\\u2019s dinnerware,Luggage dropoff allowed,Shampoo,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Building staff,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 536 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Host greets you,Wifi,Hot water,Free parking on premises,Free street parking,TV,Air conditioning,Dedicated workspace,Iron
## 537 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Hot water,Microwave,Gym,TV,Pool,Air conditioning,Dishes and silverware,Iron
## 538 Hangers,Washer,Hair dryer,TV,Free parking on premises,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Heating,Hot water,Iron,Building staff,Essentials,Kitchen,Air conditioning,Fire extinguisher
## 539 Shampoo,Building staff,Hangers,Long term stays allowed,Hot water,Wifi,Iron,Fire extinguisher
## 540 Backyard,Hangers,Bed linens,Coffee maker,Washer,Hair dryer,Host greets you,Dedicated workspace,Long term stays allowed,Patio or balcony,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Hot water,Iron,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 541 Shampoo,Breakfast,Hangers,Long term stays allowed,Washer,Hair dryer,Cable TV,Dryer,Wifi,Air conditioning,Dedicated workspace,TV with standard cable
## 542 Hangers,Bed linens,Washer,Single level home,Carbon monoxide alarm,Hair dryer,Smart lock,TV,Dedicated workspace,Room-darkening shades,Long term stays allowed,Elevator,Refrigerator,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Extra pillows and blankets,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Private patio or balcony,Shared pool,Air conditioning,Dishes and silverware
## 543 Bidet,Hangers,Bed linens,Washer,Hair dryer,Bathtub,Host greets you,Ethernet connection,Outdoor furniture,High chair,Dedicated workspace,Crib,Long term stays allowed,Outdoor dining area,Lock on bedroom door,Dryer,Free street parking,Wifi,Luggage dropoff allowed,Shampoo,Hot water,Body soap,Iron,Essentials,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 544 Hangers,Coffee maker,Cooking basics,Washer,Single level home,Hair dryer,Oven,TV,Paid parking on premises,Dedicated workspace,Security cameras on property,Game console,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,Microwave,Wifi,Shampoo,Dishwasher,Heating,Hot water,Stove,Iron,Essentials,Window guards,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 545 Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Wifi,Air conditioning
## 546 Hangers,Bed linens,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 547 Hangers,Bed linens,Washer,Hair dryer,High chair,Dedicated workspace,Free parking on premises,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Cable TV,Hot water,Iron,Essentials,Kitchen,Air conditioning,TV with standard cable,Fire extinguisher
## 548 Shampoo,Essentials,Security cameras on property,Hangers,Kitchen,Lake access,Long term stays allowed,Washer,Hair dryer,Cable TV,Lock on bedroom door,Refrigerator,Elevator,Wifi,Pool,Air conditioning,Dedicated workspace,Dishes and silverware,TV with standard cable
## 549 Shampoo,Essentials,Hangers,Washer,Luggage dropoff allowed,Hair dryer,Lock on bedroom door,Refrigerator,Elevator,Host greets you,First aid kit,Wifi,Hot water,Microwave,Paid parking on premises,Air conditioning,Dedicated workspace,Iron
## 550 Cleaning before checkout,Hangers,Bed linens,Cooking basics,Washer,Single level home,Carbon monoxide alarm,Bathtub,Hair dryer,Oven,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Cable TV,Hot water,Stove,BBQ grill,Iron,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable
## 551 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Hot water,Gym,TV,Air conditioning,Pool,Iron
## 552 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Microwave,Gym,TV,Air conditioning,Pool,Iron
## 553 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Hot water,Gym,TV,Air conditioning,Pool,Iron
## 554 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Single level home,Hair dryer,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Elevator,Pocket wifi,Refrigerator,Dryer,Microwave,Baby bath,Gym,Wifi,Children\\u2019s dinnerware,Luggage dropoff allowed,Shampoo,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Building staff,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 555 Shampoo,Building staff,Essentials,Security cameras on property,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron
## 556 Hangers,Cooking basics,Washer,Single level home,Hair dryer,Host greets you,TV,Paid parking on premises,Children\\u2019s books and toys,Long term stays allowed,Drying rack for clothing,Elevator,Lock on bedroom door,Refrigerator,Patio or balcony,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Hot water,Stove,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 557 Shampoo,Essentials,Hangers,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Refrigerator,Elevator,Dryer,Wifi,Hot water,Gym,Pool,TV,Air conditioning,Dedicated workspace,Dishes and silverware,Iron
## 558 Shampoo,Essentials,Hangers,Long term stays allowed,Lock on bedroom door,Hot water,TV,Wifi,Iron
## 559 Shampoo,Breakfast,Essentials,Building staff,Hangers,Long term stays allowed,Hair dryer,Lock on bedroom door,Patio or balcony,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Smoke alarm
## 560 Hangers,Washer,Carbon monoxide alarm,Hair dryer,TV,Lockbox,High chair,Pool,Crib,Long term stays allowed,Elevator,Refrigerator,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Heating,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Fire extinguisher
## 561 Shampoo,Essentials,Hangers,Heating,Kitchen,Paid parking off premises,Washer,Long term stays allowed,Private entrance,Hair dryer,Dryer,Wifi,Pool,TV,Air conditioning,Smoke alarm,BBQ grill,Iron,Fire extinguisher
## 562 Shampoo,Essentials,Heating,Kitchen,Long term stays allowed,Private entrance,Hair dryer,First aid kit,Wifi,Free parking on premises,Pool,TV,Air conditioning,Washer \\u2013\\u00a0In unit,Smoke alarm,Fire extinguisher
## 563 Hangers,Washer,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Patio or balcony,Dryer,Gym,Wifi,Smoke alarm,Shampoo,Heating,Hot tub,Hot water,Iron,Essentials,Shared pool,Air conditioning,Fire extinguisher
## 564 Hangers,Cooking basics,Washer,Hair dryer,Fire pit,Shared hot tub,Outdoor furniture,TV,Dedicated workspace,Children\\u2019s books and toys,Long term stays allowed,Outdoor dining area,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Free street parking,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Keypad,Hot water,BBQ grill,Iron,Essentials,Kitchen,Private fenced garden or backyard,Air conditioning,Fire extinguisher
## 565 Extra pillows and blankets,Bed linens,Heating,Long term stays allowed,Washer,Hair dryer,Cable TV,Lock on bedroom door,Elevator,Wifi,Hot water,Paid parking on premises,Air conditioning,TV with standard cable,Iron
## 566 Hangers,Kitchen,Long term stays allowed,Hair dryer,Refrigerator,Dryer,Hot water,Microwave,Pool,TV,Wifi,Paid washer \\u2013 In building,Dishes and silverware,Iron
## 567 Shampoo,Breakfast,Indoor fireplace,Building staff,Hangers,Long term stays allowed,Washer,Hair dryer,Dryer,Wifi,Hot water,Air conditioning,Smoke alarm,Iron,Fire extinguisher
## 568 Hangers,Kitchen,Cooking basics,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Host greets you,Dryer,Wifi,Hot water,Microwave,Pool,TV,Air conditioning,Dishes and silverware,Iron
## 569 Hangers,Cooking basics,Washer,Hair dryer,Fire pit,Outdoor furniture,TV,Dedicated workspace,Long term stays allowed,Outdoor dining area,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Waterfront,Gym,Wifi,Shampoo,Hot water,BBQ grill,Iron,Essentials,Kitchen,Private fenced garden or backyard,Shared pool,Air conditioning,Dishes and silverware,Fire extinguisher
## 570 Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Microwave,Gym,TV,Air conditioning,Pool,Iron
## 571 Shampoo,Breakfast,Essentials,Kitchen,Paid parking off premises,Long term stays allowed,Washer,Hair dryer,Dryer,First aid kit,Wifi,Hot water,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 572 Safe,Hangers,Hot water kettle,Washer,Single level home,Bathtub,Hair dryer,TV,Dining table,Pool,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Gym,Paid street parking off premises,Wifi,Hot water,Iron,Essentials,Kitchen,Air conditioning
## 573 Hangers,Washer,Hair dryer,Host greets you,TV,High chair,Free parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Dryer,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Hot water,Iron,Essentials,Kitchen,Air conditioning,Fire extinguisher
## 574 Dryer \\u2013 In building,Backyard,Hangers,Bed linens,Cooking basics,Single level home,Hair dryer,Oven,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Washer \\u2013\\u00a0In building,Security cameras on property,Long term stays allowed,Laundromat nearby,Refrigerator,Microwave,Baby bath,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Cable TV,Hot water,Stove,BBQ grill,Iron,Building staff,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 575 Cleaning before checkout,Backyard,Hangers,Bed linens,Cooking basics,Washer,Single level home,Bathtub,Hair dryer,Ethernet connection,Paid parking on premises,Dedicated workspace,Crib,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Extra pillows and blankets,Heating,Cable TV,Hot tub,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 576 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Elevator,Lock on bedroom door,Wifi,Gym,Air conditioning,Dedicated workspace,Pool
## 577 Shampoo,Building staff,Essentials,Long term stays allowed,Hair dryer,Lock on bedroom door,Wifi,TV,Air conditioning,Smoke alarm,Fire extinguisher
## 578 Hangers,Washer,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Dryer,Wifi,Smoke alarm,Shampoo,Keypad,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 579 Keypad,Kitchen,Cooking basics,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Stove,TV,Air conditioning,Dedicated workspace,Dishes and silverware
## 580 Hangers,Washer,Hair dryer,Oven,TV,Paid parking on premises,Dedicated workspace,Long term stays allowed,Lock on bedroom door,Refrigerator,Microwave,Wifi,Shampoo,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Air conditioning,Dishes and silverware
## 581 Shampoo,Essentials,Hangers,Kitchen,Paid parking off premises,Washer,Private entrance,Hair dryer,Lock on bedroom door,Host greets you,Dryer,Wifi,Hot water,TV,Paid parking on premises,Air conditioning,Iron
## 582 Hangers,Bed linens,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Security cameras on property,Long term stays allowed,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Essentials,Kitchen,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 583 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Private entrance,Hair dryer,Elevator,Dryer,Wifi,Pool,Gym,TV,Air conditioning,Dedicated workspace,Dishes and silverware,Iron
## 584 Toaster,Bidet,Hangers,Hot water kettle,Hair dryer,Dedicated workspace,Cleaning products,Long term stays allowed,Private entrance,Lock on bedroom door,Pocket wifi,Refrigerator,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Portable fans,22\\ TV,Hot water,Mini fridge,Body soap,Iron,Essentials,Clothing storage: closet,Paid dryer \\u2013 In unit,Paid washer \\u2013 In unit,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 585 Shampoo,Essentials,Hangers,Luggage dropoff allowed,Hair dryer,Elevator,Refrigerator,Wifi,Pool,TV,Air conditioning,Free parking on premises,Smoke alarm,Iron
## 586 Keypad,Bed linens,Kitchen,Long term stays allowed,Washer,Luggage dropoff allowed,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 587 Hangers,Washer,Carbon monoxide alarm,Hair dryer,Lockbox,High chair,Free parking on premises,Dedicated workspace,Crib,Pool,Long term stays allowed,Elevator,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Heating,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Fire extinguisher
## 588 Hangers,Bed linens,Washer,Hair dryer,Dedicated workspace,Long term stays allowed,Private entrance,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Heating,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 589 Hangers,Washer,TV,Free parking on premises,Dedicated workspace,Long term stays allowed,Lock on bedroom door,Patio or balcony,Gym,Free street parking,Wifi,Smoke alarm,Shampoo,Shared garden or backyard,Breakfast,Heating,Bikes,BBQ grill,Iron,Essentials,Kitchen,Shared pool,Air conditioning,Dishes and silverware,Fire extinguisher
## 590 Shampoo,Essentials,Smoke alarm,Hangers,Bed linens,Paid parking off premises,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Cable TV,Lock on bedroom door,Wifi,Hot water,Body soap,Air conditioning,Dedicated workspace,Shower gel,TV with standard cable,Luggage dropoff allowed
## 591 Shampoo,Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Wifi,Pool,Dishes and silverware,Air conditioning,Smoke alarm,Iron
## 592 Hangers,Bed linens,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Microwave,Gym,TV,Air conditioning,Pool,Iron
## 593 Hangers,Bed linens,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Hot water,Gym,TV,Air conditioning,Pool,Iron
## 594 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Hot water,Gym,TV,Air conditioning,Pool,Iron
## 595 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Hair dryer,Host greets you,First aid kit,Wifi,TV,Air conditioning,Free parking on premises
## 596 Breakfast,Essentials,Building staff,Hangers,Long term stays allowed,Washer,Hair dryer,Cable TV,Dryer,First aid kit,Wifi,Hot water,Paid parking on premises,Air conditioning,Dedicated workspace,Smoke alarm,TV with standard cable,Iron,Fire extinguisher
## 597 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Hot water,Gym,TV,Air conditioning,Pool,Iron
## 598 Shampoo,Breakfast,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Cable TV,Elevator,Dryer,First aid kit,Wifi,Air conditioning,Dedicated workspace,Smoke alarm,TV with standard cable,Iron,Fire extinguisher
## 599 Hangers,Coffee maker,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,Oven,Dedicated workspace,Free parking on premises,Long term stays allowed,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Smoke alarm,Shampoo,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 600 Essentials,Extra pillows and blankets,Hangers,Bed linens,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Wifi,Hot water,Dishes and silverware,Free street parking,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron
## 601 Hangers,Bed linens,Washer,Hair dryer,Host greets you,Dedicated workspace,Free parking on premises,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Heating,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,TV with standard cable,Fire extinguisher
## 602 Shampoo,Building staff,Essentials,Hangers,Kitchen,Paid parking off premises,Long term stays allowed,Luggage dropoff allowed,Hair dryer,Cable TV,Patio or balcony,Elevator,First aid kit,Wifi,Hot water,Air conditioning,Dedicated workspace,TV with standard cable,Iron,Fire extinguisher
## 603 Hangers,Bed linens,Washer,Hair dryer,Dedicated workspace,Free parking on premises,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Shampoo,Extra pillows and blankets,Heating,Cable TV,Hot water,Iron,Building staff,Essentials,Kitchen,Air conditioning,TV with standard cable,Fire extinguisher
## 604 Essentials,Coffee maker,Long term stays allowed,Washer,Luggage dropoff allowed,Bathtub,Hair dryer,Cable TV,Refrigerator,Dryer,Wifi,Gym,Air conditioning,Free parking on premises,Pool,TV with standard cable,Iron
## 605 Dryer \\u2013 In building,Backyard,Hangers,Bed linens,Cooking basics,Single level home,Hair dryer,Oven,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Washer \\u2013\\u00a0In building,Security cameras on property,Long term stays allowed,Laundromat nearby,Refrigerator,Microwave,Baby bath,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Cable TV,Hot water,Stove,BBQ grill,Iron,Building staff,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 606 Cleaning before checkout,Backyard,Hangers,Bed linens,Cooking basics,Washer,Single level home,Bathtub,Hair dryer,Ethernet connection,Paid parking on premises,Dedicated workspace,Crib,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Extra pillows and blankets,Heating,Cable TV,Hot tub,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 607 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Microwave,Gym,TV,Pool,Air conditioning,Dishes and silverware,Iron
## 608 Cleaning before checkout,Backyard,Hangers,Bed linens,Washer,Host greets you,Paid parking on premises,Security cameras on property,Lake access,Long term stays allowed,Lock on bedroom door,Refrigerator,Microwave,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Hot water,Iron,Essentials,First aid kit,Air conditioning,Dishes and silverware
## 609 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Single level home,Hair dryer,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Elevator,Pocket wifi,Refrigerator,Dryer,Microwave,Baby bath,Gym,Wifi,Children\\u2019s dinnerware,Luggage dropoff allowed,Shampoo,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Building staff,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 610 Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,Host greets you,Oven,Dedicated workspace,Free parking on premises,Pool,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 611 Shampoo,Essentials,Hangers,Keypad,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Stove,TV,Air conditioning,Dedicated workspace,Dishes and silverware,Iron
## 612 Hangers,Coffee maker,Cooking basics,Washer,Hair dryer,TV,Paid parking on premises,Dedicated workspace,Pool,Long term stays allowed,Elevator,Refrigerator,Dryer,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 613 Breakfast,Essentials,Hangers,Long term stays allowed,Elevator,Wifi,Air conditioning
## 614 Hangers,Bed linens,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Security cameras on property,Long term stays allowed,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Essentials,Kitchen,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 615 Shampoo,Essentials,Hangers,Bed linens,Coffee maker,Long term stays allowed,Carbon monoxide alarm,Hair dryer,Cable TV,Refrigerator,First aid kit,Wifi,Hot water,Air conditioning,Dedicated workspace,Smoke alarm,TV with standard cable,Fire extinguisher
## 616 Hangers,Coffee maker,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,TV,Paid parking on premises,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Shampoo,Dishwasher,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware
## 617 Hangers,Washer,Hair dryer,TV,Free parking on premises,Pool,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Patio or balcony,Refrigerator,Microwave,Wifi,Shampoo,BBQ grill,Iron,Essentials,Kitchen,Air conditioning,Shower gel
## 618 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Hair dryer,TV,Dedicated workspace,Room-darkening shades,Long term stays allowed,Refrigerator,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Keypad,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 619 Shampoo,Building staff,Essentials,Security cameras on property,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron
## 620 Shampoo,Essentials,Hangers,Long term stays allowed,Washer,Private entrance,Hair dryer,Lock on bedroom door,Elevator,Wifi,Hot water,Air conditioning,Dedicated workspace,Iron
## 621 Shampoo,Breakfast,Essentials,Hangers,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Dryer,Wifi,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 622 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Wifi,Hot water,Free parking on premises,Gym,TV,Air conditioning,Dedicated workspace,Pool,Iron
## 623 Bidet,Hangers,Bed linens,Hot water kettle,Washer,Clothing storage,Host greets you,Dedicated workspace,Cleaning products,Long term stays allowed,Drying rack for clothing,Laundromat nearby,Elevator,Lock on bedroom door,Patio or balcony,Dryer,Shared outdoor olympic-sized lap pool,Wifi,Paid parking garage off premises,Luggage dropoff allowed,Shampoo,Portable fans,Heating,Hot water,Body soap,Iron,Essentials,Window guards,Shower gel,Fire extinguisher
## 624 Hangers,Bed linens,Cooking basics,Washer,Single level home,Carbon monoxide alarm,Hair dryer,TV,Pool,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 625 Bidet,Hangers,Bed linens,Hot water kettle,Washer,Clothing storage,Host greets you,Dedicated workspace,Cleaning products,Long term stays allowed,Laundromat nearby,Elevator,Lock on bedroom door,Patio or balcony,Dryer,Shared outdoor olympic-sized lap pool,Wifi,Luggage dropoff allowed,Shampoo,Portable fans,Heating,Paid parking off premises,Hot water,Body soap,Iron,Essentials,Window guards,Shower gel,Fire extinguisher
## 626 Security cameras on property,Hangers,Keypad,Kitchen,Cooking basics,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Hot water,Dishes and silverware,TV,Air conditioning,Smoke alarm
## 627 Cleaning before checkout,Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,Oven,TV,Dedicated workspace,Free parking on premises,Private pool,Long term stays allowed,Refrigerator,Dryer,Microwave,Gym,Free street parking,Wifi,Shampoo,Extra pillows and blankets,Hot water,Stove,BBQ grill,Iron,Shower gel,Essentials,Kitchen,Private patio or balcony,Air conditioning,Dishes and silverware
## 628 Shampoo,Essentials,Hangers,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Host greets you,Dryer,Wifi,TV,Air conditioning,Dedicated workspace
## 629 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Single level home,Hair dryer,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Elevator,Pocket wifi,Refrigerator,Dryer,Microwave,Baby bath,Gym,Wifi,Children\\u2019s dinnerware,Luggage dropoff allowed,Shampoo,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Building staff,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 630 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Hot water,Gym,TV,Shared pool,Air conditioning,Dishes and silverware,Iron
## 631 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Elevator,Pocket wifi,Refrigerator,Dryer,Microwave,Baby bath,Gym,Wifi,Luggage dropoff allowed,Shampoo,Cable TV,Hot water,Stove,Iron,Building staff,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 632 Hot water kettle,Washer,Carbon monoxide alarm,TV,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Paid parking off premises,Hot water,Shower gel,Essentials,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 633 Hot water kettle,Washer,Carbon monoxide alarm,TV,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Paid parking off premises,Shower gel,Essentials,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 634 Hangers,Washer,Hair dryer,TV,Free parking on premises,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Heating,Hot water,Iron,Building staff,Essentials,Kitchen,Air conditioning,Fire extinguisher
## 635 Backyard,Hangers,Bed linens,Coffee maker,Washer,Hair dryer,Host greets you,Dedicated workspace,Long term stays allowed,Patio or balcony,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Air conditioning,Dishes and silverware,Fire extinguisher
## 636 Shampoo,Breakfast,Essentials,Hangers,Long term stays allowed,Washer,Hair dryer,Host greets you,Dryer,Wifi,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 637 Hangers,Washer,Single level home,Hair dryer,TV,Paid parking on premises,Dedicated workspace,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Microwave,Wifi,Shampoo,Heating,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 638 Backyard,Hangers,Bed linens,Washer,Hair dryer,TV,Free parking on premises,Pool,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Shampoo,Heating,Hot water,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 639 Essentials,Hangers,Bed linens,Kitchen,Cooking basics,Paid parking off premises,Washer,Long term stays allowed,Refrigerator,Dryer,Wifi,Hot water,Stove,Air conditioning,Dedicated workspace,Dishes and silverware,Iron
## 640 Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,Host greets you,Oven,Ethernet connection,TV,Paid parking on premises,Dedicated workspace,Game console,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Window guards,Kitchen,First aid kit,Air conditioning,Dishes and silverware
## 641 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Patio or balcony,Elevator,Dryer,Wifi,Hot water,Gym,Air conditioning,Dedicated workspace,Pool
## 642 Cleaning before checkout,Dryer \\u2013 In building,Hangers,Bed linens,Cooking basics,Single level home,Hair dryer,Bathtub,Oven,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Washer \\u2013\\u00a0In building,Long term stays allowed,Private entrance,Elevator,Refrigerator,Microwave,Gym,Wifi,Luggage dropoff allowed,Shampoo,Cable TV,Hot water,Stove,Body soap,BBQ grill,Iron,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable
## 643 Dryer \\u2013 In building,Backyard,Hangers,Bed linens,Cooking basics,Single level home,Hair dryer,Oven,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Washer \\u2013\\u00a0In building,Security cameras on property,Long term stays allowed,Laundromat nearby,Refrigerator,Microwave,Baby bath,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Cable TV,Hot water,Stove,BBQ grill,Iron,Building staff,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 644 Hangers,Washer,Hair dryer,Free parking on premises,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Wifi,Luggage dropoff allowed,Shampoo,Cable TV,Hot water,Iron,Building staff,Essentials,First aid kit,Air conditioning,TV with standard cable,Fire extinguisher
## 645 Backyard,Hangers,Bed linens,Cooking basics,Washer,Single level home,Bathtub,Hair dryer,Ethernet connection,Paid parking on premises,Dedicated workspace,Crib,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Extra pillows and blankets,Heating,Cable TV,Hot tub,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 646 Hangers,Bed linens,Kitchen,Paid parking off premises,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Stove,Microwave,TV,Gym,Air conditioning,Dishes and silverware,Shared pool,Iron
## 647 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Microwave,Gym,TV,Pool,Air conditioning,Dishes and silverware,Iron
## 648 Building staff,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Cable TV,Elevator,Dryer,Wifi,Free parking on premises,Air conditioning,Dedicated workspace,Smoke alarm,TV with standard cable,Iron,Fire extinguisher
## 649 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Hair dryer,Oven,Ethernet connection,TV,Lockbox,Dedicated workspace,Free parking on premises,Long term stays allowed,Private entrance,Refrigerator,Microwave,Free street parking,Wifi,Smoke alarm,Shampoo,Dishwasher,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 650 Shampoo,Building staff,Essentials,Hangers,Paid parking off premises,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Elevator,Dryer,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Smoke alarm,Luggage dropoff allowed
## 651 Hangers,Bed linens,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 652 Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,Host greets you,Dedicated workspace,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Paid parking off premises,Cable TV,Hot water,Stove,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 653 Cleaning before checkout,Hangers,Bed linens,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Heating,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 654 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 655 Shampoo,Essentials,Dishwasher,Hangers,Bed linens,Long term stays allowed,Hair dryer,Cable TV,First aid kit,Wifi,Hot water,Air conditioning,Dedicated workspace,TV with standard cable,Fire extinguisher
## 656 Hangers,Bed linens,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Microwave,Gym,TV,Pool,Air conditioning,Dishes and silverware,Iron
## 657 Hangers,Bed linens,Cooking basics,Washer,Smart lock,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Lock on bedroom door,Refrigerator,Patio or balcony,Microwave,Free street parking,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 658 Shampoo,Breakfast,Essentials,Security cameras on property,Building staff,Hangers,Long term stays allowed,Hair dryer,Elevator,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron
## 659 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 660 Shampoo,Essentials,Security cameras on property,Long term stays allowed,Hair dryer,Wifi,Air conditioning,Smoke alarm,Iron,Fire extinguisher
## 661 Cleaning before checkout,Hangers,Coffee maker,Cooking basics,Washer,Single level home,Oven,TV,Paid parking on premises,Children\\u2019s books and toys,Dedicated workspace,Room-darkening shades,Lake access,Elevator,Lock on bedroom door,Refrigerator,Microwave,Table corner guards,Wifi,Children\\u2019s dinnerware,Luggage dropoff allowed,Shampoo,Breakfast,Dishwasher,Extra pillows and blankets,Heating,Hot water,Stove,Iron,Building staff,Essentials,EV charger,First aid kit,Air conditioning,Dishes and silverware
## 662 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Hot water,Gym,TV,Air conditioning,Pool,Iron
## 663 Shampoo,Breakfast,Essentials,Security cameras on property,Long term stays allowed,Washer,Hair dryer,Dryer,Wifi,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 664 Essentials,Long term stays allowed,Hair dryer,Elevator,Wifi,Hot water,Air conditioning,Iron
## 665 Bidet,Hangers,Bed linens,Hot water kettle,Washer,Clothing storage,Host greets you,Dedicated workspace,Cleaning products,Long term stays allowed,Laundromat nearby,Elevator,Lock on bedroom door,Patio or balcony,Dryer,Shared outdoor olympic-sized lap pool,Wifi,Paid parking garage off premises,Luggage dropoff allowed,Shampoo,Portable fans,Heating,Hot water,Body soap,Iron,Essentials,Window guards,Shower gel,Fire extinguisher
## 666 Shampoo,Building staff,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Luggage dropoff allowed,Hair dryer,Elevator,Dryer,Wifi,Hot water,Free parking on premises,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 667 Hangers,Bed linens,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Hot water,Microwave,Gym,TV,Shared pool,Air conditioning,Dishes and silverware,Iron
## 668 Toaster,Rice maker,Hangers,Bed linens,Cooking basics,Washer,TV,Dining table,Dedicated workspace,Room-darkening shades,Wine glasses,Long term stays allowed,Drying rack for clothing,Private entrance,Elevator,Patio or balcony,Refrigerator,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Ceiling fan,Portable fans,Heating,Hot tub,Hot water,Stove,Iron,Clothing storage: closet and walk-in closet,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 669 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Single level home,Hair dryer,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Security cameras on property,Long term stays allowed,Elevator,Pocket wifi,Refrigerator,Dryer,Microwave,Baby bath,Gym,Wifi,Children\\u2019s dinnerware,Luggage dropoff allowed,Shampoo,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Building staff,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 670 Essentials,Hangers,Bed linens,Long term stays allowed,Washer,Lock on bedroom door,Air conditioning,First aid kit,Wifi,Hot water,Microwave,High chair,Shower gel,Iron,Fire extinguisher
## 671 Hangers,Washer,Carbon monoxide alarm,Hair dryer,Lockbox,High chair,Free parking on premises,Dedicated workspace,Crib,Pool,Long term stays allowed,Elevator,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Heating,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Fire extinguisher
## 672 Hangers,Washer,Carbon monoxide alarm,Hair dryer,Lockbox,High chair,Free parking on premises,Dedicated workspace,Crib,Pool,Long term stays allowed,Elevator,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Heating,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Fire extinguisher
## 673 Hangers,Bed linens,Cooking basics,Freezer,Washer,Single level home,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Free parking on premises,Room-darkening shades,Pool,Elevator,Patio or balcony,Refrigerator,Dryer,Wifi,Smoke alarm,Children\\u2019s dinnerware,Shampoo,Paid parking off premises,Hot water,Body soap,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 674 Hangers,Cooking basics,Hair dryer,Lockbox,Electric stove,Dedicated workspace,Security cameras on property,Long term stays allowed,Lock on bedroom door,Refrigerator,Dryer \\u2013\\u00a0In unit,Patio or balcony,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Washer \\u2013\\u00a0In unit,Dishes and silverware
## 675 Shampoo,Essentials,Kitchen,Long term stays allowed,Private entrance,Hair dryer,Lock on bedroom door,First aid kit,Wifi,TV,Air conditioning,Smoke alarm,Iron,Fire extinguisher
## 676 Shampoo,Essentials,Long term stays allowed,Washer,Private entrance,Hair dryer,Lock on bedroom door,Dryer,First aid kit,Wifi,TV,Air conditioning,Smoke alarm,Iron,Fire extinguisher
## 677 Bidet,Hangers,Bed linens,Hot water kettle,Washer,Carbon monoxide alarm,Hair dryer,TV,High chair,Pool,Crib,Room-darkening shades,Cleaning products,Long term stays allowed,Elevator,Patio or balcony,Dryer,Microwave,Wifi,Smoke alarm,Children\\u2019s dinnerware,Luggage dropoff allowed,Shampoo,Dishwasher,Portable fans,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Shower gel,Fire extinguisher
## 678 Toaster,Bidet,Sound system,Rice maker,Hangers,Bed linens,Hot water kettle,Cooking basics,Freezer,Washer,Bathtub,Hair dryer,TV,Outdoor furniture,Dining table,Dedicated workspace,Free parking on premises,Lockbox,Cleaning products,Clothing storage: closet,dresser,and wardrobe,Long term stays allowed,Outdoor dining area,Private entrance,Pocket wifi,Refrigerator,Waterfront,Wifi,Smoke alarm,Induction stove,Dishwasher,Extra pillows and blankets,Portable fans,Hot water,Mini fridge,Iron,Essentials,Boat slip,Kitchen,EV charger,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 679 Hangers,Washer,Carbon monoxide alarm,Hair dryer,Lockbox,High chair,Free parking on premises,Pool,Crib,Long term stays allowed,Elevator,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Fire extinguisher
## 680 Shampoo,Breakfast,Essentials,Bed linens,Paid parking off premises,Long term stays allowed,Washer,Hair dryer,Dryer,First aid kit,Wifi,Hot water,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 681 Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Cable TV,Elevator,Dryer,Wifi,Hot water,Gym,Air conditioning,Pool,TV with standard cable,Iron
## 682 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Single level home,Bathtub,Hair dryer,Host greets you,Oven,Ethernet connection,Dedicated workspace,Free parking on premises,Room-darkening shades,Pool,Long term stays allowed,Patio or balcony,Pocket wifi,Refrigerator,Dryer,Microwave,Gym,Free street parking,Wifi,Beachfront,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Cable TV,Hot tub,Hot water,Stove,BBQ grill,Iron,Essentials,Kitchen,Changing table,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 683 Hangers,Bed linens,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Stove,Microwave,TV,Gym,Air conditioning,Dishes and silverware,Shared pool,Iron
## 684 Shampoo,Heating,Kitchen,Long term stays allowed,Washer,Host greets you,Dryer,Wifi,TV,Air conditioning,Free parking on premises,Fire extinguisher
## 685 Essentials,Extra pillows and blankets,Hangers,Bed linens,Heating,Long term stays allowed,Washer,Hair dryer,Cable TV,Lock on bedroom door,Elevator,Host greets you,Wifi,Hot water,Paid parking on premises,Air conditioning,Dedicated workspace,TV with standard cable,Iron
## 686 Hangers,Bed linens,Cooking basics,Washer,Bathtub,Hair dryer,Host greets you,Oven,Dedicated workspace,Pool,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Microwave,Wifi,Shampoo,Extra pillows and blankets,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 687 Essentials,Safe,Dining table,Hangers,Kitchen,Hot water kettle,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Microwave,Gym,TV,Air conditioning,Pool,Iron
## 688 Hangers,Cooking basics,Washer,Single level home,Hair dryer,Ethernet connection,Paid parking on premises,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Wifi,Shampoo,Cable TV,Hot water,Iron,Essentials,Kitchen,Air conditioning,TV with standard cable,Fire extinguisher
## 689 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Microwave,Gym,TV,Pool,Air conditioning,Dishes and silverware,Iron
## 690 Shampoo,Essentials,Heating,Kitchen,Long term stays allowed,Washer,Dryer,Wifi,TV,Air conditioning,Free parking on premises
## 691 Cleaning before checkout,Hangers,Bed linens,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,Oven,Dedicated workspace,Pool,Crib,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Cable TV,Hot tub,Hot water,Stove,Iron,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 692 Shampoo,Essentials,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Hot water,TV,Shared pool,Air conditioning,Iron
## 693 Breakfast,Essentials,Building staff,Hangers,Long term stays allowed,Washer,Hair dryer,Cable TV,Dryer,First aid kit,Wifi,Hot water,Paid parking on premises,Air conditioning,Dedicated workspace,Smoke alarm,TV with standard cable,Iron,Fire extinguisher
## 694 Cleaning before checkout,Backyard,Hangers,Bed linens,Hot water kettle,Cooking basics,Washer,Single level home,Hair dryer,Oven,Ethernet connection,Lockbox,Dedicated workspace,Free parking on premises,Pool,Lake access,Long term stays allowed,Private entrance,Elevator,Pocket wifi,Refrigerator,Dryer,Microwave,Waterfront,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Heating,Cable TV,Hot tub,Hot water,Stove,Beach essentials,BBQ grill,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 695 Backyard,Hangers,Bed linens,Washer,Hair dryer,TV,Free parking on premises,Dedicated workspace,Pool,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Wifi,Shampoo,Heating,Hot water,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 696 Hangers,Bed linens,Washer,Carbon monoxide alarm,Hair dryer,Paid parking on premises,Security cameras on property,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Wifi,Luggage dropoff allowed,Shampoo,Dishwasher,Keypad,Hot water,Essentials,Kitchen,First aid kit,Air conditioning
## 697 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Oven,Dedicated workspace,Free parking on premises,Long term stays allowed,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Shampoo,Extra pillows and blankets,Hot water,Stove,BBQ grill,Iron,Shower gel,Essentials,Air conditioning,Dishes and silverware
## 698 Hangers,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,TV,Air conditioning,Iron
## 699 Hangers,Cooking basics,Washer,Carbon monoxide alarm,Bathtub,Hair dryer,TV,Dedicated workspace,Room-darkening shades,Long term stays allowed,Private entrance,Patio or balcony,Refrigerator,Dryer,Free street parking,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Keypad,Hot water,Iron,Essentials,Kitchen,Air conditioning,Fire extinguisher
## 700 Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Elevator,Lock on bedroom door,Host greets you,Wifi,Air conditioning,Dedicated workspace,Pool
## 701 Shampoo,Essentials,Extra pillows and blankets,Hangers,Heating,Paid parking off premises,Long term stays allowed,Elevator,Lock on bedroom door,Wifi,Air conditioning,Dishes and silverware,Luggage dropoff allowed
## 702 Shampoo,Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Refrigerator,Host greets you,Wifi,Hot water,Microwave,Air conditioning,Dedicated workspace,Dishes and silverware,Iron
## 703 Building staff,Essentials,Backyard,Hangers,Kitchen,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Cable TV,Elevator,Dryer,Wifi,Free parking on premises,Air conditioning,Dedicated workspace,Smoke alarm,TV with standard cable,Iron,Fire extinguisher
## 704 Essentials,Hangers,Kitchen,Paid parking off premises,Long term stays allowed,Washer,Lock on bedroom door,Dryer,Wifi,Hot water,TV,Air conditioning
## 705 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Hair dryer,Host greets you,Oven,TV,Dedicated workspace,Pool,Security cameras on property,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Gym,Wifi,Shampoo,Extra pillows and blankets,Heating,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 706 Essentials,Coffee maker,Long term stays allowed,Washer,Luggage dropoff allowed,Bathtub,Hair dryer,Cable TV,Refrigerator,Dryer,Wifi,Gym,Air conditioning,Free parking on premises,Pool,TV with standard cable,Iron
## 707 Cleaning before checkout,Dryer \\u2013 In building,Hangers,Bed linens,Cooking basics,Bathtub,Hair dryer,Oven,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Washer \\u2013\\u00a0In building,Long term stays allowed,Private entrance,Elevator,Refrigerator,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Cable TV,Hot water,Stove,BBQ grill,Iron,Building staff,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable
## 708 Hangers,Bed linens,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Long term stays allowed,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 709 Hangers,Bed linens,Washer,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Heating,Paid parking off premises,Hot water,Iron,Building staff,Essentials,First aid kit,Air conditioning,Fire extinguisher
## 710 Hangers,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,TV,High chair,Dedicated workspace,Pool,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Stove,Iron,Building staff,Essentials,Pack \\u2019n play/Travel crib,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 711 Shampoo,Building staff,Essentials,Long term stays allowed,Hair dryer,Lock on bedroom door,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Fire extinguisher
## 712 Essentials,Security cameras on property,Hangers,Kitchen,Long term stays allowed,Washer,Bathtub,Hair dryer,Cable TV,Elevator,Dryer,Wifi,Free parking on premises,Gym,Air conditioning,Dedicated workspace,Pool,TV with standard cable,Iron,Fire extinguisher
## 713 Hangers,Heating,Kitchen,Hot water kettle,Washer,Long term stays allowed,Hair dryer,Elevator,Refrigerator,Host greets you,Dryer,Wifi,Hot water,Stove,Microwave,TV,Air conditioning,Dishes and silverware,Iron
## 714 Shampoo,Breakfast,Essentials,Building staff,Kitchen,Long term stays allowed,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm
## 715 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Private entrance,Elevator,Refrigerator,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 716 Shampoo,Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Wifi,Hot water,Air conditioning,Iron
## 717 Shampoo,Breakfast,Essentials,Security cameras on property,Building staff,Hangers,Long term stays allowed,Hair dryer,Elevator,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron
## 718 Hangers,Bed linens,Washer,Single level home,Hair dryer,Host greets you,Oven,Ethernet connection,Dedicated workspace,Free parking on premises,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Dryer,Gym,Wifi,Luggage dropoff allowed,Shampoo,Shared patio or balcony,Extra pillows and blankets,Paid parking off premises,Hot water,Stove,BBQ grill,Iron,Essentials,Window guards,Kitchen,Shared pool,Air conditioning,Dishes and silverware
## 719 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Hair dryer,TV,Dedicated workspace,Room-darkening shades,Long term stays allowed,Refrigerator,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 720 Shampoo,Breakfast,Essentials,Long term stays allowed,Washer,Hair dryer,Dryer,Wifi,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 721 Shampoo,Breakfast,Essentials,Long term stays allowed,Washer,Hair dryer,Dryer,Wifi,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 722 Shampoo,Breakfast,Essentials,Long term stays allowed,Washer,Hair dryer,Dryer,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 723 Essentials,Keypad,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,TV,Air conditioning
## 724 Shampoo,Essentials,Hangers,Bed linens,Long term stays allowed,Washer,Elevator,Lock on bedroom door,Host greets you,First aid kit,Wifi,Hot water,Gym,Ethernet connection,Air conditioning,Dedicated workspace,Pool
## 725 Shampoo,Essentials,Hangers,Long term stays allowed,Carbon monoxide alarm,First aid kit,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm
## 726 Hangers,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Paid parking on premises,Dedicated workspace,Pool,Long term stays allowed,Elevator,Gym,Wifi,Smoke alarm,Shampoo,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Fire extinguisher
## 727 Bidet,Hangers,Bed linens,Hot water kettle,Washer,Single level home,Host greets you,Dedicated workspace,Cleaning products,Long term stays allowed,Laundromat nearby,Elevator,Lock on bedroom door,Patio or balcony,Dryer,Shared outdoor olympic-sized lap pool,Wifi,Paid parking garage off premises,Luggage dropoff allowed,Shampoo,Portable fans,Heating,Hot water,Body soap,Iron,Essentials,Clothing storage: closet,Window guards,Shower gel,Fire extinguisher
## 728 Hangers,Bed linens,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,Oven,TV,Paid parking on premises,Dedicated workspace,Pool,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Dryer,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Building staff,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 729 Shampoo,Essentials,Hangers,Kitchen,Cooking basics,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Elevator,Dryer,Wifi,Gym,TV,Air conditioning,Dedicated workspace,Pool,Iron,Fire extinguisher
## 730 Hangers,Hair dryer,Host greets you,Oven,TV,Paid parking on premises,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Microwave,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 731 Hangers,Bed linens,Hair dryer,Host greets you,TV,Paid parking on premises,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Microwave,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 732 Hangers,Bed linens,Hair dryer,Host greets you,TV,Paid parking on premises,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Microwave,Wifi,Smoke alarm,Shampoo,Hot water,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 733 Shampoo,Breakfast,Essentials,Hangers,Long term stays allowed,Hair dryer,First aid kit,Wifi,Hot water,Microwave,Dishes and silverware,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 734 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Heating,Hot water,Stove,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 735 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Hair dryer,TV,Pool,Long term stays allowed,Private entrance,Refrigerator,Dryer,Microwave,Gym,Wifi,Shampoo,Extra pillows and blankets,Stove,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 736 Hangers,Bed linens,Hair dryer,Lockbox,Room-darkening shades,Cleaning products,Dedicated workspace: desk,Long term stays allowed,Body soap body soap,Drying rack for clothing,Central air conditioning,Outdoor dining area,Elevator,Free washer \\u2013 In unit,Dryer,Gym,Private hot tub,Wifi,Luggage dropoff allowed,Shampoo,Hot water,BBQ grill,Iron,43\\ HDTV with Amazon Prime Video,Netflix,Apple TV,Shower gel,Essentials,First aid kit,Shared pool,Dishes and silverware
## 737 Hangers,Bed linens,Washer,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Dishwasher,Extra pillows and blankets,Heating,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Shower gel,Fire extinguisher
## 738 Hangers,Bed linens,Cooking basics,Washer,Single level home,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Room-darkening shades,Elevator,Patio or balcony,Refrigerator,Microwave,Wifi,Smoke alarm,Children\\u2019s dinnerware,Paid parking off premises,Hot water,Essentials,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 739 Shampoo,Essentials,Smoke alarm,Hangers,Bed linens,Paid parking off premises,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Cable TV,Lock on bedroom door,Wifi,Hot water,Body soap,Air conditioning,Dedicated workspace,Shower gel,TV with standard cable,Luggage dropoff allowed
## 740 Essentials,Long term stays allowed,Washer,Private entrance,Hair dryer,Lock on bedroom door,Dryer,First aid kit,Wifi,TV,Air conditioning,Smoke alarm,Iron,Fire extinguisher
## 741 Shampoo,Essentials,Long term stays allowed,Washer,Private entrance,Hair dryer,Lock on bedroom door,Dryer,First aid kit,Wifi,TV,Air conditioning,Smoke alarm,Iron,Fire extinguisher
## 742 Shampoo,TV,Essentials,Smoke alarm,Hangers,Bed linens,Conditioner,Long term stays allowed,Smart lock,Hair dryer,Bathtub,Lock on bedroom door,Elevator,Wifi,Hot water,Body soap,Air conditioning,Shower gel,Iron,Fire extinguisher
## 743 Hangers,Cooking basics,Washer,Hair dryer,Host greets you,TV,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Dryer,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Fire extinguisher
## 744 Shampoo,Essentials,Keypad,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Elevator,Dryer,Wifi,Hot water,TV,Air conditioning
## 745 Shampoo,Breakfast,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Luggage dropoff allowed,Carbon monoxide alarm,Bathtub,Hair dryer,Lock on bedroom door,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron
## 746 Essentials,Hangers,Paid street parking off premises,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Microwave,Gym,TV,Air conditioning,Pool,Iron
## 747 Hangers,Kitchen,Paid parking off premises,Long term stays allowed,Washer,Elevator,Lock on bedroom door,Wifi,Hot water,Gym,Air conditioning,Dedicated workspace,Pool
## 748 Toaster,Hangers,Bed linens,Hot water kettle,Hair dryer,Host greets you,Ethernet connection,Outdoor furniture,Dining table,Dedicated workspace,Pool,Room-darkening shades,Shared gym in building,Wine glasses,Security cameras on property,Long term stays allowed,Laundromat nearby,Central air conditioning,Elevator,Lock on bedroom door,Refrigerator,Free washer \\u2013 In unit,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Ceiling fan,Dishwasher,Paid parking off premises,Free parking garage on premises,Hot tub,Hot water,Iron,Essentials,Private patio or balcony,First aid kit,Dishes and silverware,Fire extinguisher
## 749 Toaster,Hangers,Bed linens,Hot water kettle,Washer,Hair dryer,Host greets you,Clothing storage: closet and dresser,Shared hot tub,Ethernet connection,Shared outdoor pool,Dining table,Room-darkening shades,Dedicated workspace: desk,Wine glasses,Long term stays allowed,Laundromat nearby,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Ceiling fan,Dishwasher,Paid parking off premises,Hot water,Iron,Air conditioning,Dishes and silverware,Fire extinguisher
## 750 Hangers,Washer,Hair dryer,TV,Free parking on premises,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Building staff,Essentials,Kitchen,First aid kit,Air conditioning,Fire extinguisher
## 751 Hangers,Long term stays allowed,Washer,First aid kit,Wifi,Air conditioning,Smoke alarm,Iron,Fire extinguisher
## 752 Hangers,Washer,Carbon monoxide alarm,Hair dryer,Oven,Lockbox,Dedicated workspace,Long term stays allowed,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,Microwave,Free street parking,Wifi,Smoke alarm,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 753 Shampoo,Breakfast,Essentials,Hangers,Heating,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Cable TV,Elevator,Dryer,First aid kit,Wifi,Air conditioning,Dedicated workspace,Smoke alarm,TV with standard cable,Iron,Fire extinguisher
## 754 Shampoo,Breakfast,Hangers,Long term stays allowed,Washer,Wifi,TV,Air conditioning,Dedicated workspace
## 755 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Microwave,Gym,TV,Pool,Air conditioning,Dishes and silverware,Iron
## 756 Hangers,Cooking basics,Carbon monoxide alarm,Bathtub,Hair dryer,Oven,TV,Dedicated workspace,Free parking on premises,Long term stays allowed,Lock on bedroom door,Refrigerator,Microwave,Free street parking,Private hot tub,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Heating,Hot water,Stove,Iron,Essentials,Kitchen,Private patio or balcony,Air conditioning,Dishes and silverware
## 757 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Oven,TV,Dedicated workspace,Long term stays allowed,Lock on bedroom door,Refrigerator,Patio or balcony,Microwave,Free street parking,Wifi,Smoke alarm,Shampoo,Extra pillows and blankets,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 758 Hangers,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Hot water,TV,Air conditioning,Iron
## 759 Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,Host greets you,Oven,Ethernet connection,TV,Paid parking on premises,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Window guards,Kitchen,First aid kit,Air conditioning,Dishes and silverware
## 760 Hangers,Bed linens,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Long term stays allowed,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 761 Hangers,Bed linens,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Essentials,Kitchen,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 762 Backyard,Hangers,Washer,Host greets you,TV,High chair,Children\\u2019s books and toys,Dedicated workspace,Pool,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Gym,Wifi,Luggage dropoff allowed,Shampoo,Heating,Hot tub,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning
## 763 Hangers,Hot water kettle,Washer,Hair dryer,TV,Free parking on premises,Pool,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,Microwave,Wifi,Shampoo,Heating,Iron,Bread maker,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 764 Backyard,Hangers,Bed linens,Washer,Carbon monoxide alarm,Hair dryer,Oven,Dedicated workspace,Free parking on premises,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Cable TV,Hot water,Iron,Building staff,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 765 Building staff,Essentials,Coffee maker,Long term stays allowed,Washer,Luggage dropoff allowed,Bathtub,Hair dryer,Cable TV,Refrigerator,Dryer,Wifi,Gym,Air conditioning,Free parking on premises,Pool,TV with standard cable,Iron
## 766 Dryer \\u2013 In building,Backyard,Hangers,Bed linens,Cooking basics,Single level home,Hair dryer,Oven,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Washer \\u2013\\u00a0In building,Security cameras on property,Long term stays allowed,Refrigerator,Microwave,Baby bath,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Cable TV,Hot water,Stove,BBQ grill,Iron,Building staff,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 767 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Wifi,Free parking on premises,Air conditioning,Dedicated workspace,Iron
## 768 Hangers,Washer,Hair dryer,Host greets you,Oven,TV,Pool,Lake access,Long term stays allowed,Elevator,Lock on bedroom door,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Hot tub,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Fire extinguisher
## 769 Backyard,Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Single level home,Bathtub,Hair dryer,Ethernet connection,Paid parking on premises,Dedicated workspace,Crib,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Extra pillows and blankets,Heating,Cable TV,Hot tub,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 770 Hangers,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Long term stays allowed,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 771 Backyard,Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,Ethernet connection,Paid parking on premises,Dedicated workspace,Crib,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Extra pillows and blankets,Heating,Cable TV,Hot tub,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 772 Cleaning before checkout,Dryer \\u2013 In building,Hangers,Bed linens,Cooking basics,Single level home,Hair dryer,Bathtub,Oven,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Washer \\u2013\\u00a0In building,Long term stays allowed,Elevator,Refrigerator,Microwave,Gym,Wifi,Luggage dropoff allowed,Shampoo,Cable TV,Hot water,Stove,Body soap,BBQ grill,Iron,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable
## 773 Hangers,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,TV,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Shampoo,Heating,Hot water,Stove,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware
## 774 Shampoo,Security cameras on property,Hangers,Long term stays allowed,Luggage dropoff allowed,Hair dryer,Host greets you,Wifi,Hot water,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 775 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Dryer,Free street parking,Wifi,Luggage dropoff allowed,Dishwasher,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 776 Security cameras on property,Keypad,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,TV,Air conditioning,Dedicated workspace,Dishes and silverware,Iron
## 777 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Single level home,Hair dryer,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Elevator,Pocket wifi,Refrigerator,Dryer,Microwave,Baby bath,Gym,Wifi,Children\\u2019s dinnerware,Luggage dropoff allowed,Shampoo,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Building staff,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 778 Cleaning before checkout,Bed linens,Hot water kettle,Cooking basics,Freezer,Washer,Bathtub,Clothing storage,Host greets you,Oven,Outdoor furniture,Paid parking on premises,Dining table,Dedicated workspace,Pool,Wine glasses,Security cameras on property,Long term stays allowed,Outdoor dining area,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Extra pillows and blankets,Cable TV,Hot water,Stove,BBQ grill,Iron,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 779 Essentials,Keypad,Kitchen,Cooking basics,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Stove,TV,Air conditioning,Dedicated workspace,Dishes and silverware
## 780 Hangers,Washer,Hair dryer,Free parking on premises,Dedicated workspace,Pool,Long term stays allowed,Elevator,Lock on bedroom door,Dryer,Gym,Wifi,Shampoo,Breakfast,Cable TV,Hot tub,Iron,Building staff,Essentials,Kitchen,Air conditioning,TV with standard cable,Fire extinguisher
## 781 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Single level home,Hair dryer,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Elevator,Pocket wifi,Refrigerator,Dryer,Microwave,Baby bath,Gym,Wifi,Children\\u2019s dinnerware,Luggage dropoff allowed,Shampoo,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Building staff,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 782 Shampoo,Essentials,Security cameras on property,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Host greets you,Dryer,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron
## 783 Beachfront,Free parking on premises,Free street parking
## 784 Cleaning before checkout,Backyard,Hangers,Bed linens,Hot water kettle,Cooking basics,Freezer,Hair dryer,Bathtub,Clothing storage,Oven,Paid parking on premises,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Wine glasses,Security cameras on property,Long term stays allowed,Outdoor dining area,Private entrance,Elevator,Refrigerator,Microwave,Wifi,Smoke alarm,Shampoo,Heating,Conditioner,Cable TV,Hot water,Stove,Iron,Essentials,Babysitter recommendations,Pack \\u2019n play/Travel crib,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 785 Hangers,Bed linens,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,Ethernet connection,TV,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Elevator,Pocket wifi,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Heating,Hot water,Stove,Iron,Building staff,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware
## 786 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,Pool,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 787 Shampoo,Essentials,Security cameras on property,Long term stays allowed,Hair dryer,Wifi,Air conditioning,Smoke alarm,Iron,Fire extinguisher
## 788 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 789 Shampoo,Essentials,Long term stays allowed,Carbon monoxide alarm,Hair dryer,Elevator,Wifi,Hot water,TV,Air conditioning,Smoke alarm,Fire extinguisher
## 790 Backyard,Hangers,Coffee maker,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Free parking on premises,Pool,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 791 Bed linens,Washer,Carbon monoxide alarm,Hair dryer,Free parking on premises,Dedicated workspace,Pool,Security cameras on property,Lake access,Long term stays allowed,Elevator,Lock on bedroom door,Dryer,Gym,Wifi,Smoke alarm,Shampoo,Extra pillows and blankets,Heating,Hot tub,Hot water,Essentials,First aid kit,Air conditioning,Shower gel,Fire extinguisher
## 792 Backyard,Hangers,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Free parking on premises,Pool,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Patio or balcony,Dryer,Gym,Free street parking,Wifi,Smoke alarm,Shampoo,Keypad,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 793 Shampoo,Essentials,Hangers,Bed linens,Luggage dropoff allowed,Hair dryer,Elevator,Refrigerator,Wifi,Hot water,Pool,TV,Air conditioning,Free parking on premises,Smoke alarm,Iron
## 794 Shampoo,Essentials,Hangers,Kitchen,Cooking basics,Long term stays allowed,Washer,Elevator,Refrigerator,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Dishes and silverware,Iron
## 795 Hangers,Washer,Hair dryer,TV,Free parking on premises,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Building staff,Essentials,Kitchen,Air conditioning,Fire extinguisher
## 796 Shampoo,Essentials,Hangers,Kitchen,Cooking basics,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Elevator,Dryer,First aid kit,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 797 Hangers,Hair dryer,Host greets you,Oven,TV,Paid parking on premises,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Microwave,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 798 Cleaning before checkout,Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,Ethernet connection,Paid parking on premises,Dedicated workspace,Crib,Security cameras on property,Long term stays allowed,Private entrance,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Extra pillows and blankets,Heating,Cable TV,Hot tub,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable
## 799 Backyard,Bed linens,Cooking basics,Washer,Hair dryer,TV,Dedicated workspace,Security cameras on property,Long term stays allowed,Patio or balcony,Refrigerator,Dryer,Microwave,Wifi,Shampoo,Heating,Barbecue utensils,Stove,BBQ grill,Iron,Bread maker,Shower gel,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 800 Shampoo,Essentials,Hangers,Bed linens,Long term stays allowed,Luggage dropoff allowed,Hair dryer,Lock on bedroom door,Elevator,First aid kit,Wifi,Hot water,Lockbox,Air conditioning,Dedicated workspace,Shower gel,Iron
## 801 Hangers,Heating,Long term stays allowed,Washer,Elevator,Lock on bedroom door,Wifi,Hot water,Air conditioning,Dedicated workspace
## 802 Shampoo,Ceiling fan,Essentials,Hangers,Bed linens,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Host greets you,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Shower gel,Iron
## 803 Shampoo,Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Wifi,Free parking on premises,TV,Air conditioning,Dedicated workspace,Pool,Iron
## 804 Backyard,Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,TV,Paid parking on premises,Dedicated workspace,Pool,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Gym,Wifi,Shampoo,Extra pillows and blankets,Paid parking off premises,Hot water,Stove,BBQ grill,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 805 Backyard,Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,TV,Paid parking on premises,Dedicated workspace,Pool,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Microwave,Gym,Wifi,Shampoo,Extra pillows and blankets,Paid parking off premises,Hot water,Stove,BBQ grill,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 806 Backyard,Hangers,Bed linens,Cooking basics,Washer,Single level home,Carbon monoxide alarm,Hair dryer,Oven,Ethernet connection,TV,Paid parking on premises,Children\\u2019s books and toys,Dedicated workspace,Pool,Security cameras on property,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,Microwave,Gym,Wifi,Children\\u2019s dinnerware,Smoke alarm,Luggage dropoff allowed,Shampoo,Ceiling fan,Dishwasher,Extra pillows and blankets,Keypad,Conditioner,Paid parking off premises,Hot water,Stove,Body soap,Iron,Bread maker,Essentials,Window guards,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 807 Backyard,Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,Oven,TV,Paid parking on premises,Dedicated workspace,Pool,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Microwave,Gym,Wifi,Shampoo,Extra pillows and blankets,Paid parking off premises,Barbecue utensils,Hot water,Stove,BBQ grill,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 808 Shampoo,Ceiling fan,Essentials,Security cameras on property,Private outdoor olympic-sized pool,32\\ TV,Long term stays allowed,Lock on bedroom door,Free parking garage on premises,Free washer \\u2013 In unit,Wifi,Mini fridge,Gym,Ethernet connection,Air conditioning,Dedicated workspace,Luggage dropoff allowed
## 809 Shampoo,Essentials,Heating,Long term stays allowed,Private entrance,Hair dryer,Dryer,First aid kit,Wifi,Free parking on premises,Gym,Pool,TV,Air conditioning,Washer \\u2013\\u00a0In unit,Smoke alarm,Fire extinguisher
## 810 Hangers,Bed linens,Hot water kettle,Cooking basics,Washer,Hair dryer,Clothing storage,TV,High chair,Dining table,Crib,Long term stays allowed,Private entrance,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Shampoo,Dishwasher,Heating,Hot water,Stove,Iron,Essentials,Kitchen,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 811 Hangers,Cooking basics,Washer,Hair dryer,Lockbox,Dedicated workspace,Security cameras on property,Long term stays allowed,Lock on bedroom door,Refrigerator,Patio or balcony,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware
## 812 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Shared hot tub,TV,Outdoor furniture,Free parking on premises,Long term stays allowed,Outdoor dining area,Elevator,Gym,Wifi,Smoke alarm,Shampoo,Hot water,Body soap,Iron,Essentials,Kitchen,Shared pool,Air conditioning
## 813 Rice maker,Sound system,Hangers,Bed linens,Pool table,Hot water kettle,Cooking basics,Washer,Ping pong table,Freezer,Hair dryer,Single level home,Oven,TV,Dining table,Room-darkening shades,Cleaning products,Shared gym in building,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Microwave,Wifi,Shampoo,Free dryer \\u2013 In unit,Conditioner,Hot water,Stove,Body soap,BBQ grill,Iron,Essentials,Clothing storage: closet,Kitchen,Dishes and silverware,Shared pool,Air conditioning,Shower gel
## 814 Coffee maker,Cooking basics,Washer,Hair dryer,Fire pit,Shared hot tub,Outdoor furniture,TV,Paid parking on premises,Long term stays allowed,Outdoor dining area,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Free street parking,Wifi,Smoke alarm,Shampoo,Keypad,Hot water,BBQ grill,Essentials,Kitchen,Private fenced garden or backyard,Air conditioning
## 815 Hangers,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Lock on bedroom door,Refrigerator,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Dishwasher,Hot water,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 816 Hangers,Kitchen,Long term stays allowed,Washer,Dryer,Wifi,Air conditioning,Free parking on premises
## 817 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Single level home,Hair dryer,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Elevator,Pocket wifi,Refrigerator,Dryer,Microwave,Baby bath,Gym,Wifi,Children\\u2019s dinnerware,Luggage dropoff allowed,Shampoo,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Building staff,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 818 Essentials,Kitchen,Long term stays allowed,Elevator,Wifi,TV,Air conditioning,Dishes and silverware
## 819 Backyard,Hangers,Washer,Hair dryer,Host greets you,TV,Paid parking on premises,Dedicated workspace,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 820 Hangers,Coffee maker,Hot water kettle,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Paid parking off premises,Stove,Body soap,Iron,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 821 Hangers,Bed linens,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Hot water,Gym,TV,Air conditioning,Pool,Iron
## 822 Cleaning before checkout,Hangers,Bed linens,Washer,Single level home,Hair dryer,Free parking on premises,Dedicated workspace,Long term stays allowed,Elevator,Lock on bedroom door,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Hot tub,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning
## 823 Cleaning before checkout,Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Oven,Free parking on premises,Long term stays allowed,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Heating,Cable TV,Hot water,Iron,Essentials,Kitchen,EV charger,Air conditioning,Dishes and silverware,TV with standard cable
## 824 Hangers,Long term stays allowed,Washer,Lock on bedroom door,Dryer,First aid kit,Wifi,Air conditioning,Smoke alarm,Iron,Fire extinguisher
## 825 Shampoo,Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Lock on bedroom door,Host greets you,First aid kit,Wifi,Hot water,Free street parking,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 826 Shampoo,Breakfast,Essentials,Kitchen,Long term stays allowed,Washer,Hair dryer,Cable TV,Dryer,First aid kit,Wifi,Air conditioning,Dedicated workspace,Smoke alarm,TV with standard cable,Iron,Fire extinguisher
## 827 Backyard,Hangers,Coffee maker,Hair dryer,Host greets you,Dedicated workspace,Game console,Long term stays allowed,Patio or balcony,Refrigerator,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 828 Breakfast,Essentials,Building staff,Hangers,Long term stays allowed,Washer,Hair dryer,Cable TV,Dryer,First aid kit,Wifi,Hot water,Paid parking on premises,Air conditioning,Dedicated workspace,Smoke alarm,TV with standard cable,Iron,Fire extinguisher
## 829 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,Oven,Ethernet connection,TV,Outdoor furniture,Dedicated workspace,Free parking on premises,Long term stays allowed,Outdoor dining area,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Stove,BBQ grill,Iron,Essentials,Kitchen,Private patio or balcony,First aid kit,Dishes and silverware,Shared pool,Air conditioning,Shower gel,Fire extinguisher
## 830 Shampoo,Breakfast,Essentials,Paid parking off premises,Long term stays allowed,Washer,Hair dryer,Refrigerator,Dryer,First aid kit,Wifi,Hot water,Microwave,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 831 Long term stays allowed,Washer,Lock on bedroom door,Dryer,First aid kit,Wifi,Air conditioning,Smoke alarm,Iron,Fire extinguisher
## 832 Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Cable TV,Refrigerator,Elevator,Dryer,Wifi,Microwave,Air conditioning,TV with standard cable,Iron
## 833 Shampoo,Breakfast,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Cable TV,Elevator,Dryer,First aid kit,Wifi,Air conditioning,Dedicated workspace,Smoke alarm,TV with standard cable,Iron,Fire extinguisher
## 834 Cleaning before checkout,Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Oven,Ethernet connection,Dedicated workspace,Free parking on premises,Pool,Lake access,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Waterfront,Gym,Wifi,Beachfront,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Cable TV,Hot tub,Hot water,Stove,BBQ grill,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 835 Shampoo,Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Dryer,Wifi,Free parking on premises,TV,Air conditioning,Dedicated workspace,Iron
## 836 Shampoo,Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Dryer,Wifi,Free parking on premises,TV,Air conditioning,Dedicated workspace,Iron
## 837 Breakfast,Essentials,Hangers,Heating,Long term stays allowed,Hair dryer,Host greets you,First aid kit,Wifi,Hot water,TV,Paid parking on premises,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 838 Shampoo,Building staff,Essentials,Hangers,Paid parking off premises,Long term stays allowed,Luggage dropoff allowed,Hair dryer,Cable TV,Elevator,First aid kit,Wifi,Hot water,Air conditioning,Dedicated workspace,TV with standard cable,Iron,Fire extinguisher
## 839 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Hot water,Gym,TV,Air conditioning,Pool,Iron
## 840 Essentials,Coffee maker,Long term stays allowed,Washer,Luggage dropoff allowed,Bathtub,Hair dryer,Cable TV,Refrigerator,Dryer,Wifi,Gym,Air conditioning,Free parking on premises,Pool,TV with standard cable,Iron
## 841 Shampoo,Essentials,Hangers,Kitchen,Cooking basics,Long term stays allowed,Washer,Smart lock,Hair dryer,Lock on bedroom door,Elevator,Dryer,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Pool
## 842 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Stove,Iron,Building staff,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 843 Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Elevator,Dryer,Wifi,Gym,TV,Air conditioning,Dedicated workspace,Pool,Iron
## 844 Backyard,Hangers,Bed linens,Coffee maker,Washer,Hair dryer,Host greets you,Dedicated workspace,Game console,Long term stays allowed,Patio or balcony,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 845 Dryer \\u2013 In building,Backyard,Hangers,Bed linens,Cooking basics,Single level home,Hair dryer,Oven,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Washer \\u2013\\u00a0In building,Security cameras on property,Long term stays allowed,Laundromat nearby,Refrigerator,Microwave,Baby bath,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Cable TV,Hot water,Stove,BBQ grill,Iron,Building staff,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 846 Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 847 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Stove,Iron,Building staff,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 848 Hangers,Bed linens,Washer,Hair dryer,Free parking on premises,Dedicated workspace,Long term stays allowed,Elevator,Dryer,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Heating,Cable TV,Hot water,Iron,Building staff,Essentials,Kitchen,First aid kit,Air conditioning,TV with standard cable,Fire extinguisher
## 849 Hangers,Kitchen,Long term stays allowed,Washer,Carbon monoxide alarm,Private entrance,Elevator,Host greets you,Dryer,Wifi,Hot water,Free parking on premises,Gym,TV,Pool,Air conditioning,Dedicated workspace,Smoke alarm,Iron
## 850 Rice maker,Backyard,Hangers,Bed linens,Cooking basics,Single level home,Hair dryer,Host greets you,Oven,TV,Dedicated workspace,Pool,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Patio or balcony,Gym,Wifi,Luggage dropoff allowed,Shampoo,Breakfast,Extra pillows and blankets,Portable fans,Conditioner,Hot tub,Hot water,Stove,Beach essentials,Body soap,Iron,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Washer \\u2013\\u00a0In unit,Shower gel
## 851 Cleaning before checkout,Hangers,Bed linens,Cooking basics,Washer,Single level home,Bathtub,Hair dryer,Oven,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Cable TV,Hot water,Stove,BBQ grill,Iron,Building staff,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable
## 852 Rice maker,Bidet,Safe,Toaster,Hangers,Bed linens,Hot water kettle,Washer,Hair dryer,Bathtub,Host greets you,Ethernet connection,TV,High chair,Dedicated workspace,Electric stove,Crib,Dining table,Cleaning products,Wine glasses,Security cameras on property,Long term stays allowed,Drying rack for clothing,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Sauna,Heating,Conditioner,Free parking garage on premises,Hot water,BBQ grill,Iron,Essentials,Clothing storage: closet,Kitchen,First aid kit,Dishes and silverware,Shared pool,Air conditioning,Shower gel,Fire extinguisher
## 853 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Luggage dropoff allowed,Hair dryer,Elevator,Host greets you,Wifi,Free parking on premises,Air conditioning,Dedicated workspace,Iron
## 854 Hangers,Washer,Hair dryer,Host greets you,TV,Free parking on premises,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Dryer,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Heating,Hot tub,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Fire extinguisher
## 855 Shampoo,Building staff,Essentials,Hangers,Paid parking off premises,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Dryer,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Smoke alarm,Luggage dropoff allowed
## 856 Hangers,Bed linens,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Long term stays allowed,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 857 Keypad,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,TV,Air conditioning,Dedicated workspace,Iron
## 858 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Hair dryer,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Elevator,Pocket wifi,Refrigerator,Dryer,Microwave,Baby bath,Gym,Wifi,Children\\u2019s dinnerware,Luggage dropoff allowed,Shampoo,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Building staff,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 859 Hangers,Washer,Hair dryer,TV,Free parking on premises,Dedicated workspace,Security cameras on property,Long term stays allowed,Elevator,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Building staff,Essentials,Kitchen,Air conditioning,Fire extinguisher
## 860 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Host greets you,Dryer,First aid kit,Wifi,Hot water,TV,Air conditioning
## 861 Hangers,Bed linens,Washer,Single level home,Host greets you,Oven,Ethernet connection,Free parking on premises,Dedicated workspace,Pool,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,Gym,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Hot water,Stove,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 862 Shampoo,Breakfast,Essentials,Building staff,Kitchen,Long term stays allowed,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm
## 863 Hangers,Bed linens,Cooking basics,Washer,Bathtub,Hair dryer,TV,Pool,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Shampoo,Heating,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 864 Shampoo,Long term stays allowed,Washer,Elevator,Wifi,Hot water,Gym,Shared pool,Air conditioning
## 865 Portable fans,Hangers,Bed linens,Washer,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Hot water,Wifi,Dedicated workspace
## 866 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Stove,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 867 Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,Oven,TV,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 868 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Host greets you,TV,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Stove,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 869 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 870 Backyard,Hangers,Hot water kettle,Washer,Hair dryer,TV,Dedicated workspace,Free parking on premises,Pool,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,Microwave,Wifi,Shampoo,Heating,Hot water,Iron,Bread maker,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 871 Shampoo,Breakfast,Essentials,Hangers,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Lock on bedroom door,Dryer,Wifi,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 872 Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,Oven,Dedicated workspace,Long term stays allowed,Private entrance,Lock on bedroom door,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 873 Essentials,Long term stays allowed,Hair dryer,Elevator,Wifi,Hot water,Air conditioning,Iron
## 874 Hangers,Washer,Hair dryer,Dedicated workspace,Long term stays allowed,Patio or balcony,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Breakfast,Paid parking off premises,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 875 Shampoo,Building staff,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Luggage dropoff allowed,Hair dryer,Elevator,Dryer,Wifi,Hot water,Free parking on premises,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 876 Shampoo,Essentials,Kitchen,Washer,Hair dryer,Elevator,First aid kit,Air conditioning,Dedicated workspace,Iron
## 877 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Lock on bedroom door,Wifi,Free parking on premises,Gym,Air conditioning,Dedicated workspace,Pool
## 878 Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Microwave,Gym,TV,Air conditioning,Pool,Iron
## 879 Hangers,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,TV,Paid parking on premises,Dedicated workspace,Pool,Long term stays allowed,Elevator,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 880 Kitchen,Long term stays allowed,Private entrance,Hair dryer,Elevator,Wifi,Hot water,Gym,TV,Air conditioning,Dedicated workspace,Pool,Iron
## 881 Hangers,Hair dryer,Host greets you,Oven,TV,Paid parking on premises,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Microwave,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 882 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 883 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Wifi,Free parking on premises,Gym,TV,Air conditioning,Dedicated workspace,Iron
## 884 Shampoo,Essentials,Extra pillows and blankets,Hangers,Bed linens,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Hot water,Gym,TV,Air conditioning,Dedicated workspace,Pool,Iron,Fire extinguisher
## 885 Essentials,Hangers,Long term stays allowed,Washer,Elevator,Dryer,Wifi,Hot water,Air conditioning
## 886 Shampoo,Essentials,Coffee maker,Kitchen,Cooking basics,Long term stays allowed,Washer,Private entrance,Hair dryer,Patio or balcony,Refrigerator,Dryer,Wifi,Hot water,Microwave,Lockbox,Air conditioning,Dedicated workspace,Dishes and silverware,Iron
## 887 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Elevator,Host greets you,Refrigerator,Oven,Wifi,Hot water,Stove,Microwave,TV,Paid parking on premises,Air conditioning,Dedicated workspace,Dishes and silverware,Iron
## 888 Hangers,Bed linens,Hair dryer,Host greets you,TV,Paid parking on premises,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Microwave,Wifi,Shampoo,Hot water,Stove,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 889 Cleaning before checkout,Hangers,Bed linens,Coffee maker,Washer,Bathtub,Hair dryer,Dedicated workspace,Free parking on premises,Room-darkening shades,Pool,Security cameras on property,Long term stays allowed,Elevator,Lock on bedroom door,Pocket wifi,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Heating,Cable TV,Hot water,Iron,Building staff,Essentials,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 890 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Dishwasher,Extra pillows and blankets,Heating,Hot water,Stove,Iron,Essentials,Kitchen,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 891 Shampoo,Breakfast,Essentials,Hangers,Long term stays allowed,Hair dryer,First aid kit,Wifi,Hot water,Microwave,Dishes and silverware,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 892 Shampoo,Essentials,Hangers,Bed linens,Long term stays allowed,Hair dryer,Lock on bedroom door,Elevator,First aid kit,Wifi,Hot water,Air conditioning,Dedicated workspace,Shower gel,Luggage dropoff allowed
## 893 Shampoo,Essentials,Kitchen,Long term stays allowed,Smart lock,Hair dryer,Lock on bedroom door,First aid kit,Wifi,TV,Air conditioning,Smoke alarm,Fire extinguisher
## 894 Shampoo,Essentials,Kitchen,Long term stays allowed,Hair dryer,Lock on bedroom door,First aid kit,Wifi,TV,Air conditioning,Smoke alarm,Fire extinguisher
## 895 Shampoo,Building staff,Essentials,Hangers,Heating,Long term stays allowed,Carbon monoxide alarm,Hair dryer,Lock on bedroom door,First aid kit,Wifi,Free parking on premises,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 896 Hangers,Cooking basics,Washer,Single level home,Hair dryer,Oven,TV,Free parking on premises,Pool,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Keypad,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 897 Shampoo,Essentials,Heating,Long term stays allowed,Washer,Private entrance,Hair dryer,Dryer,First aid kit,Wifi,Pool,Gym,TV,Air conditioning,Free parking on premises,Smoke alarm,Fire extinguisher
## 898 Shampoo,Essentials,Kitchen,Long term stays allowed,Private entrance,Hair dryer,Lock on bedroom door,First aid kit,Wifi,TV,Air conditioning,Smoke alarm,Iron,Fire extinguisher
## 899 Shampoo,Essentials,Hangers,Pool table,Kitchen,Freezer,Long term stays allowed,Washer,Drying rack for clothing,Clothing storage,Lock on bedroom door,Refrigerator,Wifi,Hot water,Stove,Body soap,Air conditioning,Shower gel
## 900 Shampoo,Essentials,Kitchen,Cooking basics,Long term stays allowed,Washer,Private entrance,Elevator,Wifi,Gym,TV,Air conditioning,Pool
## 901 Cleaning before checkout,Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,Ethernet connection,Paid parking on premises,Dedicated workspace,Free parking on premises,Crib,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Extra pillows and blankets,Heating,Cable TV,Hot tub,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable
## 902 Shampoo,Smoke alarm,Security cameras on property,Long term stays allowed,Hair dryer,Wifi,TV,Air conditioning,Shower gel
## 903 Kitchen,Long term stays allowed,Washer,Carbon monoxide alarm,Lock on bedroom door,First aid kit,Wifi,Shared pool,Air conditioning,Dedicated workspace,Smoke alarm,BBQ grill
## 904 Shampoo,Essentials,Kitchen,Long term stays allowed,Washer,Smart lock,Hair dryer,Elevator,Dryer,Wifi,Hot water,Microwave,TV,Air conditioning,Dishes and silverware
## 905 Shampoo,Essentials,Keypad,Long term stays allowed,Hair dryer,Lock on bedroom door,Hot water,TV,Wifi
## 906 Hangers,Bed linens,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Private entrance,Refrigerator,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Dishwasher,Hot water,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 907 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Oven,Paid parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 908 Shampoo,Breakfast,Essentials,Paid parking off premises,Washer,Luggage dropoff allowed,Hair dryer,Patio or balcony,Dryer,First aid kit,Wifi,Hot water,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 909 Bidet,Hangers,Bed linens,Hot water kettle,Freezer,Washer,Hair dryer,TV,Electrolux stainless steel induction stove,Dining table,Dedicated workspace,Pool,Room-darkening shades,Cleaning products,Wine glasses,Long term stays allowed,Drying rack for clothing,Laundromat nearby,Refrigerator,Dryer,Microwave,Gym,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Portable fans,Hot water,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware
## 910 Hangers,Bed linens,Cooking basics,Washer,Smart lock,Hair dryer,Oven,TV,Dedicated workspace,Free parking on premises,Pool,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Dryer,Gym,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Hot water,Stove,BBQ grill,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 911 Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Hot water,Gym,Air conditioning,Dedicated workspace,Iron,Fire extinguisher
## 912 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Hot water,Gym,TV,Air conditioning,Pool,Iron
## 913 Indoor fireplace,Cleaning before checkout,Hangers,Cooking basics,Washer,Hair dryer,Free parking on premises,Dedicated workspace,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Iron,Essentials,Kitchen,First aid kit,Air conditioning
## 914 Shampoo,Heating,Kitchen,Long term stays allowed,Washer,Dryer,Wifi,TV,Air conditioning,Free parking on premises
## 915 Hangers,Bed linens,Washer,Hair dryer,Oven,Dedicated workspace,Free parking on premises,Long term stays allowed,Refrigerator,Dryer,Microwave,Wifi,Shampoo,Heating,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 916 Long term stays allowed
## 917 Backyard,Hangers,Bed linens,Coffee maker,Washer,Hair dryer,Host greets you,Dedicated workspace,Long term stays allowed,Patio or balcony,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Dishwasher,Extra pillows and blankets,Hot water,Iron,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 918 Backyard,Hangers,Coffee maker,Washer,Hair dryer,Host greets you,Dedicated workspace,Game console,Long term stays allowed,Patio or balcony,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,First aid kit,Dishes and silverware,Fire extinguisher
## 919 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Oven,Paid parking on premises,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Extra pillows and blankets,Keypad,Cable TV,Hot tub,Hot water,Stove,Iron,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 920 Long term stays allowed,Washer,Lock on bedroom door,Dryer,First aid kit,Wifi,Air conditioning,Smoke alarm,Iron,Fire extinguisher
## 921 Long term stays allowed,Washer,Lock on bedroom door,Dryer,First aid kit,Wifi,TV,Air conditioning,Smoke alarm,Iron,Fire extinguisher
## 922 Breakfast,Essentials,Building staff,Hangers,Long term stays allowed,Washer,Hair dryer,Cable TV,Dryer,Wifi,Hot water,Paid parking on premises,Air conditioning,Dedicated workspace,Smoke alarm,TV with standard cable,Iron,Fire extinguisher
## 923 Shampoo,Breakfast,Hangers,Heating,Long term stays allowed,Washer,Carbon monoxide alarm,Cable TV,Elevator,Dryer,First aid kit,Wifi,Free parking on premises,Air conditioning,Dedicated workspace,Smoke alarm,TV with standard cable,Fire extinguisher
## 924 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Cable TV,Lock on bedroom door,First aid kit,Wifi,Air conditioning,Free parking on premises,Dishes and silverware,TV with standard cable,Iron
## 925 Shampoo,Essentials,Hangers,Heating,Long term stays allowed,Washer,Hair dryer,Patio or balcony,Refrigerator,Elevator,Dryer,Wifi,Hot water,Microwave,TV,Shared pool,Air conditioning,Dedicated workspace,Iron,Fire extinguisher
## 926 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Private entrance,Hair dryer,Elevator,Dryer,Wifi,Hot water,Gym,TV,Air conditioning,Pool,Iron
## 927 Shampoo,Breakfast,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Dryer,First aid kit,Wifi,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 928 Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Host greets you,Dryer,Wifi,Air conditioning,Free parking on premises,Pool,Iron
## 929 Backyard,Hangers,Bed linens,Washer,Hair dryer,Oven,Outdoor furniture,Dedicated workspace,Free parking on premises,Long term stays allowed,Refrigerator,Dryer,Microwave,Wifi,Shampoo,Heating,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 930 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 931 Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Elevator,Dryer,Wifi,Air conditioning,Dedicated workspace,Pool,Iron
## 932 Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,Oven,Free parking on premises,Pool,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Patio or balcony,Microwave,Gym,Free street parking,Wifi,Luggage dropoff allowed,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 933 Breakfast,Essentials,Building staff,Hangers,Long term stays allowed,Washer,Hair dryer,Dryer,First aid kit,Wifi,Hot water,TV,Paid parking on premises,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 934 Backyard,Hangers,Bed linens,Washer,Hair dryer,TV,Free parking on premises,Dedicated workspace,Pool,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Shampoo,Heating,Hot water,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 935 Hangers,Bed linens,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,TV,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Heating,Hot water,Stove,Iron,Building staff,Essentials,Pack \\u2019n play/Travel crib,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 936 Building staff,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Cable TV,Elevator,Dryer,Wifi,Free parking on premises,Air conditioning,Dedicated workspace,Smoke alarm,TV with standard cable,Iron,Fire extinguisher
## 937 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Elevator,Wifi,Air conditioning,Free parking on premises,Iron
## 938 Hangers,Bed linens,Washer,Single level home,Host greets you,Ethernet connection,Free parking on premises,Pool,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Dryer,Gym,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Hot water,Stove,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 939 Rice maker,Hangers,Bed linens,Hot water kettle,Freezer,Washer,Hair dryer,Host greets you,Oven,Dining table,Dedicated workspace,Pool,Lake access,Long term stays allowed,Drying rack for clothing,Laundromat nearby,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Shampoo,Shared garden or backyard,Dishwasher,Extra pillows and blankets,Heating,Cable TV,Hot tub,Hot water,Stove,Body soap,Outdoor shower,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 940 Shampoo,Essentials,Hangers,Long term stays allowed,Washer,Carbon monoxide alarm,Elevator,Host greets you,Dryer,Wifi,Hot water,Air conditioning,Dedicated workspace,Smoke alarm
## 941 Shampoo,Building staff,Essentials,Hangers,Bed linens,Paid parking off premises,Long term stays allowed,Luggage dropoff allowed,Hair dryer,Cable TV,Elevator,First aid kit,Wifi,Hot water,Air conditioning,Dedicated workspace,TV with standard cable,Iron,Fire extinguisher
## 942 Shampoo,Building staff,Essentials,Hangers,Bed linens,Paid parking off premises,Long term stays allowed,Luggage dropoff allowed,Hair dryer,Elevator,First aid kit,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Iron,Fire extinguisher
## 943 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Shampoo,Heating,Hot water,Stove,Iron,Building staff,Essentials,Pack \\u2019n play/Travel crib,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 944 Hangers,Bed linens,Washer,Hair dryer,High chair,Free parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Dryer,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Cable TV,Hot water,Iron,Essentials,Kitchen,Air conditioning,TV with standard cable,Fire extinguisher
## 945 Shampoo,Essentials,Hangers,Private garden or backyard,Long term stays allowed,Hair dryer,First aid kit,Wifi,TV,Air conditioning,Dedicated workspace,Iron
## 946 Hangers,Washer,Hair dryer,Host greets you,TV,Pool,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Iron,Essentials,Kitchen,Air conditioning,Fire extinguisher
## 947 Rice maker,Bidet,Safe,Toaster,Hangers,Bed linens,Hot water kettle,Washer,Hair dryer,Bathtub,Host greets you,Ethernet connection,TV,High chair,Dedicated workspace,Dining table,Crib,Cleaning products,Wine glasses,Security cameras on property,Long term stays allowed,Drying rack for clothing,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Luggage dropoff allowed,Shampoo,Induction stove,Extra pillows and blankets,Heating,Conditioner,Free parking garage on premises,Hot water,Shared sauna,BBQ grill,Iron,Essentials,Clothing storage: closet,Kitchen,First aid kit,Dishes and silverware,Shared pool,Air conditioning,Shower gel,Fire extinguisher
## 948 Essentials,Security cameras on property,Hangers,Coffee maker,Heating,Washer,Dryer,Wifi,Air conditioning,Iron
## 949 Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Carbon monoxide alarm,Elevator,Dryer,First aid kit,Wifi,Free parking on premises,Paid parking on premises,Air conditioning,Dedicated workspace,Smoke alarm,Iron
## 950 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,TV,Dedicated workspace,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 951 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Stove,Iron,Building staff,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 952 Shampoo,Building staff,Essentials,Hair dryer,Lock on bedroom door,Wifi,TV,Air conditioning,Smoke alarm,Fire extinguisher
## 953 Shampoo,Building staff,Essentials,Long term stays allowed,Hair dryer,Lock on bedroom door,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Fire extinguisher
## 954 Shampoo,Building staff,Essentials,Long term stays allowed,Hair dryer,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Fire extinguisher
## 955 Shampoo,Building staff,Essentials,Hangers,Paid parking off premises,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Elevator,Dryer,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Smoke alarm,Luggage dropoff allowed
## 956 Shampoo,Building staff,Essentials,Hangers,Paid parking off premises,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Elevator,Dryer,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Smoke alarm,Luggage dropoff allowed
## 957 Hangers,Coffee maker,Cooking basics,Washer,Hair dryer,Oven,TV,Paid parking on premises,Dedicated workspace,Pool,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Dishwasher,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 958 Shampoo,Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Dryer,Wifi,Hot water,Free parking on premises,TV,Air conditioning,Dedicated workspace,Iron
## 959 Shampoo,Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Patio or balcony,Dryer,Wifi,Free parking on premises,TV,Air conditioning,Dedicated workspace,Iron
## 960 Toaster,Sound system,Safe,Backyard,Cleaning before checkout,Hangers,Bed linens,Record player,Hot water kettle,Freezer,Washer,Cooking basics,Bathtub,Hair dryer,Clothing storage,Host greets you,Oven,Outdoor furniture,High chair,Children\\u2019s books and toys,Dedicated workspace,Crib,Dining table,Free parking on premises,Pool,Wine glasses,Game console,Long term stays allowed,Outdoor dining area,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Baby bath,Gym,Wifi,Children\\u2019s dinnerware,Smoke alarm,Board games,Luggage dropoff allowed,Shampoo,Breakfast,Dishwasher,Extra pillows and blankets,Heating,Conditioner,Cable TV,Hot tub,Hot water,Stove,Body soap,BBQ grill,Iron,Essentials,Babysitter recommendations,Pack \\u2019n play/Travel crib,Kitchen,Private patio or balcony,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 961 Shampoo,Breakfast,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Luggage dropoff allowed,Hair dryer,Lock on bedroom door,Host greets you,Dryer,First aid kit,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Iron
## 962 Indoor fireplace,Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Host greets you,TV,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Stove,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 963 Hangers,Cooking basics,Washer,Single level home,Hair dryer,Host greets you,Dedicated workspace,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Essentials,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 964 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,High chair,Dedicated workspace,Pool,Crib,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Refrigerator,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Stove,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 965 Shampoo,Essentials,Kitchen,Long term stays allowed,Wifi,Hot water,Gym,TV,Air conditioning,Pool
## 966 Hangers,Washer,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Elevator,Dryer,Gym,Wifi,Smoke alarm,Shampoo,Keypad,Hot water,Iron,Essentials,Kitchen,Air conditioning
## 967 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Oven,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Cable TV,Hot water,Stove,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 968 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 969 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Shampoo,Heating,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 970 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 971 Backyard,Bed linens,Washer,Host greets you,Oven,TV,Pool,Long term stays allowed,Private entrance,Elevator,Patio or balcony,Refrigerator,Dryer,Gym,Wifi,Luggage dropoff allowed,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 972 Toaster,Sound system,Safe,Backyard,Cleaning before checkout,Hangers,Bed linens,Hot water kettle,Freezer,Coffee maker,Washer,Cooking basics,Bathtub,Hair dryer,Oven,Outdoor furniture,Paid parking on premises,High chair,Dedicated workspace,Dining table,Crib,Free parking on premises,Pool,Wine glasses,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Baby bath,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Dishwasher,Extra pillows and blankets,Conditioner,Cable TV,Hot water,Stove,Body soap,Iron,Essentials,Babysitter recommendations,Pack \\u2019n play/Travel crib,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 973 Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Stove,Microwave,TV,Gym,Air conditioning,Dedicated workspace,Smoke alarm,Pool,Iron
## 974 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Elevator,Dryer,Wifi,Hot tub,Gym,Air conditioning,Dedicated workspace,Pool,Iron
## 975 Shampoo,Breakfast,Essentials,Security cameras on property,Long term stays allowed,Washer,Hair dryer,Dryer,Wifi,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 976 Shampoo,Breakfast,Essentials,Security cameras on property,Long term stays allowed,Washer,Hair dryer,Patio or balcony,Dryer,Wifi,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 977 Hangers,Bed linens,Freezer,Cooking basics,Hair dryer,TV,Dedicated workspace,Washer \\u2013\\u00a0In building,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Hot water,Stove,Iron,Essentials,Kitchen,Shared pool,Air conditioning,Fire extinguisher
## 978 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Hot water,Gym,TV,Air conditioning,Pool,Iron
## 979 Shampoo,Essentials,Kitchen,Long term stays allowed,Washer,Elevator,Lock on bedroom door,Free parking on premises,Hot water,Wifi,Dedicated workspace,Iron
## 980 Shampoo,Essentials,Hangers,Kitchen,Cooking basics,Long term stays allowed,Washer,Hair dryer,Dryer,Wifi,TV,Lockbox,Air conditioning,Dedicated workspace,Iron
## 981 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Hot water,Gym,TV,Air conditioning,Pool,Iron
## 982 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Single level home,Hair dryer,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Elevator,Pocket wifi,Refrigerator,Dryer,Microwave,Baby bath,Gym,Wifi,Children\\u2019s dinnerware,Luggage dropoff allowed,Shampoo,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Building staff,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 983 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,Pool,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 984 Hangers,Cooking basics,Washer,Hair dryer,TV,Pool,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 985 Cleaning before checkout,Coffee maker,Washer,Carbon monoxide alarm,Hair dryer,Dedicated workspace,Long term stays allowed,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Keypad,Heating,Paid parking off premises,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Fire extinguisher
## 986 Shampoo,Smoke alarm,Hangers,Bed linens,Kitchen,Long term stays allowed,Washer,Private entrance,Hair dryer,Elevator,Dryer,First aid kit,Wifi,Pool,Gym,TV,Air conditioning,Dedicated workspace,Shower gel,Iron
## 987 Shampoo,Essentials,Heating,Long term stays allowed,Carbon monoxide alarm,First aid kit,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm
## 988 Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Dryer,Wifi,TV,Lockbox,Air conditioning,Iron
## 989 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 990 Backyard,Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Smart lock,Carbon monoxide alarm,Hair dryer,Oven,Ethernet connection,TV,Paid parking on premises,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Extra pillows and blankets,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 991 Shampoo,Essentials,Hangers,Bed linens,Luggage dropoff allowed,Hair dryer,Elevator,Refrigerator,Wifi,Hot water,Pool,TV,Air conditioning,Free parking on premises,Smoke alarm,Iron
## 992 Essentials,Heating,Long term stays allowed,Washer,Elevator,Wifi,Hot water,TV,Air conditioning,Dishes and silverware
## 993 Essentials,Hangers,Keypad,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,TV,Air conditioning,Dedicated workspace
## 994 Essentials,Hangers,Long term stays allowed,Washer,Private entrance,Hair dryer,Lock on bedroom door,Patio or balcony,Dryer,First aid kit,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Iron,Fire extinguisher
## 995 Shampoo,Essentials,Hangers,Bed linens,Luggage dropoff allowed,Hair dryer,Elevator,Refrigerator,Wifi,Hot water,Pool,TV,Air conditioning,Free parking on premises,Smoke alarm,Iron
## 996 Essentials,Heating,Paid parking off premises,Long term stays allowed,Elevator,Lock on bedroom door,Wifi,Air conditioning,Luggage dropoff allowed
## 997 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Dedicated workspace,Free parking on premises,Pool,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Extra pillows and blankets,Heating,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 998 Hangers,Washer,Carbon monoxide alarm,Hair dryer,TV,Lockbox,Dedicated workspace,Pool,Long term stays allowed,Elevator,Dryer,Gym,Wifi,Smoke alarm,Shampoo,Hot tub,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 999 Hangers,Hot water kettle,Cooking basics,Washer,Hair dryer,TV,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Shampoo,Paid parking off premises,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1000 Shampoo,Breakfast,Hangers,Long term stays allowed,Hair dryer,First aid kit,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 1001 Shampoo,Essentials,Hangers,Kitchen,Cooking basics,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Elevator,Dryer,Wifi,Pool,Gym,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 1002 Essentials,Security cameras on property,Hangers,Long term stays allowed,Washer,Single level home,Hair dryer,Lock on bedroom door,Elevator,First aid kit,Wifi,Hot water,Microwave,Oven,Paid parking on premises,Air conditioning,Dedicated workspace,Dishes and silverware,Iron
## 1003 Hangers,Bed linens,Hair dryer,Host greets you,TV,Paid parking on premises,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Microwave,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1004 Shampoo,Essentials,Long term stays allowed,Washer,Private entrance,Hair dryer,Lock on bedroom door,Elevator,Dryer,Wifi,Hot water,Gym,Air conditioning,Free parking on premises,Pool
## 1005 Hangers,Hair dryer,Host greets you,Oven,TV,Paid parking on premises,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Microwave,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1006 Cleaning before checkout,Hangers,Coffee maker,Washer,Hair dryer,TV,Free parking on premises,Long term stays allowed,Elevator,Lock on bedroom door,Microwave,Gym,Free street parking,Wifi,Shampoo,Heating,Hot water,Iron,Essentials,Kitchen,First aid kit,Shared pool,Air conditioning
## 1007 Breakfast,Essentials,Long term stays allowed,Hair dryer,Wifi,Air conditioning,Dedicated workspace,Iron,Fire extinguisher
## 1008 Hangers,Bed linens,Washer,Carbon monoxide alarm,Hair dryer,Clothing storage,Host greets you,Shared hot tub,Dedicated workspace,Cleaning products,Security cameras on property,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Extra pillows and blankets,Portable fans,Conditioner,Hot water,Stove,Body soap,Iron,Essentials,Kitchen,First aid kit,Shared pool,Air conditioning,Dishes and silverware
## 1009 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1010 Shampoo,Essentials,Long term stays allowed,Washer,Lock on bedroom door,Wifi,Hot water,Air conditioning
## 1011 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Ethernet connection,TV,Dedicated workspace,Pool,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Microwave,Gym,Wifi,Shampoo,Extra pillows and blankets,Hot water,Stove,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1012 Shampoo,Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Dryer,Wifi,Free parking on premises,TV,Air conditioning,Dedicated workspace,Pool,Iron
## 1013 Hangers,Cooking basics,Hair dryer,Lockbox,Electric stove,Dedicated workspace,Security cameras on property,Long term stays allowed,Lock on bedroom door,Refrigerator,Dryer \\u2013\\u00a0In unit,Patio or balcony,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Washer \\u2013\\u00a0In unit,Dishes and silverware
## 1014 Shampoo,Essentials,Smoke alarm,Hangers,Bed linens,Paid parking off premises,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Cable TV,Lock on bedroom door,Wifi,Hot water,Body soap,Air conditioning,Dedicated workspace,Shower gel,TV with standard cable,Luggage dropoff allowed
## 1015 Shampoo,Building staff,Essentials,Hangers,Heating,Long term stays allowed,Carbon monoxide alarm,Hair dryer,Lock on bedroom door,First aid kit,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 1016 Hangers,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Microwave,TV,Air conditioning,Dishes and silverware,Iron
## 1017 Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Elevator,Wifi,Hot water,Gym,Pool,TV,Air conditioning,Smoke alarm
## 1018 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,High chair,Crib,Long term stays allowed,Private entrance,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Shampoo,Dishwasher,Heating,Hot water,Stove,Iron,Essentials,Kitchen,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 1019 Cooking basics,Washer,Hair dryer,TV,High chair,Free parking on premises,Pool,Crib,Long term stays allowed,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Heating,Hot water,Stove,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 1020 Hangers,Coffee maker,Cooking basics,Washer,Single level home,Hair dryer,Oven,TV,Paid parking on premises,Dedicated workspace,Security cameras on property,Game console,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,Microwave,Wifi,Shampoo,Dishwasher,Heating,Hot water,Stove,Iron,Essentials,Window guards,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 1021 Shampoo,Essentials,Security cameras on property,Hangers,Kitchen,Long term stays allowed,Washer,Smart lock,Carbon monoxide alarm,Hair dryer,Elevator,Dryer,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 1022 Shampoo,Cleaning products,Essentials,Heating,Kitchen,Cooking basics,Washer,Long term stays allowed,Hair dryer,Bathtub,Lock on bedroom door,Wifi,Hot water,Free parking on premises,Dishes and silverware,Air conditioning,Dedicated workspace,Shower gel
## 1023 Hangers,Coffee maker,Washer,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Pool,Long term stays allowed,Elevator,Lock on bedroom door,Dryer,Gym,Wifi,Smoke alarm,Shampoo,Hot tub,Hot water,Iron,Essentials,Air conditioning,Fire extinguisher
## 1024 Essentials,Hangers,Heating,Kitchen,Cooking basics,Washer,Long term stays allowed,Elevator,Host greets you,Dryer,Wifi,Gym,TV,Air conditioning,Dedicated workspace,Pool,Iron
## 1025 Shampoo,Building staff,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Elevator,Dryer,Wifi,TV,Air conditioning,Dedicated workspace,Iron,Fire extinguisher
## 1026 Security cameras on property,Long term stays allowed,Washer,Lock on bedroom door,Wifi,Air conditioning
## 1027 Hangers,Washer,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Elevator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Heating,Mini fridge,Stove,Iron,Building staff,Essentials,Kitchen,Air conditioning
## 1028 Hangers,Bed linens,Hot water kettle,Freezer,Washer,Bathtub,Hair dryer,Dining table,Dedicated workspace,Long term stays allowed,Drying rack for clothing,Private entrance,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Portable fans,Heating,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Essentials,Clothing storage: closet,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 1029 Shampoo,Kitchen,Long term stays allowed,Washer,Smart lock,Hair dryer,Dryer,Wifi,Hot water,TV,Air conditioning,Smoke alarm,Fire extinguisher
## 1030 Shampoo,Essentials,Kitchen,Long term stays allowed,Washer,Smart lock,Hair dryer,Lock on bedroom door,Elevator,Dryer,Wifi,Hot water,TV,Air conditioning
## 1031 Cleaning before checkout,Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Hair dryer,Ethernet connection,Paid parking on premises,Lockbox,Dedicated workspace,Pool,Long term stays allowed,Elevator,Lock on bedroom door,Pocket wifi,Refrigerator,Dryer,Patio or balcony,Microwave,Waterfront,Gym,Wifi,Beachfront,Luggage dropoff allowed,Shampoo,Dishwasher,Extra pillows and blankets,Paid parking off premises,Cable TV,Hot tub,Hot water,Stove,Iron,Essentials,Kitchen,EV charger,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 1032 Shampoo,Essentials,Security cameras on property,Hangers,Paid parking off premises,Paid parking on premises,Long term stays allowed,Hair dryer,Cable TV,Elevator,Host greets you,First aid kit,Wifi,Hot water,Shared pool,Air conditioning,Dedicated workspace,TV with standard cable,Iron
## 1033 Hangers,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,Free parking on premises,Dedicated workspace,Pool,Long term stays allowed,Elevator,Lock on bedroom door,Dryer,Gym,Wifi,Smoke alarm,Shampoo,Heating,Cable TV,Hot tub,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,TV with standard cable,Fire extinguisher
## 1034 Hangers,Bed linens,Hot water kettle,Cooking basics,Washer,Oven,Paid parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1035 Shampoo,Essentials,Backyard,Heating,Kitchen,Long term stays allowed,Washer,Lock on bedroom door,Hot water,Free street parking,TV,Lockbox,Air conditioning,Free parking on premises
## 1036 Essentials,Hangers,Long term stays allowed,Lock on bedroom door,Wifi,Hot water,Air conditioning,Dedicated workspace
## 1037 Shampoo,Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Cable TV,Elevator,Wifi,Hot tub,Gym,Air conditioning,Pool,TV with standard cable,Fire extinguisher
## 1038 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 1039 Shampoo,Building staff,Essentials,Long term stays allowed,Cable TV,Elevator,Wifi,Hot water,Gym,Air conditioning,Free parking on premises,Pool,TV with standard cable
## 1040 Hangers,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,Paid parking on premises,High chair,Dedicated workspace,Free parking on premises,Long term stays allowed,Lock on bedroom door,Refrigerator,Microwave,Gym,Free street parking,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Paid parking off premises,Cable TV,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 1041 Essentials,Hangers,Bed linens,Kitchen,Long term stays allowed,Washer,Elevator,Refrigerator,Dryer,Oven,Wifi,Hot water,Stove,Pool,TV,Air conditioning,Free parking on premises,Dishes and silverware,Iron
## 1042 Breakfast,Essentials,Security cameras on property,Long term stays allowed,Washer,Dryer,First aid kit,Wifi,Air conditioning,Smoke alarm,Fire extinguisher
## 1043 Essentials,Long term stays allowed,Washer,Dryer,First aid kit,Wifi,Air conditioning,Smoke alarm,Fire extinguisher
## 1044 Hangers,Washer,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Pool,Long term stays allowed,Elevator,Dryer,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Keypad,Hot water,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Fire extinguisher
## 1045 Shampoo,Breakfast,Essentials,Hangers,Long term stays allowed,Washer,Hair dryer,Host greets you,Dryer,Wifi,Hot water,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 1046 Shampoo,Breakfast,Essentials,Hangers,Long term stays allowed,Washer,Hair dryer,Host greets you,Dryer,Wifi,Hot water,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 1047 Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Cable TV,Elevator,Dryer,Wifi,Hot water,Air conditioning,TV with standard cable,Iron
## 1048 Long term stays allowed,Washer,Lock on bedroom door,Dryer,First aid kit,Wifi,Air conditioning,Smoke alarm,Iron,Fire extinguisher
## 1049 Coffee maker,Cooking basics,Washer,Hair dryer,Oven,Paid parking on premises,Dedicated workspace,Lake access,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Microwave,Wifi,Shampoo,Extra pillows and blankets,Cable TV,Iron,Essentials,Kitchen,Air conditioning,TV with standard cable
## 1050 Essentials,Kitchen,Long term stays allowed,Washer,Elevator,Refrigerator,Wifi,Microwave,Air conditioning,Pool
## 1051 Shampoo,Breakfast,Essentials,Hangers,Long term stays allowed,Dryer,Wifi,Air conditioning,Smoke alarm,Iron,Fire extinguisher
## 1052 Shampoo,Breakfast,Essentials,Kitchen,Long term stays allowed,Washer,Hair dryer,Cable TV,Dryer,First aid kit,Wifi,Microwave,Air conditioning,Dedicated workspace,Smoke alarm,TV with standard cable,Iron,Fire extinguisher
## 1053 Breakfast,Essentials,Building staff,Hangers,Long term stays allowed,Washer,Hair dryer,Cable TV,Dryer,First aid kit,Wifi,Hot water,Paid parking on premises,Air conditioning,Dedicated workspace,Smoke alarm,TV with standard cable,Iron,Fire extinguisher
## 1054 Breakfast,Essentials,Building staff,Hangers,Long term stays allowed,Washer,Hair dryer,Cable TV,Dryer,First aid kit,Wifi,Hot water,Paid parking on premises,Air conditioning,Dedicated workspace,Smoke alarm,TV with standard cable,Iron,Fire extinguisher
## 1055 Shampoo,Breakfast,Indoor fireplace,Building staff,Hangers,Long term stays allowed,Washer,Hair dryer,Dryer,Wifi,Hot water,Air conditioning,Smoke alarm,Iron,Fire extinguisher
## 1056 Essentials,Hangers,Kitchen,Paid parking off premises,Long term stays allowed,Washer,Elevator,Lock on bedroom door,Wifi,Hot water,Air conditioning
## 1057 Hangers,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,Oven,Shared hot tub,TV,Outdoor furniture,Dedicated workspace,Free parking on premises,Private pool,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Hot water,Stove,BBQ grill,Iron,Essentials,Kitchen,Private patio or balcony,Air conditioning,Fire extinguisher
## 1058 Shampoo,Breakfast,Hangers,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron
## 1059 Hangers,Washer,Smart lock,Carbon monoxide alarm,Hair dryer,Oven,Dedicated workspace,Security cameras on property,Long term stays allowed,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,Microwave,Free street parking,Wifi,Smoke alarm,Luggage dropoff allowed,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 1060 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Dryer,TV,Wifi,Free parking on premises
## 1061 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 1062 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Hot water,Gym,TV,Air conditioning,Pool,Iron
## 1063 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Hot water,Gym,TV,Shared pool,Air conditioning,Iron
## 1064 Backyard,Hangers,Bed linens,Washer,Hair dryer,TV,Free parking on premises,Pool,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Shampoo,Heating,Hot water,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1065 Hangers,Bed linens,Cooking basics,Washer,Oven,Paid parking on premises,Dedicated workspace,Pool,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Hot tub,Hot water,Stove,BBQ grill,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1066 Shampoo,Essentials,Cleaning before checkout,Hangers,Keypad,Kitchen,Washer,Elevator,Lock on bedroom door,Refrigerator,Wifi,Hot water,TV,Paid parking on premises,Air conditioning,Dedicated workspace,Iron
## 1067 Shampoo,Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Elevator,First aid kit,Wifi,TV,Air conditioning,Dedicated workspace,Iron,Fire extinguisher
## 1068 Shampoo,Breakfast,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Cable TV,Elevator,Dryer,Wifi,Free parking on premises,Hot tub,Gym,Air conditioning,Dedicated workspace,Pool,TV with standard cable,Iron
## 1069 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,Dedicated workspace,Pool,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Shampoo,Extra pillows and blankets,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1070 Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Cable TV,Refrigerator,Elevator,Dryer,Wifi,Hot water,Microwave,Air conditioning,TV with standard cable,Iron
## 1071 Backyard,Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,TV,Dedicated workspace,Free parking on premises,Room-darkening shades,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Shampoo,Heating,Hot water,Stove,BBQ grill,Iron,Building staff,Essentials,Kitchen,Private patio or balcony,Shared pool,Air conditioning,Dishes and silverware,Fire extinguisher
## 1072 Shampoo,Essentials,Hangers,Bed linens,Kitchen,Cooking basics,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Refrigerator,Oven,Free parking on premises,Microwave,Stove,TV,Air conditioning,Dedicated workspace,Dishes and silverware,Iron
## 1073 Shampoo,Essentials,Hangers,Kitchen,Cooking basics,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Lock on bedroom door,Elevator,Wifi,Free parking on premises,Gym,Pool,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron
## 1074 Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Elevator,Host greets you,Dryer,Wifi,Gym,TV,Air conditioning,Dedicated workspace,Pool,Iron
## 1075 Breakfast,Essentials,Building staff,Hangers,Heating,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Dryer,First aid kit,Wifi,Hot water,TV,Paid parking on premises,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 1076 Shampoo,Breakfast,Essentials,Building staff,Hangers,Long term stays allowed,Washer,Hair dryer,Dryer,First aid kit,Wifi,Hot water,Free street parking,TV,Paid parking on premises,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 1077 Shampoo,Breakfast,Essentials,Hangers,Heating,Kitchen,Paid parking off premises,Washer,Long term stays allowed,Hair dryer,Dryer,First aid kit,Wifi,Hot water,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 1078 Hangers,Washer,Hair dryer,Host greets you,Free parking on premises,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Heating,Cable TV,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,TV with standard cable,Fire extinguisher
## 1079 Shampoo,Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Elevator,Lock on bedroom door,Wifi,Free parking on premises,Air conditioning,Dedicated workspace,Iron
## 1080 Hangers,Bed linens,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Long term stays allowed,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Essentials,Air conditioning,Shower gel,Fire extinguisher
## 1081 Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Wifi,Air conditioning,Dedicated workspace,Fire extinguisher
## 1082 Hangers,Washer,Hair dryer,Host greets you,TV,Paid parking on premises,Dedicated workspace,Pool,Long term stays allowed,Elevator,Dryer,Gym,Wifi,Shampoo,Breakfast,Paid parking off premises,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning
## 1083 Essentials,Hangers,Bed linens,Kitchen,Paid parking off premises,Long term stays allowed,Washer,Elevator,Lock on bedroom door,Wifi,Hot water,Air conditioning,Dedicated workspace
## 1084 Hangers,Kitchen,Long term stays allowed,Washer,Elevator,Lock on bedroom door,Wifi,Air conditioning,Dedicated workspace
## 1085 Hangers,Bed linens,Washer,Carbon monoxide alarm,Hair dryer,Free parking on premises,Dedicated workspace,Long term stays allowed,Elevator,Dryer,Wifi,Smoke alarm,Extra pillows and blankets,Cable TV,Hot water,Iron,Building staff,Essentials,Kitchen,Air conditioning,TV with standard cable,Fire extinguisher
## 1086 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Luggage dropoff allowed,Hair dryer,Host greets you,Dryer,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Iron,Fire extinguisher
## 1087 Cleaning before checkout,Backyard,Hangers,Bed linens,Washer,Hair dryer,Free parking on premises,Dedicated workspace,Room-darkening shades,Game console,Long term stays allowed,Lock on bedroom door,Dryer,Beachfront,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Cable TV,Hot water,Iron,Essentials,Air conditioning,TV with standard cable
## 1088 Essentials,Coffee maker,Long term stays allowed,Washer,Luggage dropoff allowed,Bathtub,Hair dryer,Cable TV,Refrigerator,Dryer,Wifi,Gym,Air conditioning,Free parking on premises,Pool,TV with standard cable,Iron
## 1089 Hangers,Bed linens,Washer,Hair dryer,Oven,Dedicated workspace,Free parking on premises,Long term stays allowed,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Shampoo,Heating,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 1090 Essentials,Backyard,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Elevator,Refrigerator,Dryer,Wifi,Pool,Gym,TV,Air conditioning,Dedicated workspace,Dishes and silverware,Iron
## 1091 Hangers,Cooking basics,Washer,Hair dryer,Host greets you,TV,Paid parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Refrigerator,Microwave,Luggage dropoff allowed,Shampoo,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware
## 1092 Shampoo,Breakfast,Essentials,Hangers,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Elevator,Dryer,First aid kit,Wifi,Air conditioning,Smoke alarm,Iron,Fire extinguisher
## 1093 Hangers,Washer,Hair dryer,TV,Lockbox,Paid parking on premises,Dedicated workspace,Security cameras on property,Long term stays allowed,Dryer,Wifi,Smoke alarm,Shampoo,Breakfast,Paid parking off premises,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Fire extinguisher
## 1094 Backyard,Hangers,Hot water kettle,Cooking basics,Washer,Bathtub,Host greets you,Electric stove,Dedicated workspace,Private pool,Long term stays allowed,Outdoor dining area,Elevator,Refrigerator,Microwave,Free street parking,Luggage dropoff allowed,32\\ TV,Free parking garage on premises,Hot water,BBQ grill,Iron,Essentials,Kitchen,Private patio or balcony,Air conditioning,Dishes and silverware
## 1095 Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,Oven,TV,Dedicated workspace,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1096 Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Elevator,Host greets you,Dryer,Wifi,Hot tub,Gym,TV,Air conditioning,Dedicated workspace,Pool,Iron
## 1097 Hangers,Washer,Smart lock,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Pool,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Paid parking off premises,Hot water,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 1098 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1099 Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1100 Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1101 Hangers,Bed linens,Washer,Carbon monoxide alarm,Hair dryer,Free parking on premises,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Extra pillows and blankets,Cable TV,Hot water,Iron,Building staff,Essentials,Kitchen,Air conditioning,TV with standard cable,Fire extinguisher
## 1102 Building staff,Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Free parking on premises,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 1103 Cleaning before checkout,Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,Ethernet connection,Paid parking on premises,Dedicated workspace,Crib,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Extra pillows and blankets,Heating,Cable TV,Hot tub,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable
## 1104 Cleaning before checkout,Backyard,Bed linens,Hot water kettle,Cooking basics,Freezer,Washer,Bathtub,Clothing storage,Host greets you,Outdoor furniture,Paid parking on premises,Dining table,Dedicated workspace,Pool,Wine glasses,Long term stays allowed,Outdoor dining area,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Extra pillows and blankets,Cable TV,Hot water,Stove,BBQ grill,Iron,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 1105 Building staff,Security cameras on property,Hangers,Dedicated workspace,Paid parking off premises,Luggage dropoff allowed,Carbon monoxide alarm,Elevator,First aid kit,Wifi,Children\\u2019s books and toys,Smoke alarm,Iron,Fire extinguisher
## 1106 Shampoo,Building staff,Essentials,Long term stays allowed,Hair dryer,Wifi,TV,Air conditioning,Smoke alarm,Fire extinguisher
## 1107 Shampoo,Building staff,Essentials,Long term stays allowed,Hair dryer,Lock on bedroom door,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Fire extinguisher
## 1108 Shampoo,Building staff,Essentials,Long term stays allowed,Hair dryer,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Fire extinguisher
## 1109 Shampoo,Building staff,Essentials,Long term stays allowed,Hair dryer,Lock on bedroom door,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Fire extinguisher
## 1110 Shampoo,Building staff,Essentials,Hangers,Long term stays allowed,Lock on bedroom door,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Fire extinguisher
## 1111 Shampoo,Building staff,Essentials,Long term stays allowed,Hair dryer,Lock on bedroom door,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Fire extinguisher
## 1112 Essentials,Hangers,Kitchen,Paid parking off premises,Long term stays allowed,Washer,Lock on bedroom door,Dryer,Wifi,Hot water,Air conditioning,Dedicated workspace,Iron
## 1113 Shampoo,Essentials,Extra pillows and blankets,Hangers,Kitchen,Long term stays allowed,Washer,Private entrance,Hair dryer,Lock on bedroom door,Elevator,Host greets you,Wifi,Hot water,Free parking on premises,Ethernet connection,Air conditioning,Dedicated workspace,Iron
## 1114 Hangers,Bed linens,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,Dedicated workspace,Security cameras on property,Long term stays allowed,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,Microwave,Free street parking,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Paid parking off premises,Hot water,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 1115 Shampoo,Building staff,Essentials,Hangers,Paid parking off premises,Long term stays allowed,Hair dryer,Lock on bedroom door,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Smoke alarm,Luggage dropoff allowed
## 1116 Shampoo,Building staff,Essentials,Paid parking off premises,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Elevator,Dryer,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Smoke alarm,Luggage dropoff allowed
## 1117 Shampoo,Building staff,Essentials,Hangers,Paid parking off premises,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Dryer,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Smoke alarm,Luggage dropoff allowed
## 1118 Backyard,Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Host greets you,Oven,TV,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Extra pillows and blankets,Paid parking off premises,Hot water,Stove,Iron,Essentials,Window guards,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 1119 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Carbon monoxide alarm,Dryer,First aid kit,Wifi,Free parking on premises,Air conditioning,Dedicated workspace,Smoke alarm,Fire extinguisher
## 1120 Shampoo,Essentials,Long term stays allowed,Washer,Dryer,Wifi,Gym,Air conditioning,Free parking on premises,Pool
## 1121 Hangers,Bed linens,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Long term stays allowed,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Iron,Essentials,Kitchen,Air conditioning,Shower gel,Fire extinguisher
## 1122 Cleaning before checkout,Bed linens,Hot water kettle,Cooking basics,Freezer,Washer,Bathtub,Clothing storage,Host greets you,Outdoor furniture,Dining table,Dedicated workspace,Pool,Wine glasses,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Extra pillows and blankets,Cable TV,Hot water,Stove,BBQ grill,Iron,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 1123 Hangers,Cooking basics,Washer,Hair dryer,Host greets you,TV,Paid parking on premises,Dedicated workspace,Free parking on premises,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Heating,Hot water,Stove,Iron,Essentials,Kitchen,EV charger,First aid kit,Air conditioning,Dishes and silverware
## 1124 Essentials,Keypad,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Hot water,TV,Paid parking on premises,Air conditioning,Dedicated workspace,Iron
## 1125 Shampoo,Essentials,Hangers,Kitchen,Cooking basics,Long term stays allowed,Washer,Cable TV,Lock on bedroom door,Refrigerator,Host greets you,Dryer,Oven,Wifi,Hot water,Stove,Microwave,Air conditioning,TV with standard cable,Iron
## 1126 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Elevator,First aid kit,Wifi,Hot water,TV,Paid parking on premises,Air conditioning,Dedicated workspace,Iron
## 1127 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,Dedicated workspace,Pool,Crib,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 1128 Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Private entrance,Elevator,Lock on bedroom door,Dryer,Wifi,Free parking on premises,Air conditioning,Dedicated workspace,Iron
## 1129 Backyard,Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Hair dryer,Host greets you,Oven,Dedicated workspace,Free parking on premises,Pool,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,Microwave,Waterfront,Gym,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1130 Breakfast,Essentials,Hangers,Long term stays allowed,Elevator,Wifi,Air conditioning
## 1131 Shampoo,Breakfast,Essentials,Building staff,Kitchen,Long term stays allowed,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm
## 1132 Shampoo,Breakfast,Essentials,Building staff,Kitchen,Long term stays allowed,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm
## 1133 Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,Oven,TV,Paid parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1134 Shampoo,Breakfast,Essentials,Hangers,Bed linens,Long term stays allowed,Washer,Hair dryer,Dryer,First aid kit,Wifi,Hot water,Air conditioning,Dedicated workspace,Smoke alarm,Luggage dropoff allowed,Fire extinguisher
## 1135 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Host greets you,TV,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Stove,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 1136 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Host greets you,TV,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Stove,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 1137 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1138 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1139 Cleaning before checkout,Backyard,Hangers,Bed linens,Washer,Single level home,Host greets you,Paid parking on premises,Lake access,Long term stays allowed,Lock on bedroom door,Refrigerator,Microwave,Gym,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Hot water,Iron,Essentials,Air conditioning,Dishes and silverware,Fire extinguisher
## 1140 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Dryer,Free street parking,Wifi,Luggage dropoff allowed,Dishwasher,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1141 Backyard,Hangers,Bed linens,Washer,Hair dryer,Free parking on premises,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Wifi,Luggage dropoff allowed,Shampoo,Breakfast,Extra pillows and blankets,Cable TV,Hot water,Iron,Building staff,Essentials,First aid kit,Air conditioning,TV with standard cable,Fire extinguisher
## 1142 Hangers,Washer,Hair dryer,TV,Free parking on premises,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Building staff,Essentials,Kitchen,Air conditioning,Fire extinguisher
## 1143 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 1144 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Host greets you,Oven,TV,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Elevator,Refrigerator,Dryer,Gym,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 1145 Hangers,Bed linens,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,Dedicated workspace,Security cameras on property,Long term stays allowed,Lock on bedroom door,Refrigerator,TV with Netflix,Dryer,Microwave,Gym,Paid street parking off premises,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Iron,Essentials,Kitchen,Air conditioning,Shower gel
## 1146 Hangers,Cooking basics,Washer,Hair dryer,Oven,TV,Free parking on premises,Pool,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1147 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Oven,Paid parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1148 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Host greets you,TV,High chair,Dedicated workspace,Pool,Crib,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 1149 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 1150 Hangers,Cooking basics,Washer,Hair dryer,Host greets you,TV,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Stove,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 1151 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Extra pillows and blankets,Heating,Hot water,Stove,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 1152 Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,Ethernet connection,Paid parking on premises,Dedicated workspace,Crib,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Extra pillows and blankets,Heating,Cable TV,Hot tub,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 1153 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Extra pillows and blankets,Heating,Hot water,Stove,Iron,Building staff,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 1154 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Security cameras on property,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1155 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Paid parking on premises,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1156 Cleaning before checkout,Backyard,Hangers,Bed linens,Hot water kettle,Cooking basics,Freezer,Hair dryer,Bathtub,Clothing storage,Oven,Outdoor furniture,Paid parking on premises,High chair,Dedicated workspace,Pool,Crib,Wine glasses,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Heating,Cable TV,Hot water,Stove,Body soap,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Bluetooth sound system,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 1157 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Paid parking on premises,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1158 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Ethernet connection,TV,Paid parking on premises,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1159 Hangers,Bed linens,Cooking basics,Washer,Oven,Paid parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1160 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Stove,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 1161 Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1162 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1163 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 1164 Essentials,Long term stays allowed,Lock on bedroom door,Wifi,Hot water,Air conditioning,Free parking on premises
## 1165 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Hot water,Gym,TV,Air conditioning,Pool,Iron
## 1166 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Elevator,Dryer,Wifi,Gym,Air conditioning,Dedicated workspace,Pool,Iron
## 1167 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Elevator,Dryer,Wifi,Gym,Air conditioning,Dedicated workspace,Pool,Iron
## 1168 Essentials,Long term stays allowed,Hair dryer,Elevator,Wifi,Hot water,Air conditioning,Iron
## 1169 Hangers,Cooking basics,Hair dryer,TV,Dedicated workspace,Pool,Washer \\u2013\\u00a0In building,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Breakfast,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Fire extinguisher
## 1170 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,TV,Paid parking on premises,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1171 Shampoo,Breakfast,Indoor fireplace,Security cameras on property,Building staff,Hangers,Long term stays allowed,Washer,Hair dryer,Dryer,Wifi,Hot water,Air conditioning,Smoke alarm,Iron,Fire extinguisher
## 1172 Bidet,Hangers,Bed linens,Hot water kettle,Washer,Clothing storage,Host greets you,Dedicated workspace,Cleaning products,Long term stays allowed,Drying rack for clothing,Laundromat nearby,Elevator,Lock on bedroom door,Patio or balcony,Dryer,Shared outdoor olympic-sized lap pool,Wifi,Paid parking garage off premises,Luggage dropoff allowed,Shampoo,Portable fans,Heating,Hot water,Body soap,Iron,Essentials,Window guards,Shower gel,Fire extinguisher
## 1173 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,Dedicated workspace,Pool,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 1174 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,Pool,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 1175 Toaster,Backyard,Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,Oven,Paid parking on premises,Dining table,Dedicated workspace,Cleaning products,Long term stays allowed,Drying rack for clothing,Laundromat nearby,Elevator,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,Microwave,Waterfront,Gym,Wifi,Shampoo,Breakfast,Extra pillows and blankets,Portable fans,Cable TV,Hot water,Stove,Body soap,Iron,Essentials,Clothing storage: closet,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 1176 Shampoo,Breakfast,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Elevator,Dryer,Wifi,Hot tub,Gym,Air conditioning,Free parking on premises,Pool
## 1177 Security cameras on property,Hangers,Kitchen,Cooking basics,Long term stays allowed,Washer,Refrigerator,Dryer,Wifi,Microwave,Stove,Dishes and silverware,TV,Gym,Air conditioning,Dedicated workspace,Smoke alarm,Pool,Iron
## 1178 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 1179 Essentials,Hangers,Keypad,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Iron
## 1180 Breakfast,Essentials,Hangers,Keypad,Heating,Long term stays allowed,Washer,Hair dryer,Dryer,First aid kit,Wifi,Hot water,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 1181 Hangers,Keypad,Kitchen,Cooking basics,Long term stays allowed,Washer,Hair dryer,Elevator,Wifi,TV,Air conditioning,Dishes and silverware
## 1182 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,Pool,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware
## 1183 Shampoo,Essentials,Heating,Long term stays allowed,Carbon monoxide alarm,First aid kit,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm
## 1184 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1185 Hangers,Cooking basics,Washer,Hair dryer,TV,Pool,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 1186 Shampoo,Essentials,Hangers,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Lock on bedroom door,Refrigerator,Elevator,Wifi,Hot water,Air conditioning,Smoke alarm
## 1187 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 1188 Indoor fireplace,Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,Dedicated workspace,Pool,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 1189 Shampoo,Essentials,Hangers,Bed linens,Luggage dropoff allowed,Hair dryer,Elevator,Refrigerator,Wifi,Hot water,Pool,TV,Air conditioning,Free parking on premises,Smoke alarm,Iron
## 1190 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,TV,Air conditioning,Dedicated workspace,Iron
## 1191 Hangers,Long term stays allowed,Washer,Elevator,Lock on bedroom door,Wifi,Air conditioning
## 1192 Shampoo,Essentials,Cleaning before checkout,Hangers,Keypad,Long term stays allowed,Luggage dropoff allowed,Private entrance,Hair dryer,Lock on bedroom door,Refrigerator,Elevator,Wifi,Hot water,Gym,Pool,Air conditioning,Dedicated workspace,Shower gel,Iron
## 1193 Shampoo,Essentials,Extra pillows and blankets,Hangers,Bed linens,Heating,Long term stays allowed,Hair dryer,Lock on bedroom door,Elevator,Wifi,Hot water,Air conditioning,Dedicated workspace,Iron
## 1194 Ceiling fan,Shared patio or balcony,Essentials,Hangers,Bed linens,Kitchen,Long term stays allowed,Washer,Elevator,Dryer,Free parking on premises,Gym,TV,Shared pool,Air conditioning,Dedicated workspace
## 1195 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1196 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1197 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Hair dryer,Oven,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Extra pillows and blankets,Heating,Cable TV,Hot water,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 1198 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Microwave,Gym,TV,Pool,Air conditioning,Dishes and silverware,Iron
## 1199 Hangers,Coffee maker,Kitchen,Cooking basics,Keypad,Washer,Long term stays allowed,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Stove,TV,Air conditioning,Dedicated workspace,Dishes and silverware
## 1200 Hangers,Washer,Hair dryer,High chair,Pool,Crib,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Stove,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 1201 Essentials,Hangers,Long term stays allowed,Refrigerator,Wifi,Hot water,Free parking on premises,Gym,Air conditioning,Dedicated workspace,Pool
## 1202 Essentials,Kitchen,Long term stays allowed,Washer,Elevator,Lock on bedroom door,Wifi,Gym,Air conditioning,Free parking on premises,Pool
## 1203 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1204 Shampoo,Essentials,Hangers,Kitchen,Cooking basics,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Free parking on premises,TV,Air conditioning,Dedicated workspace,Iron,Fire extinguisher
## 1205 Hangers,Bed linens,Cooking basics,Washer,Smart lock,Hair dryer,Free parking on premises,Dedicated workspace,Long term stays allowed,Lock on bedroom door,Refrigerator,Patio or balcony,Microwave,Wifi,Shampoo,Extra pillows and blankets,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1206 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Hair dryer,Dedicated workspace,Free parking on premises,Pool,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Pocket wifi,Refrigerator,Dryer,Microwave,Gym,Wifi,Shampoo,Extra pillows and blankets,Heating,Cable TV,Hot tub,Hot water,Iron,Essentials,Kitchen,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable
## 1207 Shampoo,Essentials,Hangers,Kitchen,Cooking basics,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Elevator,Dryer,Wifi,Free parking on premises,TV,Air conditioning,Dedicated workspace,Iron,Fire extinguisher
## 1208 Cleaning before checkout,Backyard,Hangers,Bed linens,Cooking basics,Washer,Single level home,Bathtub,Hair dryer,Ethernet connection,Paid parking on premises,Dedicated workspace,Crib,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Extra pillows and blankets,Heating,Cable TV,Hot tub,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable
## 1209 Backyard,Hangers,Bed linens,Cooking basics,Washer,Bathtub,Hair dryer,Ethernet connection,Dedicated workspace,Crib,Security cameras on property,Long term stays allowed,Private entrance,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Breakfast,Extra pillows and blankets,Heating,Cable TV,Hot tub,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 1210 Hangers,Bed linens,Cooking basics,Washer,Single level home,Carbon monoxide alarm,Hair dryer,Paid parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Shampoo,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 1211 Hangers,Hair dryer,Host greets you,Oven,TV,Paid parking on premises,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Microwave,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1212 Hangers,Bed linens,Hair dryer,Host greets you,TV,Paid parking on premises,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Microwave,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1213 Cleaning before checkout,Backyard,Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Single level home,Hair dryer,Ethernet connection,Paid parking on premises,Dedicated workspace,Crib,Security cameras on property,Long term stays allowed,Private entrance,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Extra pillows and blankets,Heating,Cable TV,Hot tub,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable
## 1214 Shampoo,Breakfast,Essentials,Long term stays allowed,Hair dryer,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Fire extinguisher
## 1215 Hangers,Bed linens,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Shampoo,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 1216 Shampoo,Essentials,Hangers,Kitchen,Cooking basics,Long term stays allowed,Washer,Hair dryer,Dryer,Wifi,TV,Air conditioning,Dedicated workspace,Iron
## 1217 Hangers,Washer,Carbon monoxide alarm,Hair dryer,Lockbox,Dedicated workspace,Security cameras on property,Long term stays allowed,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,Microwave,Free street parking,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Paid parking off premises,Hot water,Shower gel,Essentials,Air conditioning,Dishes and silverware,Fire extinguisher
## 1218 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Host greets you,Oven,TV,Dedicated workspace,Long term stays allowed,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Dishwasher,Extra pillows and blankets,Heating,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware
## 1219 Cleaning before checkout,Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,Ethernet connection,Paid parking on premises,Dedicated workspace,Crib,Security cameras on property,Long term stays allowed,Private entrance,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Heating,Cable TV,Hot tub,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable
## 1220 Shampoo,Breakfast,Essentials,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Dryer,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Iron,Fire extinguisher
## 1221 Shampoo,Breakfast,Essentials,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Dryer,Wifi,TV,Air conditioning,Dedicated workspace,Iron,Fire extinguisher
## 1222 Shampoo,Breakfast,Essentials,Long term stays allowed,Washer,Hair dryer,Dryer,First aid kit,Wifi,Air conditioning,Dedicated workspace,Smoke alarm,Fire extinguisher
## 1223 Hangers,Bed linens,Coffee maker,Washer,Carbon monoxide alarm,Hair dryer,Dedicated workspace,Free parking on premises,Long term stays allowed,Lock on bedroom door,Refrigerator,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Heating,Cable TV,Hot water,Iron,Essentials,First aid kit,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 1224 Hangers,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,Dedicated workspace,Pool,Long term stays allowed,Elevator,Lock on bedroom door,Wifi,Smoke alarm,Shampoo,Breakfast,Hot water,Stove,Essentials,Kitchen,Air conditioning,Fire extinguisher
## 1225 Hangers,Bed linens,Coffee maker,Washer,Carbon monoxide alarm,Hair dryer,Dedicated workspace,Free parking on premises,Long term stays allowed,Lock on bedroom door,Refrigerator,Dryer,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Heating,Cable TV,Hot water,Iron,Essentials,First aid kit,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 1226 Hangers,Cooking basics,Washer,Hair dryer,TV,High chair,Pool,Crib,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Stove,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 1227 Hangers,Washer,Hair dryer,Shared fenced garden or backyard,TV,Lockbox,Free parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Wifi,Smoke alarm,Shampoo,Breakfast,Heating,Iron,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 1228 Hangers,Bed linens,Hot water kettle,Cooking basics,Washer,Single level home,Carbon monoxide alarm,Hair dryer,Oven,TV,Baking sheet,Dedicated workspace,Long term stays allowed,Lock on bedroom door,Refrigerator,Patio or balcony,Microwave,Free street parking,Wifi,Smoke alarm,Shampoo,Keypad,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 1229 Shampoo,Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Dryer,Wifi,Pool,Gym,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 1230 Shampoo,Breakfast,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Dryer,Wifi,Pool,Gym,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 1231 Shampoo,Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Wifi,Free parking on premises,TV,Air conditioning,Dedicated workspace,Pool,Iron
## 1232 Shampoo,Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Dryer,Wifi,Free parking on premises,TV,Air conditioning,Dedicated workspace,Pool,Iron
## 1233 Shampoo,Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Dryer,Wifi,Free parking on premises,TV,Shared pool,Air conditioning,Dedicated workspace,Iron
## 1234 Shampoo,Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Dryer,Wifi,Free parking on premises,TV,Air conditioning,Dedicated workspace,Pool,Iron
## 1235 Hangers,Keypad,Heating,Kitchen,Cooking basics,Washer,Long term stays allowed,Private entrance,Hair dryer,Elevator,Dryer,Wifi,Dishes and silverware,TV,Air conditioning,Smoke alarm
## 1236 Rice maker,Bidet,Toaster,Backyard,Cleaning before checkout,Hangers,Bed linens,Hot water kettle,Freezer,Cooking basics,Single level home,Hair dryer,Bathtub,Host greets you,Ethernet connection,Outdoor furniture,Dining table,Electric stove,Miele oven,Room-darkening shades,Cleaning products,Mosquito net,Miele refrigerator,Paid parking lot on premises,Long term stays allowed,Drying rack for clothing,Private entrance,Elevator,Free washer \\u2013 In unit,Gym,Wifi,Luggage dropoff allowed,Shampoo,Free dryer \\u2013 In unit,Shared outdoor rooftop pool,Extra pillows and blankets,Portable fans,Conditioner,Paid parking off premises,50\\ HDTV with Netflix,Apple TV,Amazon Prime Video,Chromecast,standard cable,HBO Max,Cable TV,Hot water,Body soap,Iron,Essentials,Clothing storage: closet,Kitchen,Private patio or balcony,Dedicated workspace: table and desk,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 1237 Hangers,Bed linens,Cooking basics,Washer,Single level home,Host greets you,TV,Dedicated workspace,Room-darkening shades,Elevator,Patio or balcony,Refrigerator,Microwave,Wifi,Smoke alarm,Children\\u2019s dinnerware,Paid parking off premises,Hot water,Essentials,Air conditioning,Dishes and silverware
## 1238 Backyard,Hangers,Cooking basics,Washer,Single level home,Hair dryer,TV,Paid parking on premises,Dedicated workspace,Pool,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Microwave,Gym,Wifi,Shampoo,Extra pillows and blankets,Paid parking off premises,Hot water,Stove,BBQ grill,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1239 Hangers,Bed linens,Hair dryer,TV,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Wifi,Shampoo,Hot water,Stove,Iron,Shower gel,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 1240 Shampoo,Building staff,Essentials,Hangers,Heating,Long term stays allowed,Carbon monoxide alarm,Hair dryer,Lock on bedroom door,Elevator,First aid kit,Wifi,Free parking on premises,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 1241 Hangers,Cooking basics,Washer,Hair dryer,TV,High chair,Pool,Crib,Long term stays allowed,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 1242 Rice maker,Cleaning before checkout,Backyard,Hangers,Bed linens,Hot water kettle,Freezer,Cooking basics,Washer,Bathtub,Hair dryer,Oven,Outdoor furniture,Paid parking on premises,Dining table,Dedicated workspace,Free parking on premises,Crib,Pool,Clothing storage: walk-in closet,Wine glasses,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Conditioner,Cable TV,Hot water,Stove,Body soap,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 1243 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Ethernet connection,TV,Dedicated workspace,Pool,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Microwave,Gym,Wifi,Shampoo,Extra pillows and blankets,Hot water,Stove,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1244 Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Elevator,Dryer,Wifi,TV,Air conditioning,Dedicated workspace,Pool,Iron
## 1245 Shampoo,Essentials,Smoke alarm,Paid parking lot off premises,Hangers,Bed linens,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Cable TV,Lock on bedroom door,Wifi,Hot water,Body soap,Air conditioning,Dedicated workspace,Shower gel,TV with standard cable,Luggage dropoff allowed
## 1246 Shampoo,Essentials,Smoke alarm,Hangers,Bed linens,Paid parking off premises,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Cable TV,Lock on bedroom door,Wifi,Hot water,Body soap,Air conditioning,Dedicated workspace,Shower gel,TV with standard cable,Luggage dropoff allowed
## 1247 Safe,Coffee maker,Hangers,Washer,Bathtub,Hair dryer,Oven,Dedicated workspace,Room-darkening shades,Game console,55\\ HDTV with Chromecast,Long term stays allowed,Toiletries,Limited housekeeping \\u2014 weekly,Pocket wifi,Refrigerator,Dryer,Microwave,Smoke alarm,Luggage dropoff allowed,Laundry services,Dishwasher,Complimentary self parking,Mini fridge,Stove, linens,Iron,Kitchenette,Kitchen,Free wifi,First aid kit,24-hour fitness center,Air conditioning,Dishes and silverware,Fire extinguisher
## 1248 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,High chair,Long term stays allowed,Private entrance,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Shampoo,Dishwasher,Heating,Hot water,Stove,Iron,Essentials,Kitchen,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 1249 Shampoo,Essentials,Kitchen,Long term stays allowed,Private entrance,Hair dryer,Lock on bedroom door,First aid kit,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Fire extinguisher
## 1250 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Patio or balcony,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Extra pillows and blankets,Hot water,Stove,BBQ grill,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 1251 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Wifi,Hot water,Free parking on premises,Hot tub,TV,Gym,Air conditioning,Dedicated workspace,Pool,Lockbox,Iron
## 1252 Hangers,Cooking basics,Washer,Hair dryer,Lockbox,Dedicated workspace,Security cameras on property,Long term stays allowed,Lock on bedroom door,Refrigerator,Patio or balcony,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware
## 1253 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Security cameras on property,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1254 Hangers,Washer,Carbon monoxide alarm,Hair dryer,TV,Free parking on premises,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Elevator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware
## 1255 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Security cameras on property,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1256 Hangers,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Gym,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Iron,Essentials,First aid kit,Air conditioning,Fire extinguisher
## 1257 Shampoo,Essentials,Security cameras on property,Backyard,Hangers,Long term stays allowed,Washer,Private entrance,Hair dryer,Lock on bedroom door,Refrigerator,Dryer,First aid kit,Wifi,Hot water,Air conditioning,Dedicated workspace,Dishes and silverware,Iron,Fire extinguisher
## 1258 Shampoo,TV,Bed linens,Long term stays allowed,Smart lock,Hair dryer,Lock on bedroom door,Wifi,Hot water,Body soap,Air conditioning,Dedicated workspace,Smoke alarm
## 1259 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Elevator,First aid kit,Wifi,Hot water,Air conditioning,Pool,Fire extinguisher
## 1260 Toaster,Bidet,Hangers,Bed linens,Washer,Hair dryer,Bathtub,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Lock on bedroom door,Dryer,Wifi,Shampoo,Keypad,Hot water,Mini fridge,Iron,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 1261 Shampoo,Essentials,Kitchen,Freezer,Cooking basics,Washer,Long term stays allowed,Dryer,Wifi,TV,Lockbox,Air conditioning
## 1262 Shampoo,Essentials,Kitchen,Cooking basics,Long term stays allowed,Washer,Hair dryer,Dryer,Wifi,Lockbox,Air conditioning
## 1263 Cleaning before checkout,Backyard,Hangers,Bed linens,Hot water kettle,Freezer,Washer,Hair dryer,Bathtub,Oven,TV,Outdoor furniture,Dining table,Dedicated workspace,Pool,Crib,Paid parking on premises,Wine glasses,Long term stays allowed,Outdoor dining area,Elevator,Refrigerator,Dryer,Microwave,Gym,Outlet covers,Free street parking,Wifi,Smoke alarm,Shampoo,Dishwasher,Extra pillows and blankets,Conditioner,Hot water,Body soap,BBQ grill,Iron,Essentials,Clothing storage: closet,Window guards,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 1264 Shampoo,TV,Bed linens,Kitchen,Cooking basics,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Wifi,Hot water,Body soap,Lockbox,Air conditioning,Dedicated workspace,Iron
## 1265 Shampoo,Essentials,Hangers,Kitchen,Cooking basics,Long term stays allowed,Washer,Private entrance,Hair dryer,Elevator,Dryer,First aid kit,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 1266 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Carbon monoxide alarm,Elevator,Lock on bedroom door,Dryer,First aid kit,Wifi,Hot water,Gym,Shared pool,Air conditioning,Free parking on premises,Smoke alarm
## 1267 Bidet,Safe,Backyard,Hangers,Bed linens,Hot water kettle,Freezer,Coffee maker,Washer,Cooking basics,Single level home,Bathtub,Hair dryer,Ethernet connection,Paid parking on premises,Dedicated workspace,Room-darkening shades,Crib,Long term stays allowed,Drying rack for clothing,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Extra pillows and blankets,Heating,Cable TV,Hot tub,Hot water,Stove,Body soap,Shared sauna,Iron,Building staff,Essentials,Clothing storage: closet,Kitchen,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable
## 1268 Backyard,Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,Ethernet connection,Paid parking on premises,Dedicated workspace,Free parking on premises,Crib,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Extra pillows and blankets,Heating,Cable TV,Hot tub,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 1269 Security cameras on property,Long term stays allowed,Hair dryer,Lock on bedroom door,Elevator,Wifi,TV,Air conditioning,Smoke alarm,Fire extinguisher
## 1270 Shampoo,Bidet,Essentials,Safe,Hangers,Free washer \\u2013 In building,Free dryer \\u2013 In building,Long term stays allowed,Hair dryer,TV with Netflix,Wifi,Air conditioning,Dedicated workspace,Shower gel,Iron
## 1271 Hangers,Bed linens,Hot water kettle,Washer,Hair dryer,TV,Dedicated workspace,Long term stays allowed,Elevator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Mini fridge,Stove,Iron,Building staff,Essentials,Kitchen,Air conditioning
## 1272 portable stove gas stove,Rice maker,Bidet,Safe,Piano,Toaster,Hangers,Bed linens,Record player,Hot water kettle,Neutrogena body soap,Washer,dove shampoo,Freezer,Hair dryer,Cooking basics,Single level home,Samsung refrigerator,TV,High chair,Children\\u2019s books and toys,Dedicated workspace,Room-darkening shades,Dining table,Cleaning products,Wine glasses,Paid parking lot on premises,Long term stays allowed,Drying rack for clothing,Laundromat nearby,Elevator,Lock on bedroom door,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shared patio or balcony,Extra pillows and blankets,Portable fans,Hot water,Beach essentials,Bikes,Iron,Essentials,Clothing storage: closet,Window guards,Kitchen,Samsung Bluetooth sound system,EV charger,First aid kit,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 1273 Bidet,Hangers,Bed linens,Hot water kettle,Washer,Carbon monoxide alarm,Hair dryer,TV,High chair,Dedicated workspace,Pool,Crib,Room-darkening shades,Cleaning products,Long term stays allowed,Elevator,Patio or balcony,Dryer,Microwave,Wifi,Smoke alarm,Children\\u2019s dinnerware,Luggage dropoff allowed,Shampoo,Dishwasher,Portable fans,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Shower gel,Fire extinguisher
## 1274 Shampoo,Essentials,Indoor fireplace,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Hot tub,TV,Air conditioning,Free parking on premises,Smoke alarm,Iron,Fire extinguisher
## 1275 Hangers,Washer,Hair dryer,Paid parking on premises,Lockbox,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Dryer,Gym,Wifi,Luggage dropoff allowed,Shampoo,Paid parking off premises,Cable TV,Hot tub,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,TV with standard cable,Fire extinguisher
## 1276 Hangers,Bed linens,Cooking basics,Washer,Oven,Paid parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1277 Long term stays allowed,Host greets you
## 1278 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1279 Shampoo,Breakfast,Essentials,Security cameras on property,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Dryer,First aid kit,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Iron,Fire extinguisher
## 1280 Shampoo,Breakfast,Essentials,Hangers,Keypad,Paid parking off premises,Long term stays allowed,Washer,Hair dryer,Dryer,First aid kit,Wifi,Hot water,TV,Air conditioning,Smoke alarm,Iron,Fire extinguisher
## 1281 Kitchen,Long term stays allowed,Washer,Cable TV,Elevator,Dryer,First aid kit,Wifi,Pool,Gym,Air conditioning,Free parking on premises,Smoke alarm,TV with standard cable,Fire extinguisher
## 1282 Essentials,Kitchen,Long term stays allowed,Washer,Elevator,Wifi,Gym,Air conditioning,Pool
## 1283 Indoor fireplace,Hangers,Cooking basics,Washer,Carbon monoxide alarm,Oven,Dedicated workspace,Free parking on premises,Pool,Lake access,Long term stays allowed,Elevator,Refrigerator,Microwave,Waterfront,Gym,Wifi,Beachfront,Smoke alarm,Shampoo,Keypad,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 1284 Hangers,Bed linens,Coffee maker,Washer,Hair dryer,Pool,Long term stays allowed,Elevator,Nespresso machine,Refrigerator,Dryer,Microwave,Gym,Wifi,Heating,Cable TV,Hot water,Stove,Iron,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 1285 Hangers,Coffee maker,Hot water kettle,Cooking basics,Washer,Carbon monoxide alarm,TV,Dining table,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Breakfast,Heating,Paid parking off premises,Hot water,Stove,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 1286 Breakfast,Essentials,Heating,Kitchen,Washer,Cable TV,Elevator,Dryer,Wifi,Air conditioning,TV with standard cable
## 1287 Shampoo,Essentials,Kitchen,Long term stays allowed,Washer,Private entrance,Hair dryer,Lock on bedroom door,Host greets you,Dryer,Wifi,Hot water,Air conditioning,Free parking on premises,Pool
## 1288 Hangers,Cooking basics,Washer,Single level home,Hair dryer,Host greets you,Oven,TV,Free parking on premises,Dedicated workspace,Pool,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Microwave,Gym,Wifi,Shampoo,Hot water,Stove,BBQ grill,Iron,Essentials,Kitchen,Air conditioning,Fire extinguisher
## 1289 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Dryer,Wifi,Air conditioning,Dedicated workspace,Iron
## 1290 Hangers,Bed linens,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Microwave,Gym,TV,Air conditioning,Pool,Iron
## 1291 Shampoo,Essentials,Hangers,Long term stays allowed,Washer,Luggage dropoff allowed,Elevator,Lock on bedroom door,Refrigerator,Host greets you,Wifi,Hot water,Microwave,Air conditioning,Dedicated workspace,Iron
## 1292 Shampoo,Building staff,Essentials,Kitchen,Paid parking off premises,Long term stays allowed,Washer,Hair dryer,Cable TV,Lock on bedroom door,Dryer,First aid kit,Wifi,Hot water,Air conditioning,TV with standard cable
## 1293 Hangers,Bed linens,Washer,Hair dryer,Oven,Dedicated workspace,Free parking on premises,Long term stays allowed,Refrigerator,Dryer,Microwave,Wifi,Shampoo,Heating,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 1294 Hangers,Bed linens,Washer,Hair dryer,Oven,Free parking on premises,Dedicated workspace,Long term stays allowed,Refrigerator,Dryer,Microwave,Wifi,Shampoo,Heating,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1295 Hangers,Bed linens,Washer,Hair dryer,Oven,Dedicated workspace,Free parking on premises,Long term stays allowed,Refrigerator,Dryer,Microwave,Wifi,Shampoo,Heating,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 1296 Hangers,Bed linens,Washer,Hair dryer,Oven,Dedicated workspace,Free parking on premises,Long term stays allowed,Refrigerator,Dryer,Microwave,Wifi,Shampoo,Heating,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 1297 Long term stays allowed
## 1298 Hangers,Bed linens,Coffee maker,Washer,Hair dryer,TV,Dedicated workspace,Security cameras on property,Long term stays allowed,Patio or balcony,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Breakfast,Extra pillows and blankets,Iron,Essentials,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 1299 Shampoo,Breakfast,Essentials,Security cameras on property,Hangers,Long term stays allowed,Washer,Hair dryer,Host greets you,Dryer,Wifi,Hot water,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 1300 Shampoo,Breakfast,Essentials,Kitchen,Long term stays allowed,Washer,Hair dryer,Cable TV,Dryer,First aid kit,Wifi,Air conditioning,Dedicated workspace,Smoke alarm,TV with standard cable,Iron,Fire extinguisher
## 1301 Shampoo,Breakfast,Essentials,Kitchen,Long term stays allowed,Washer,Hair dryer,Cable TV,Lock on bedroom door,Dryer,First aid kit,Wifi,Air conditioning,Dedicated workspace,Smoke alarm,TV with standard cable,Iron,Fire extinguisher
## 1302 Shampoo,Breakfast,Essentials,Kitchen,Long term stays allowed,Washer,Hair dryer,Cable TV,Dryer,First aid kit,Wifi,Air conditioning,Dedicated workspace,Smoke alarm,TV with standard cable,Iron,Fire extinguisher
## 1303 Shampoo,Breakfast,Essentials,Kitchen,Long term stays allowed,Washer,Hair dryer,Cable TV,Dryer,First aid kit,Wifi,Air conditioning,Dedicated workspace,Smoke alarm,TV with standard cable,Iron,Fire extinguisher
## 1304 Backyard,Hangers,Bed linens,Coffee maker,Washer,Hair dryer,Host greets you,Dedicated workspace,Game console,Long term stays allowed,Patio or balcony,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 1305 Breakfast,Essentials,Building staff,Hangers,Long term stays allowed,Washer,Hair dryer,Cable TV,Dryer,First aid kit,Wifi,Hot water,Paid parking on premises,Air conditioning,Dedicated workspace,Smoke alarm,TV with standard cable,Iron,Fire extinguisher
## 1306 Hangers,Bed linens,Cooking basics,Washer,Oven,Paid parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1307 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Single level home,Carbon monoxide alarm,Bathtub,Hair dryer,Host greets you,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Extra pillows and blankets,Heating,Cable TV,Hot tub,Hot water,Stove,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 1308 Shampoo,Breakfast,Building staff,Hangers,Long term stays allowed,Hair dryer,Dryer,Wifi,Hot water,Air conditioning,Smoke alarm,Iron,Fire extinguisher
## 1309 Shampoo,Essentials,Security cameras on property,Hangers,Kitchen,Long term stays allowed,Washer,Smart lock,Private entrance,Hair dryer,Lock on bedroom door,Elevator,Dryer,Wifi,Hot water,Gym,Air conditioning,Dedicated workspace,Iron,Fire extinguisher
## 1310 Shampoo,Breakfast,Hangers,Long term stays allowed,Washer,Dryer,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm
## 1311 Shampoo,Breakfast,Hangers,Long term stays allowed,Washer,Dryer,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm
## 1312 Shampoo,Hangers,Long term stays allowed,Washer,Wifi,TV,Air conditioning,Dedicated workspace
## 1313 Toaster,Rice maker,Safe,Hangers,Cooking basics,Freezer,Washer,Single level home,Bathtub,Hair dryer,Clothing storage,Dining table,Dedicated workspace,Room-darkening shades,Wine glasses,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Heating,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Paid parking lot on premises,Air conditioning,Dishes and silverware,TV with standard cable
## 1314 Bed linens,Washer,Single level home,Carbon monoxide alarm,Hair dryer,Host greets you,Dedicated workspace,Pool,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Microwave,Gym,Wifi,Smoke alarm,Paid parking off premises,Hot water,Stove,Iron,Kitchen,Air conditioning
## 1315 Backyard,Hangers,Bed linens,Coffee maker,Washer,Single level home,Host greets you,Dedicated workspace,Security cameras on property,Long term stays allowed,Elevator,Refrigerator,Gym,Wifi,Shampoo,Free parking garage on premises,Hot water,BBQ grill,Shower gel,Essentials,Shared pool,Air conditioning,Dishes and silverware
## 1316 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 1317 Hangers,Bed linens,Cooking basics,Washer,Single level home,Host greets you,Oven,TV,Free parking on premises,Dedicated workspace,Pool,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Dryer,Gym,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning
## 1318 Kitchen,Long term stays allowed,Washer,Wifi,Air conditioning,Fire extinguisher
## 1319 Backyard,Hangers,Bed linens,Washer,Hair dryer,TV,Free parking on premises,Pool,Long term stays allowed,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Shampoo,Heating,Hot water,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1320 Hangers,Bed linens,Cooking basics,Washer,Oven,Paid parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1321 Indoor fireplace,Backyard,Hangers,Hot water kettle,Washer,Hair dryer,TV,Dedicated workspace,Free parking on premises,Pool,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Wifi,Shampoo,Heating,Iron,Bread maker,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1322 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1323 Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Elevator,Lock on bedroom door,Host greets you,Wifi,Hot water,TV,Paid parking on premises,Air conditioning,Dedicated workspace
## 1324 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,Free parking on premises,Dedicated workspace,Long term stays allowed,Dryer,Microwave,Wifi,Shampoo,Extra pillows and blankets,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware
## 1325 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,TV,Dedicated workspace,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1326 Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Elevator,Dryer,Wifi,Gym,TV,Air conditioning,Dedicated workspace,Pool,Iron
## 1327 Shampoo,Breakfast,Essentials,Hangers,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Cable TV,Elevator,Dryer,First aid kit,Wifi,Air conditioning,Dedicated workspace,Smoke alarm,TV with standard cable,Iron,Fire extinguisher
## 1328 Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Elevator,Dryer,Wifi,TV,Air conditioning,Dedicated workspace,Pool,Iron
## 1329 Shampoo,Breakfast,Essentials,Hangers,Heating,Long term stays allowed,Washer,Hair dryer,Dryer,Wifi,Air conditioning,Smoke alarm,Iron,Fire extinguisher
## 1330 Backyard,Hangers,Hot water kettle,Washer,Hair dryer,Host greets you,TV,Free parking on premises,Pool,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Heating,Hot water,Stove,Iron,Bread maker,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1331 Hangers,Cooking basics,Washer,Hair dryer,TV,Free parking on premises,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Dishwasher,Heating,Stove,BBQ grill,Iron,Essentials,Kitchen,Shared pool,Air conditioning,Dishes and silverware
## 1332 Shampoo,Breakfast,Essentials,Hangers,Kitchen,Paid parking off premises,Long term stays allowed,Washer,Hair dryer,Dryer,First aid kit,Wifi,Hot water,Dishes and silverware,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 1333 Shampoo,Breakfast,Essentials,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Elevator,Dryer,First aid kit,Wifi,Air conditioning,Smoke alarm,Iron,Fire extinguisher
## 1334 Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,Oven,Dedicated workspace,Long term stays allowed,Private entrance,Lock on bedroom door,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 1335 Cleaning before checkout,Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Single level home,Carbon monoxide alarm,Bathtub,Hair dryer,Host greets you,TV,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Extra pillows and blankets,Heating,Hot tub,Hot water,Stove,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,First aid kit,Air conditioning,Dishes and silverware
## 1336 Breakfast,Essentials,Building staff,Hangers,Long term stays allowed,Hair dryer,First aid kit,Wifi,Hot water,TV,Paid parking on premises,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 1337 Hangers,Bed linens,Cooking basics,Washer,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1338 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1339 Cleaning before checkout,Long term stays allowed,Refrigerator,Wifi,Microwave,Gym,Air conditioning,Pool,Luggage dropoff allowed,Fire extinguisher
## 1340 Rice maker,Bidet,Safe,Toaster,Hangers,Bed linens,Hot water kettle,Freezer,Cooking basics,Washer,Hair dryer,Bathtub,Host greets you,Ethernet connection,TV,High chair,Dedicated workspace,Dining table,Crib,Pool,Cleaning products,Wine glasses,Security cameras on property,Long term stays allowed,Drying rack for clothing,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Sound system with aux,Gym,Wifi,Luggage dropoff allowed,Shampoo,Induction stove,Extra pillows and blankets,Heating,Conditioner,Free parking garage on premises,Hot water,BBQ grill,Iron,Essentials,Clothing storage: closet,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 1341 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Host greets you,Oven,TV,Paid parking on premises,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Paid parking off premises,Hot water,Stove,Iron,Kitchen,Air conditioning,Dishes and silverware
## 1342 Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Lock on bedroom door,Host greets you,Wifi,Outdoor furniture,Shared pool,Air conditioning,Dedicated workspace,Iron
## 1343 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1344 Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Free parking on premises,Hot tub,Gym,Air conditioning,Dedicated workspace,Pool,Iron
## 1345 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1346 Shampoo,Building staff,Essentials,Hangers,Coffee maker,Long term stays allowed,Washer,Luggage dropoff allowed,Bathtub,Hair dryer,Cable TV,Refrigerator,Dryer,Wifi,Gym,Air conditioning,Free parking on premises,Pool,TV with standard cable,Iron
## 1347 Essentials,Coffee maker,Kitchen,Cooking basics,Long term stays allowed,Washer,Luggage dropoff allowed,Bathtub,Hair dryer,Cable TV,Refrigerator,Dryer,Wifi,Microwave,Gym,Air conditioning,Free parking on premises,Pool,TV with standard cable,Iron
## 1348 Hangers,Cooking basics,Washer,Hair dryer,Host greets you,Oven,TV,Paid parking on premises,Dedicated workspace,Pool,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Luggage dropoff allowed,Shampoo,Heating,Hot tub,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware
## 1349 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1350 Cleaning before checkout,Hangers,Cooking basics,Washer,Hair dryer,Host greets you,Oven,TV,Paid parking on premises,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot tub,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 1351 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1352 Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Elevator,Dryer,Wifi,Gym,TV,Air conditioning,Pool,Iron
## 1353 Shampoo,Breakfast,Essentials,Hangers,Kitchen,Paid parking off premises,Long term stays allowed,Washer,Hair dryer,Dryer,First aid kit,Wifi,Hot water,Air conditioning,Smoke alarm,Iron,Fire extinguisher
## 1354 Shampoo,Breakfast,Essentials,Hangers,Paid parking off premises,Long term stays allowed,Washer,Hair dryer,Dryer,First aid kit,Wifi,Hot water,Air conditioning,Smoke alarm,Iron,Fire extinguisher
## 1355 Shampoo,Breakfast,Essentials,Hangers,Kitchen,Paid parking off premises,Long term stays allowed,Washer,Hair dryer,Dryer,Wifi,Hot water,Air conditioning,Smoke alarm,Iron,Fire extinguisher
## 1356 Shampoo,Essentials,Hangers,Keypad,Paid parking off premises,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Hot water,TV,Wifi \\u2013 22 Mbps,Dedicated workspace,Iron,Fire extinguisher
## 1357 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1358 Backyard,Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Host greets you,Oven,TV,Pool,Long term stays allowed,Lock on bedroom door,Refrigerator,Microwave,Gym,Wifi,Shampoo,Hot water,Stove,BBQ grill,Iron,Essentials,Kitchen,Air conditioning,Fire extinguisher
## 1359 Shampoo,Essentials,Hangers,Long term stays allowed,Washer,Dryer,Wifi,Free parking on premises,Air conditioning,Dedicated workspace,Pool
## 1360 Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 1361 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Cable TV,Elevator,Dryer,First aid kit,Wifi,Free parking on premises,Gym,Air conditioning,Dedicated workspace,Pool,TV with standard cable
## 1362 Shampoo,Breakfast,Essentials,Building staff,Hangers,Bed linens,Long term stays allowed,Washer,Hair dryer,Dryer,First aid kit,Wifi,Hot water,Air conditioning,Smoke alarm,Luggage dropoff allowed,Fire extinguisher
## 1363 Shampoo,Essentials,Hangers,Paid parking off premises,Long term stays allowed,Washer,Luggage dropoff allowed,Hair dryer,Lock on bedroom door,Elevator,Host greets you,Wifi,Hot water,Air conditioning,Room-darkening shades,Iron,Fire extinguisher
## 1364 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,TV,Dedicated workspace,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1365 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1366 Shampoo,Essentials,Long term stays allowed,Cable TV,Hair dryer,Patio or balcony,Elevator,Wifi,Gym,Air conditioning,Free parking on premises,Pool,TV with standard cable,Iron
## 1367 Cleaning before checkout,Hangers,Bed linens,Hot water kettle,Cooking basics,Freezer,Washer,Bathtub,Clothing storage,Host greets you,Outdoor furniture,Paid parking on premises,Dining table,Dedicated workspace,Pool,Wine glasses,Long term stays allowed,Outdoor dining area,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Paid parking off premises,Cable TV,Hot water,Stove,BBQ grill,Iron,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 1368 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,TV,Dedicated workspace,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1369 Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1370 Hangers,Bed linens,Cooking basics,Washer,Oven,Paid parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1371 Hangers,Bed linens,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Hot water,Gym,TV,Air conditioning,Pool,Iron
## 1372 Shampoo,Essentials,Indoor fireplace,Cleaning before checkout,Hangers,Heating,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Wifi,Microwave,Gym,Pool,Air conditioning,Dedicated workspace,Smoke alarm
## 1373 Rice maker,Bidet,Safe,Toaster,Hangers,Bed linens,Hot water kettle,Washer,Hair dryer,Bathtub,Host greets you,Ethernet connection,TV,High chair,Dedicated workspace,Dining table,Crib,Cleaning products,Wine glasses,Security cameras on property,Long term stays allowed,Drying rack for clothing,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Luggage dropoff allowed,Shampoo,Induction stove,Extra pillows and blankets,Heating,Conditioner,Free parking garage on premises,Hot water,Shared sauna,BBQ grill,Iron,Essentials,Clothing storage: closet,Kitchen,First aid kit,Dishes and silverware,Shared pool,Air conditioning,Shower gel,Fire extinguisher
## 1374 Rice maker,Bidet,Safe,Toaster,Hangers,Bed linens,Hot water kettle,Washer,Hair dryer,Bathtub,Clothing storage,Host greets you,Ethernet connection,TV,High chair,Dedicated workspace,Dining table,Crib,Cleaning products,Wine glasses,Security cameras on property,Long term stays allowed,Drying rack for clothing,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Sauna,Heating,Conditioner,Free parking garage on premises,Hot water,Stove,BBQ grill,Iron,Essentials,Kitchen,First aid kit,Dishes and silverware,Shared pool,Air conditioning,Shower gel,Fire extinguisher
## 1375 Shampoo,Essentials,Security cameras on property,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Host greets you,Wifi,Hot water,Paid parking on premises,Air conditioning
## 1376 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Host greets you,Dryer,Wifi,TV,Air conditioning,Dedicated workspace,Iron,Fire extinguisher
## 1377 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Private entrance,Hair dryer,Lock on bedroom door,Host greets you,Dryer,Wifi,Free parking on premises,Air conditioning,Dedicated workspace,Iron
## 1378 Cleaning before checkout,Backyard,Bed linens,Hot water kettle,Cooking basics,Freezer,Washer,Bathtub,Hair dryer,Clothing storage,Host greets you,Outdoor furniture,Paid parking on premises,Dining table,Dedicated workspace,Pool,Wine glasses,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Extra pillows and blankets,Sauna,Cable TV,Hot water,Stove,BBQ grill,Iron,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 1379 Hangers,Bed linens,Hair dryer,Dedicated workspace,Free parking on premises,Security cameras on property,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Shampoo,Heating,Cable TV,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 1380 Shampoo,Building staff,Essentials,Long term stays allowed,Hair dryer,Lock on bedroom door,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Fire extinguisher
## 1381 Shampoo,Building staff,Essentials,Long term stays allowed,Hair dryer,Lock on bedroom door,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Fire extinguisher
## 1382 Shampoo,Building staff,Essentials,Long term stays allowed,Hair dryer,Lock on bedroom door,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm,Fire extinguisher
## 1383 Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Elevator,Dryer,Wifi,Gym,TV,Air conditioning,Dedicated workspace,Pool,Iron
## 1384 Cleaning before checkout,Backyard,Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Host greets you,Oven,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Private entrance,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Extra pillows and blankets,Heating,Cable TV,Hot water,Stove,BBQ grill,Iron,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 1385 Backyard,Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Host greets you,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Extra pillows and blankets,Heating,Cable TV,Hot water,Stove,BBQ grill,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 1386 Hangers,Bed linens,Washer,Single level home,Carbon monoxide alarm,Hair dryer,Host greets you,Dedicated workspace,Pool,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Microwave,Gym,Beachfront,Wifi,Smoke alarm,Extra pillows and blankets,Paid parking off premises,Hot water,Stove,Iron,Kitchen,Air conditioning
## 1387 Essentials,Kitchen,Long term stays allowed,Washer,Elevator,Lock on bedroom door,Host greets you,Dryer,Wifi,Gym,TV,Air conditioning,Free parking on premises,Pool,Iron
## 1388 Shampoo,Long term stays allowed,Carbon monoxide alarm,Hair dryer,Wifi,Hot water,TV,Air conditioning,Smoke alarm
## 1389 Cleaning before checkout,Hangers,Bed linens,Hot water kettle,Cooking basics,Washer,Bathtub,Clothing storage,Host greets you,Outdoor furniture,Paid parking on premises,Dining table,Dedicated workspace,Pool,Long term stays allowed,Outdoor dining area,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Extra pillows and blankets,Paid parking off premises,Cable TV,Hot water,Stove,BBQ grill,Iron,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 1390 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Oven,TV,Paid parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1391 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Hair dryer,Oven,TV,Paid parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Dryer,Wifi,Luggage dropoff allowed,Dishwasher,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1392 Keypad,Kitchen,Cooking basics,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,TV,Air conditioning,Dedicated workspace
## 1393 Shampoo,Building staff,Essentials,Paid parking off premises,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Dryer,Wifi,Hot water,TV,Air conditioning,Dedicated workspace,Smoke alarm,Luggage dropoff allowed
## 1394 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1395 Hangers,Washer,Single level home,TV,Free parking on premises,Pool,Dedicated workspace,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Gym,Wifi,Hot water,BBQ grill,Iron,Kitchen,Air conditioning,Dishes and silverware
## 1396 Shampoo,Essentials,Hangers,Long term stays allowed,Washer,Wifi,Free parking on premises,Gym,TV,Air conditioning,Dedicated workspace,Pool
## 1397 Cleaning before checkout,Hangers,Bed linens,Hot water kettle,Cooking basics,Freezer,Washer,Bathtub,Clothing storage,Host greets you,Outdoor furniture,Paid parking on premises,Dining table,Dedicated workspace,Pool,Wine glasses,Long term stays allowed,Outdoor dining area,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Paid parking off premises,Cable TV,Hot water,Stove,BBQ grill,Iron,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 1398 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Oven,Paid parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 1399 Toaster,Cleaning before checkout,Backyard,Bed linens,Hot water kettle,Cooking basics,Freezer,Washer,Carbon monoxide alarm,Bathtub,Clothing storage,Host greets you,Outdoor furniture,Dining table,Dedicated workspace,Pool,Wine glasses,Security cameras on property,Long term stays allowed,Outdoor dining area,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Extra pillows and blankets,Cable TV,Hot water,Stove,BBQ grill,Iron,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 1400 Hangers,Bed linens,Washer,Single level home,Free parking on premises,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Gym,Wifi,Stove,Iron,Essentials,Kitchen,Air conditioning
## 1401 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,TV,Dedicated workspace,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1402 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,TV,Dedicated workspace,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1403 Hangers,Washer,Hair dryer,Paid parking on premises,Lockbox,Dedicated workspace,Pool,Long term stays allowed,Lock on bedroom door,Dryer,Gym,Free street parking,Wifi,Shampoo,Paid parking off premises,Cable TV,Hot tub,Hot water,Iron,Essentials,Kitchen,Air conditioning,TV with standard cable
## 1404 Hangers,Coffee maker,Washer,Hair dryer,Host greets you,TV,Free parking on premises,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Elevator,Patio or balcony,Refrigerator,Gym,Smoke alarm,Heating,Hot tub,Hot water,BBQ grill,Iron,Kitchen,Air conditioning,Dishes and silverware
## 1405 Hangers,Bed linens,Cooking basics,Washer,Oven,Paid parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1406 Shampoo,Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Lock on bedroom door,First aid kit,Free parking on premises,Hot water,Free street parking,TV,Lockbox,Air conditioning,Dedicated workspace
## 1407 Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Lock on bedroom door,First aid kit,Free parking on premises,Hot water,Hot tub,Free street parking,Lockbox,Air conditioning,Dedicated workspace,Luggage dropoff allowed
## 1408 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Host greets you,TV,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Free street parking,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 1409 Backyard,Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Host greets you,Oven,TV,Dedicated workspace,Security cameras on property,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Patio or balcony,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Extra pillows and blankets,Paid parking off premises,Hot water,Stove,Iron,Essentials,Window guards,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 1410 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Hair dryer,Host greets you,Refrigerator,Wifi,Hot water,Stove,Gym,Pool,Air conditioning,Dishes and silverware
## 1411 Long term stays allowed,Hot tub,Pool,Paid parking on premises,Free parking on premises,Smoke alarm,Fire extinguisher
## 1412 Breakfast,Essentials,Hangers,Long term stays allowed,Elevator,Wifi,Air conditioning,Dedicated workspace
## 1413 Breakfast,Essentials,Hangers,Long term stays allowed,Elevator,Wifi,Air conditioning
## 1414 Shampoo,Breakfast,Essentials,Paid parking off premises,Washer,Hair dryer,Lock on bedroom door,Dryer,Wifi,Hot water,Air conditioning,Smoke alarm,Iron,Fire extinguisher
## 1415 Shampoo,Breakfast,Essentials,Building staff,Kitchen,Long term stays allowed,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm
## 1416 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,TV,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1417 Shampoo,Breakfast,Essentials,Security cameras on property,Hangers,Kitchen,Washer,Hair dryer,Lock on bedroom door,Dryer,Wifi,Air conditioning,Smoke alarm,Iron,Fire extinguisher
## 1418 Shampoo,Breakfast,Essentials,Hangers,Bed linens,Long term stays allowed,Washer,Hair dryer,Dryer,First aid kit,Wifi,Hot water,Air conditioning,Dedicated workspace,Smoke alarm,Luggage dropoff allowed,Fire extinguisher
## 1419 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Stove,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware
## 1420 Shampoo,Breakfast,Essentials,Hangers,Bed linens,Long term stays allowed,Washer,Hair dryer,Dryer,First aid kit,Wifi,Hot water,Air conditioning,Dedicated workspace,Smoke alarm,Luggage dropoff allowed,Fire extinguisher
## 1421 Indoor fireplace,Hangers,Washer,Hair dryer,TV,Free parking on premises,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Elevator,Dryer,Gym,Wifi,Shampoo,Breakfast,Heating,Hot tub,Iron,Essentials,Kitchen,Air conditioning
## 1422 Indoor fireplace,Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Host greets you,Oven,TV,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Stove,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 1423 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,High chair,Dedicated workspace,Pool,Crib,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Stove,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 1424 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1425 Backyard,Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,Oven,TV,Paid parking on premises,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Private entrance,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Extra pillows and blankets,Heating,Paid parking off premises,Hot tub,Hot water,Stove,BBQ grill,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 1426 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,TV,Dedicated workspace,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1427 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1428 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 1429 Hangers,Washer,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Free parking on premises,Pool,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Breakfast,Heating,Hot tub,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 1430 Indoor fireplace,Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Stove,Iron,Building staff,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 1431 Hangers,Cooking basics,Washer,Hair dryer,Host greets you,TV,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 1432 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Paid parking on premises,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1433 Essentials,Hangers,Long term stays allowed,First aid kit,Dedicated workspace,Fire extinguisher
## 1434 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Oven,Paid parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Heating,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 1435 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Paid parking on premises,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1436 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Oven,Paid parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Heating,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 1437 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1438 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Heating,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 1439 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Oven,Paid parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Heating,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 1440 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Paid parking on premises,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1441 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,TV,Dedicated workspace,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1442 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1443 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Dryer,Free street parking,Wifi,Luggage dropoff allowed,Dishwasher,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1444 Hangers,Bed linens,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Shower gel,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 1445 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1446 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Elevator,Wifi,Hot water,Free parking on premises,Air conditioning,Dedicated workspace
## 1447 Shampoo,Essentials,Hangers,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Air conditioning,Pool
## 1448 Shampoo,Essentials,Keypad,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Dryer,Wifi,Hot water,Free parking on premises,Air conditioning,Dedicated workspace
## 1449 Cleaning before checkout,Backyard,Hangers,Bed linens,Hot water kettle,Cooking basics,Freezer,Hair dryer,Bathtub,Clothing storage,Host greets you,Oven,Outdoor furniture,Paid parking on premises,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Wine glasses,Long term stays allowed,Private entrance,Elevator,Refrigerator,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Heating,Cable TV,Hot water,Stove,Body soap,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 1450 Sound system,Safe,Backyard,Cleaning before checkout,Hangers,Bed linens,Pool table,Hot water kettle,Freezer,Washer,Coffee maker,Cooking basics,Bathtub,Hair dryer,Clothing storage,Oven,Paid parking on premises,High chair,Children\\u2019s books and toys,Dedicated workspace,Crib,Dining table,Free parking on premises,Pool,Cleaning products,Wine glasses,Long term stays allowed,Private entrance,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Baby bath,Gym,Wifi,Smoke alarm,Board games,Luggage dropoff allowed,Shampoo,Breakfast,Dishwasher,Extra pillows and blankets,Heating,Conditioner,Paid parking off premises,Cable TV,Hot water,Stove,Body soap,BBQ grill,Iron,Essentials,Babysitter recommendations,Pack \\u2019n play/Travel crib,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 1451 Toaster,Cleaning before checkout,Bed linens,Hot water kettle,Freezer,Washer,Bathtub,Clothing storage,Oven,Dining table,Dedicated workspace,Crib,Long term stays allowed,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Extra pillows and blankets,Cable TV,Hot water,Stove,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 1452 Rice maker,Hangers,Hot water kettle,Cooking basics,Freezer,Washer,Single level home,Hair dryer,Lockbox,Dining table,Dedicated workspace,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Ceiling fan,Paid parking off premises,Cable TV,Stove,Iron,Bread maker,Shower gel,Essentials,Kitchen,38\\ TV with standard cable,First aid kit,Air conditioning,Dishes and silverware
## 1453 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1454 Cleaning before checkout,Hangers,Coffee maker,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Free parking on premises,Pool,Long term stays allowed,Private entrance,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Waterfront,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Heating,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1455 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,Oven,Dedicated workspace,Room-darkening shades,Long term stays allowed,Refrigerator,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Keypad,Paid parking off premises,Hot water,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1456 Hangers,Kitchen,Long term stays allowed,Washer,Elevator,Lock on bedroom door,Wifi,Hot water,Gym,TV,Air conditioning,Dedicated workspace,Pool
## 1457 Hangers,Washer,Hair dryer,TV,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 1458 Hangers,Bed linens,Cooking basics,Washer,Single level home,Hair dryer,Oven,TV,Paid parking on premises,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Gym,Wifi,Smoke alarm,Shampoo,Extra pillows and blankets,Heating,Paid parking off premises,Hot water,Stove,Iron,Building staff,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 1459 Indoor fireplace,Hangers,Bed linens,Washer,Hair dryer,Host greets you,TV,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Stove,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 1460 Toaster,Sound system,Cleaning before checkout,Backyard,Hangers,Bed linens,Record player,Hot water kettle,Freezer,Washer,Coffee maker,Cooking basics,Bathtub,Hair dryer,Clothing storage,Host greets you,Oven,Outdoor furniture,High chair,Children\\u2019s books and toys,Dedicated workspace,Crib,Dining table,Free parking on premises,Pool,Wine glasses,Long term stays allowed,Outdoor dining area,Private entrance,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Baby bath,Gym,Wifi,Children\\u2019s dinnerware,Smoke alarm,Board games,Luggage dropoff allowed,Shampoo,Breakfast,Extra pillows and blankets,Heating,Conditioner,Cable TV,Hot water,Stove,Body soap,BBQ grill,Iron,Essentials,Babysitter recommendations,Pack \\u2019n play/Travel crib,Kitchen,Changing table,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 1461 Hangers,Kitchen,Long term stays allowed,Washer,Carbon monoxide alarm,Elevator,Wifi,Air conditioning,Smoke alarm
## 1462 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Oven,TV,Paid parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1463 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Oven,TV,Paid parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1464 Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Dryer,Free street parking,Wifi,Luggage dropoff allowed,Dishwasher,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1465 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1466 Backyard,Hangers,Bed linens,Coffee maker,Cooking basics,Washer,Hair dryer,Oven,High chair,Children\\u2019s books and toys,Dedicated workspace,Crib,Free parking on premises,Pool,Long term stays allowed,Private entrance,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Dishwasher,Extra pillows and blankets,Heating,Cable TV,Hot tub,Hot water,Stove,BBQ grill,Iron,Essentials,Babysitter recommendations,Pack \\u2019n play/Travel crib,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 1467 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Paid parking on premises,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1468 Cleaning before checkout,Hangers,Bed linens,Hot water kettle,Cooking basics,Hair dryer,Clothing storage,Oven,High chair,Dedicated workspace,Dining table,Crib,Free parking on premises,Pool,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Heating,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 1469 Essentials,Kitchen,Long term stays allowed,Wifi,Hot water,Air conditioning
## 1470 Hangers,Bed linens,Washer,Carbon monoxide alarm,Hair dryer,Host greets you,TV,Dedicated workspace,Security cameras on property,Long term stays allowed,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Hot water,Iron,Essentials,Kitchen,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 1471 Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Carbon monoxide alarm,Elevator,Dryer,First aid kit,Wifi,Free parking on premises,Gym,Pool,TV,Air conditioning,Dedicated workspace,Smoke alarm,Fire extinguisher
## 1472 Hangers,Bed linens,Cooking basics,Washer,Oven,Paid parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1473 Hangers,Bed linens,Washer,Hair dryer,Oven,TV,High chair,Dedicated workspace,Pool,Crib,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Hot water,Stove,Iron,Essentials,Pack \\u2019n play/Travel crib,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 1474 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Elevator,Wifi,Hot water,Gym,Air conditioning,Dedicated workspace,Pool
## 1475 Shampoo,Breakfast,Essentials,Hangers,Long term stays allowed,Washer,Carbon monoxide alarm,Hair dryer,Lock on bedroom door,Dryer,Wifi,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 1476 Shampoo,Breakfast,Essentials,Hangers,Heating,Kitchen,Long term stays allowed,Washer,Wifi,Air conditioning,Free parking on premises,Pool,Iron
## 1477 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1478 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,TV,Dedicated workspace,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1479 Hangers,Bed linens,Washer,Single level home,Hair dryer,Dedicated workspace,Pool,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Microwave,Gym,Beachfront,Wifi,Smoke alarm,Extra pillows and blankets,Paid parking off premises,Hot water,Iron,Kitchen,Air conditioning
## 1480 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1481 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,TV,Paid parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1482 Security cameras on property,Hangers,Kitchen,Washer,Elevator,Lock on bedroom door,Free parking on premises,Wifi,Dedicated workspace
## 1483 Backyard,Bed linens,Cooking basics,Washer,Hair dryer,Host greets you,Oven,Dedicated workspace,Pool,Crib,Long term stays allowed,Private entrance,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Extra pillows and blankets,Heating,Cable TV,Hot water,Stove,BBQ grill,Iron,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 1484 Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Elevator,Wifi,Hot water,TV,Air conditioning,Pool
## 1485 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1486 Hangers,Bed linens,Cooking basics,Washer,Oven,Paid parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1487 Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Microwave,Stove,Dishes and silverware,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron
## 1488 Essentials,Long term stays allowed,Hair dryer,Elevator,Wifi,Hot water,Air conditioning,Iron
## 1489 Hangers,Bed linens,Cooking basics,Washer,Oven,Paid parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 1490 Essentials,Long term stays allowed,Hair dryer,Elevator,Wifi,Hot water,Air conditioning,Iron
## 1491 Essentials,Long term stays allowed,Hair dryer,Elevator,Wifi,Hot water,Air conditioning,Iron
## 1492 Essentials,Long term stays allowed,Hair dryer,Elevator,Wifi,Hot water,Air conditioning,Iron
## 1493 Dining table,Hangers,Bed linens,Kitchen,Long term stays allowed,Washer,Hair dryer,Cable TV,Refrigerator,Dryer,Wifi,Microwave,Air conditioning,Dedicated workspace,Smoke alarm,TV with standard cable,Iron
## 1494 Shampoo,Breakfast,Essentials,Security cameras on property,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Dryer,Wifi,Free parking on premises,Gym,Pool,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron
## 1495 Cleaning before checkout,Hangers,Bed linens,Hot water kettle,Cooking basics,Bathtub,Hair dryer,Clothing storage,Host greets you,Oven,High chair,Dedicated workspace,Dining table,Crib,Free parking on premises,Pool,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Shampoo,Breakfast,Heating,Cable TV,Hot water,Stove,Iron,Essentials,Babysitter recommendations,Pack \\u2019n play/Travel crib,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 1496 Shampoo,Essentials,Hangers,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Elevator,Wifi,Free parking on premises,Gym,Pool,Air conditioning,Dedicated workspace,Smoke alarm,Iron
## 1497 Backyard,Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Oven,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Extra pillows and blankets,Cable TV,Hot water,Stove,BBQ grill,Iron,Essentials,Babysitter recommendations,Pack \\u2019n play/Travel crib,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 1498 Backyard,Hangers,Cooking basics,Hair dryer,TV,Dedicated workspace,Pool,Long term stays allowed,Elevator,Refrigerator,Dryer,Microwave,Wifi,Smoke alarm,Breakfast,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Fire extinguisher
## 1499 Hangers,Coffee maker,Washer,Carbon monoxide alarm,Hair dryer,TV,Dedicated workspace,Free parking on premises,Pool,Long term stays allowed,Elevator,Lock on bedroom door,Refrigerator,Dryer,Gym,Free street parking,Wifi,Smoke alarm,Shampoo,Hot water,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## 1500 Backyard,Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Oven,High chair,Dedicated workspace,Free parking on premises,Crib,Pool,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Breakfast,Extra pillows and blankets,Cable TV,Hot water,Stove,BBQ grill,Iron,Essentials,Babysitter recommendations,Pack \\u2019n play/Travel crib,Kitchen,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 1501 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Air conditioning,Dishes and silverware
## 1502 Indoor fireplace,Hangers,Bed linens,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,Oven,High chair,Children\\u2019s books and toys,Dedicated workspace,Crib,Free parking on premises,Pool,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Extra pillows and blankets,Heating,Cable TV,Hot tub,Hot water,Stove,BBQ grill,Iron,Essentials,Babysitter recommendations,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 1503 Backyard,Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Oven,Dedicated workspace,Free parking on premises,Pool,Long term stays allowed,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Gym,Wifi,Luggage dropoff allowed,Shampoo,Extra pillows and blankets,Heating,Cable TV,Hot tub,Hot water,Stove,BBQ grill,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 1504 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Private entrance,Hair dryer,Lock on bedroom door,Host greets you,Dryer,Wifi,Free parking on premises,Air conditioning,Dedicated workspace,Iron
## 1505 Cleaning before checkout,Backyard,Bed linens,Hot water kettle,Cooking basics,Freezer,Washer,Bathtub,Clothing storage,Host greets you,Outdoor furniture,Paid parking on premises,Dining table,Dedicated workspace,Pool,Wine glasses,Long term stays allowed,Outdoor dining area,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Extra pillows and blankets,Cable TV,Hot water,Stove,BBQ grill,Iron,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 1506 Hangers,Cooking basics,Washer,Hair dryer,TV,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 1507 Hangers,Kitchen,Long term stays allowed,Washer,Elevator,Lock on bedroom door,Wifi,Hot water,TV,Air conditioning,Dedicated workspace
## 1508 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Elevator,Free parking on premises,Hot water,Hot tub,Gym,Air conditioning,Dedicated workspace,Pool
## 1509 Sound system,Backyard,Hangers,Bed linens,Coffee maker,Freezer,Cooking basics,Washer,Carbon monoxide alarm,Hair dryer,Oven,High chair,Children\\u2019s books and toys,Dedicated workspace,Free parking on premises,Pool,Game console,Long term stays allowed,Private entrance,Elevator,Patio or balcony,Refrigerator,Dryer,Microwave,Gym,Wifi,Children\\u2019s dinnerware,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Dishwasher,Extra pillows and blankets,Heating,Conditioner,Cable TV,Hot water,Stove,Body soap,BBQ grill,Iron,Essentials,Babysitter recommendations,Pack \\u2019n play/Travel crib,Kitchen,First aid kit,Dishes and silverware,Air conditioning,Shower gel,TV with standard cable,Fire extinguisher
## 1510 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Private entrance,Hair dryer,Elevator,Dryer,First aid kit,Wifi,Pool,Gym,TV,Air conditioning,Dedicated workspace,Smoke alarm,Iron
## 1511 Shampoo,Essentials,Security cameras on property,Long term stays allowed,Washer,TV,Wifi,Free parking on premises,Iron
## 1512 Shampoo,Breakfast,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Dryer,First aid kit,Wifi,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 1513 Shampoo,Breakfast,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Dryer,First aid kit,Wifi,Air conditioning,Dedicated workspace,Smoke alarm,Iron,Fire extinguisher
## 1514 Essentials,Hangers,Coffee maker,Kitchen,Cooking basics,Keypad,Washer,Long term stays allowed,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,TV,Air conditioning,Dedicated workspace,Dishes and silverware,Iron
## 1515 Hangers,Bed linens,Kitchen,Long term stays allowed,Washer,Refrigerator,Dryer,Wifi,Microwave,Stove,Dishes and silverware,TV,Gym,Air conditioning,Dedicated workspace,Smoke alarm,Pool,Iron
## 1516 Hangers,Bed linens,Freezer,Washer,Hair dryer,Bathtub,TV,Dedicated workspace,Free parking on premises,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Clothing storage: walk-in closet,closet,and dresser,Refrigerator,Dryer,Patio or balcony,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Heating,Conditioner,Hot water,BBQ grill,Iron,Building staff,Essentials,First aid kit,Shared pool,Air conditioning,Shower gel
## 1517 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware
## 1518 Essentials,Hangers,Keypad,Heating,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Hot water,Stove,TV,Air conditioning,Dedicated workspace,Dishes and silverware,Iron
## 1519 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Private entrance,Hair dryer,Elevator,Dryer,Wifi,Pool,Gym,TV,Air conditioning,Smoke alarm,Iron,Fire extinguisher
## 1520 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Oven,TV,Paid parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1521 Shampoo,Breakfast,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,First aid kit,Wifi,Free parking on premises,Air conditioning,Dedicated workspace,Iron
## 1522 Shampoo,Essentials,Heating,Long term stays allowed,Carbon monoxide alarm,First aid kit,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm
## 1523 Shampoo,Essentials,Heating,Long term stays allowed,Carbon monoxide alarm,First aid kit,Wifi,TV,Air conditioning,Dedicated workspace,Smoke alarm
## 1524 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,TV,Dedicated workspace,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1525 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1526 Shampoo,Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Dryer,First aid kit,Wifi,Hot water,Air conditioning,Dedicated workspace,Iron
## 1527 Cleaning before checkout,Backyard,Hangers,Bed linens,Cooking basics,Washer,Single level home,Bathtub,Hair dryer,Ethernet connection,Paid parking on premises,Dedicated workspace,Crib,Security cameras on property,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Luggage dropoff allowed,Shampoo,Breakfast,Extra pillows and blankets,Heating,Cable TV,Hot tub,Hot water,Stove,Iron,Building staff,Essentials,Kitchen,Air conditioning,Dishes and silverware,TV with standard cable
## 1528 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,TV,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Elevator,Refrigerator,Dryer,Microwave,Gym,Wifi,Smoke alarm,Shampoo,Heating,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware,Fire extinguisher
## 1529 Shampoo,Essentials,Security cameras on property,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Lock on bedroom door,Elevator,Wifi,Pool,Gym,Air conditioning,Dishes and silverware,Iron
## 1530 Shampoo,Essentials,Backyard,Kitchen,Cooking basics,Long term stays allowed,Private entrance,Hair dryer,Lock on bedroom door,Wifi,Microwave,Pool,TV,Air conditioning,Smoke alarm,Iron,Fire extinguisher
## 1531 Shampoo,Essentials,Hangers,Bed linens,Luggage dropoff allowed,Hair dryer,Elevator,Wifi,Hot water,Pool,TV,Air conditioning,Free parking on premises,Smoke alarm,Iron
## 1532 Shampoo,Breakfast,Indoor fireplace,Security cameras on property,Long term stays allowed,Hair dryer,Dryer,Wifi,Air conditioning,Smoke alarm,Iron,Fire extinguisher
## 1533 Hangers,Bed linens,Cooking basics,Washer,Oven,Paid parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1534 Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Microwave,Gym,TV,Air conditioning,Pool,Iron
## 1535 Hangers,Bed linens,Cooking basics,Washer,Oven,TV,Paid parking on premises,Dedicated workspace,Long term stays allowed,Private entrance,Elevator,Lock on bedroom door,Refrigerator,Dryer,Microwave,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Paid parking off premises,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## 1536 Essentials,Hangers,Kitchen,Long term stays allowed,Washer,Hair dryer,Elevator,Refrigerator,Dryer,Wifi,Microwave,Gym,TV,Air conditioning,Pool,Iron
## 1537 Hangers,Bed linens,Cooking basics,Washer,Hair dryer,Oven,Baking sheet,Dedicated workspace,Free parking on premises,Room-darkening shades,Pool,Long term stays allowed,Lock on bedroom door,Refrigerator,Dryer,Microwave,Gym,Free street parking,Wifi,Shampoo,Breakfast,Extra pillows and blankets,Cable TV,Hot water,Stove,Iron,Essentials,Kitchen,First aid kit,Air conditioning,Dishes and silverware,TV with standard cable,Fire extinguisher
## 1538 Hangers,Bed linens,Cooking basics,Washer,Single level home,Oven,Paid parking on premises,Dedicated workspace,Pool,Long term stays allowed,Private entrance,Lock on bedroom door,Refrigerator,Dryer,Microwave,Free street parking,Wifi,Luggage dropoff allowed,Extra pillows and blankets,Keypad,Heating,Hot water,Stove,Iron,Essentials,Kitchen,Air conditioning,Dishes and silverware
## last_review no_of_am Amenities_Wifi Amenities_Shampoo Amenities_Kitchen
## 1 2021-12-10 11 1 1 1
## 2 2021-09-15 30 1 1 0
## 3 2021-12-26 15 1 1 1
## 4 2021-11-27 34 1 1 1
## 5 2021-12-12 28 1 1 1
## 6 2020-03-16 19 1 1 0
## 7 2021-10-24 19 1 1 1
## 8 2021-12-20 23 1 1 1
## 9 2021-12-10 45 1 1 1
## 10 2021-12-04 33 1 1 1
## 11 2020-03-19 28 1 1 1
## 12 2021-06-13 26 1 1 1
## 13 2021-12-19 30 1 1 1
## 14 2021-12-12 15 1 1 1
## 15 2020-04-02 14 1 1 1
## 16 2021-12-19 58 1 1 1
## 17 2021-12-23 23 1 1 1
## 18 2021-03-13 27 1 1 1
## 19 2021-11-17 23 1 1 1
## 20 2021-11-10 25 1 1 1
## 21 2020-04-02 23 1 1 1
## 22 2021-12-10 27 1 1 1
## 23 2021-12-22 51 1 1 1
## 24 2021-05-14 23 1 1 1
## 25 2021-12-06 19 1 1 1
## 26 2020-03-31 30 1 1 1
## 27 2021-12-20 19 1 1 1
## 28 2020-10-18 28 1 1 1
## 29 2021-12-22 19 1 1 1
## 30 2021-10-15 23 1 1 1
## 31 2021-09-08 19 1 1 1
## 32 2020-02-15 22 1 1 0
## 33 2021-05-16 18 1 1 0
## 34 2021-09-01 21 1 1 0
## 35 2021-12-06 14 1 1 1
## 36 2021-12-24 35 1 1 1
## 37 2021-06-03 17 1 1 0
## 38 2021-06-20 29 1 1 1
## 39 2021-12-14 31 1 1 1
## 40 2021-11-03 18 1 1 1
## 41 2021-12-10 19 1 1 1
## 42 2021-06-06 26 1 1 1
## 43 2021-12-07 15 1 1 1
## 44 2021-12-11 30 1 1 1
## 45 2020-03-23 12 1 0 0
## 46 2021-03-20 23 1 1 1
## 47 2020-02-09 14 1 1 0
## 48 2021-12-06 22 1 1 1
## 49 2021-11-13 21 1 1 1
## 50 2021-12-18 15 1 1 1
## 51 2021-12-21 14 1 1 1
## 52 2020-03-03 10 1 1 0
## 53 2021-07-24 19 1 1 1
## 54 2021-12-08 29 1 1 1
## 55 2021-12-18 25 1 1 1
## 56 2021-12-09 21 1 1 1
## 57 2021-12-16 29 1 1 1
## 58 2021-10-18 32 1 1 1
## 59 2021-11-25 23 1 0 1
## 60 2021-12-16 30 1 0 1
## 61 2021-12-11 15 1 1 1
## 62 2021-12-10 20 1 1 1
## 63 2021-12-02 29 1 1 1
## 64 2021-10-30 21 1 1 1
## 65 2020-03-16 33 1 1 1
## 66 2020-02-20 23 1 1 1
## 67 2021-10-05 18 1 1 0
## 68 2020-02-09 24 1 1 1
## 69 2021-12-12 27 1 1 1
## 70 2021-12-07 32 1 1 1
## 71 2020-02-15 23 1 1 0
## 72 2021-01-16 13 1 1 0
## 73 2021-12-12 11 1 0 1
## 74 2021-06-28 20 1 1 1
## 75 2021-01-19 18 1 1 1
## 76 2021-12-05 19 1 0 0
## 77 2021-10-28 15 1 1 1
## 78 2020-03-09 17 1 1 1
## 79 2021-12-15 16 1 1 0
## 80 2021-12-12 21 1 1 1
## 81 2021-10-09 21 1 1 1
## 82 2021-02-21 21 1 1 1
## 83 2020-03-12 25 1 1 1
## 84 2020-08-31 28 1 1 1
## 85 2021-08-14 20 1 1 1
## 86 2021-12-24 31 1 1 1
## 87 2021-12-04 20 1 0 0
## 88 2021-04-30 27 1 0 1
## 89 2020-03-15 15 1 1 1
## 90 2021-12-01 29 1 1 1
## 91 2020-02-21 9 1 1 0
## 92 2020-07-30 33 1 1 1
## 93 2020-03-12 19 1 1 0
## 94 2021-12-07 26 1 1 1
## 95 2021-09-08 22 1 1 1
## 96 2021-12-09 21 1 1 1
## 97 2021-01-16 20 1 1 1
## 98 2021-08-05 21 1 1 1
## 99 2021-11-28 25 1 1 1
## 100 2020-07-03 23 1 1 1
## 101 2021-12-10 14 1 1 1
## 102 2020-01-28 18 1 1 0
## 103 2020-07-14 44 1 1 1
## 104 2021-12-09 22 1 0 0
## 105 2020-12-20 40 1 1 1
## 106 2021-11-21 21 1 1 1
## 107 2021-08-21 20 1 0 1
## 108 2020-11-25 21 1 1 1
## 109 2021-12-24 29 1 1 1
## 110 2021-12-19 21 1 1 0
## 111 2020-04-14 24 1 1 1
## 112 2021-11-24 28 1 1 1
## 113 2021-07-26 24 1 0 1
## 114 2021-11-13 28 1 1 1
## 115 2021-12-04 23 1 0 1
## 116 2021-10-31 21 1 0 0
## 117 2021-12-16 22 1 0 0
## 118 2019-12-30 28 1 1 1
## 119 2020-03-13 16 1 1 0
## 120 2021-09-04 26 1 1 1
## 121 2020-03-13 23 1 1 1
## 122 2021-12-11 20 1 1 1
## 123 2021-11-20 29 1 1 1
## 124 2021-12-14 25 1 1 1
## 125 2021-11-30 23 1 0 1
## 126 2020-02-23 23 1 1 0
## 127 2021-08-17 27 1 0 1
## 128 2021-12-21 57 0 1 1
## 129 2020-12-26 29 1 1 1
## 130 2021-12-03 21 1 1 1
## 131 2021-12-22 29 1 1 1
## 132 2021-09-12 29 1 1 1
## 133 2019-06-28 11 1 1 0
## 134 2021-02-27 27 1 1 1
## 135 2021-04-15 18 1 1 1
## 136 2021-03-16 25 1 1 1
## 137 2020-02-22 26 1 1 1
## 138 2021-11-23 28 1 1 1
## 139 2021-12-05 25 1 1 1
## 140 2021-11-08 24 1 0 1
## 141 2021-10-14 27 1 1 1
## 142 2020-03-13 25 1 1 0
## 143 2021-02-21 14 1 1 0
## 144 2020-05-15 36 1 1 1
## 145 2021-12-10 15 1 1 1
## 146 2020-02-03 24 1 1 1
## 147 2021-12-05 19 1 1 0
## 148 2021-11-29 31 1 1 1
## 149 2021-10-01 19 1 1 0
## 150 2020-02-10 24 1 1 1
## 151 2020-03-09 16 1 1 0
## 152 2021-12-03 39 1 1 1
## 153 2020-04-28 17 1 0 0
## 154 2020-01-18 18 1 1 1
## 155 2021-12-15 20 1 0 0
## 156 2020-03-21 16 1 1 0
## 157 2021-12-07 26 1 1 1
## 158 2021-11-29 24 1 1 1
## 159 2021-12-21 28 1 1 1
## 160 2021-07-30 16 1 1 0
## 161 2021-12-04 26 1 1 0
## 162 2020-03-03 25 1 1 1
## 163 2021-08-18 20 1 1 1
## 164 2020-01-31 27 1 1 1
## 165 2020-02-06 23 1 1 1
## 166 2020-03-09 14 1 0 1
## 167 2020-04-01 24 1 1 1
## 168 2021-10-12 65 1 1 1
## 169 2021-03-26 19 1 1 0
## 170 2020-03-12 27 1 1 1
## 171 2021-11-15 28 1 1 1
## 172 2020-09-26 20 1 0 1
## 173 2021-03-14 13 1 1 0
## 174 2021-10-24 15 1 1 1
## 175 2021-11-26 19 1 0 1
## 176 2021-05-05 19 1 0 1
## 177 2021-11-30 19 1 0 1
## 178 2020-02-07 23 1 1 1
## 179 2021-04-07 17 1 0 0
## 180 2021-05-24 29 1 1 1
## 181 2021-07-02 19 1 0 1
## 182 2020-03-12 16 1 1 0
## 183 2021-09-24 24 1 1 1
## 184 2021-04-27 20 1 0 0
## 185 2020-02-29 12 1 0 1
## 186 2021-12-01 21 1 0 0
## 187 2021-12-13 12 1 1 1
## 188 2019-07-10 17 1 1 0
## 189 2021-04-27 28 1 1 1
## 190 2020-03-10 24 1 1 1
## 191 2021-12-03 17 1 0 1
## 192 2021-03-31 15 1 1 1
## 193 2020-03-10 15 1 1 0
## 194 2021-11-03 15 1 1 1
## 195 2021-12-01 15 1 1 1
## 196 2021-10-10 15 1 1 1
## 197 2019-06-29 18 1 1 0
## 198 2020-01-13 22 1 0 1
## 199 2021-11-21 19 1 0 0
## 200 2020-02-25 12 1 0 0
## 201 2021-11-25 35 1 1 1
## 202 2021-12-05 22 1 0 0
## 203 2020-03-06 31 1 1 1
## 204 2020-03-09 15 1 1 0
## 205 2021-12-05 25 1 1 1
## 206 2021-06-01 18 1 1 1
## 207 2020-01-15 24 1 1 1
## 208 2020-03-06 26 1 1 1
## 209 2020-02-18 21 1 0 0
## 210 2021-01-13 17 1 0 1
## 211 2021-07-24 16 1 0 1
## 212 2021-12-01 24 1 1 0
## 213 2020-01-26 23 1 1 1
## 214 2021-08-05 19 1 0 0
## 215 2020-08-01 22 1 1 1
## 216 2020-12-18 32 1 1 1
## 217 2020-03-15 23 1 1 1
## 218 2020-12-05 24 1 1 1
## 219 2020-10-06 23 1 1 0
## 220 2020-05-30 32 1 1 1
## 221 2020-01-25 24 1 1 0
## 222 2021-07-21 13 1 1 0
## 223 2020-10-18 25 1 1 1
## 224 2021-12-08 36 1 1 1
## 225 2020-01-14 19 1 1 0
## 226 2019-08-24 14 1 1 0
## 227 2020-02-13 25 1 0 0
## 228 2021-12-11 29 1 1 1
## 229 2021-02-15 12 1 1 0
## 230 2020-07-14 26 1 1 1
## 231 2020-02-10 24 1 1 1
## 232 2019-07-28 18 1 1 1
## 233 2021-12-13 19 1 0 0
## 234 2021-12-17 34 1 1 1
## 235 2021-11-18 36 1 1 1
## 236 2020-04-24 28 1 1 1
## 237 2020-02-07 23 1 1 0
## 238 2021-04-13 14 1 0 1
## 239 2021-12-17 23 1 1 1
## 240 2021-12-02 27 1 1 1
## 241 2021-05-02 32 1 1 1
## 242 2020-07-28 13 0 1 0
## 243 2019-06-20 10 1 1 1
## 244 2020-03-13 38 1 1 1
## 245 2019-09-25 17 1 0 1
## 246 2020-02-08 23 1 1 1
## 247 2020-02-23 26 1 1 1
## 248 2021-04-19 22 1 1 1
## 249 2021-07-17 12 1 0 1
## 250 2021-09-01 25 1 0 1
## 251 2020-01-16 28 1 0 1
## 252 2020-03-09 33 1 1 1
## 253 2021-12-14 21 1 0 0
## 254 2020-03-24 22 1 1 1
## 255 2020-01-28 20 1 1 0
## 256 2020-02-17 19 1 1 0
## 257 2020-08-28 16 1 0 1
## 258 2021-12-18 24 1 1 1
## 259 2021-09-18 27 1 1 1
## 260 2020-12-11 24 1 1 1
## 261 2021-12-19 19 1 1 1
## 262 2021-03-31 17 1 0 1
## 263 2020-02-10 31 1 1 1
## 264 2019-07-28 35 1 1 1
## 265 2020-02-01 24 1 1 1
## 266 2021-10-02 20 1 0 1
## 267 2020-03-11 9 1 0 0
## 268 2019-12-18 15 1 1 0
## 269 2021-01-31 16 1 1 0
## 270 2021-03-15 26 1 1 1
## 271 2020-03-15 43 1 1 1
## 272 2021-11-17 38 1 1 1
## 273 2020-02-28 16 1 0 1
## 274 2021-08-02 31 1 1 1
## 275 2021-12-18 18 1 1 1
## 276 2021-11-01 17 1 0 1
## 277 2019-10-11 30 1 1 1
## 278 2021-05-30 20 1 0 1
## 279 2020-02-12 23 1 0 1
## 280 2021-09-18 36 1 1 1
## 281 2021-01-03 27 1 1 1
## 282 2021-12-22 29 1 1 1
## 283 2020-01-23 19 1 0 1
## 284 2021-09-04 26 1 1 1
## 285 2021-12-13 17 1 0 1
## 286 2020-05-20 28 1 1 1
## 287 2021-12-10 29 1 1 1
## 288 2021-12-12 41 1 1 1
## 289 2021-12-14 14 1 1 1
## 290 2021-12-17 16 1 1 1
## 291 2020-01-31 26 1 1 1
## 292 2020-09-16 19 1 0 1
## 293 2020-04-15 34 1 1 1
## 294 2021-09-30 22 1 1 1
## 295 2020-03-24 24 1 1 1
## 296 2020-02-16 22 1 0 1
## 297 2021-09-21 39 1 1 1
## 298 2019-12-25 19 1 0 1
## 299 2020-01-28 16 1 1 0
## 300 2021-02-14 13 1 0 1
## 301 2021-12-08 18 1 0 1
## 302 2021-02-15 36 1 1 1
## 303 2020-01-10 22 1 0 1
## 304 2020-04-25 19 1 0 1
## 305 2021-07-24 19 1 0 1
## 306 2020-01-20 20 1 0 1
## 307 2020-03-05 17 1 1 0
## 308 2020-01-16 13 1 1 0
## 309 2021-11-12 20 1 1 0
## 310 2020-11-24 19 1 1 1
## 311 2020-01-14 10 1 1 0
## 312 2020-09-20 24 1 1 0
## 313 2020-03-15 24 1 1 1
## 314 2021-12-19 25 1 1 0
## 315 2021-11-30 28 1 1 1
## 316 2020-02-17 20 1 1 0
## 317 2020-08-12 19 1 0 1
## 318 2021-12-11 29 1 1 0
## 319 2020-07-31 19 1 0 1
## 320 2021-12-12 34 1 1 1
## 321 2020-04-14 18 1 0 1
## 322 2021-12-12 37 1 1 1
## 323 2021-12-02 25 1 0 1
## 324 2020-04-01 23 1 1 0
## 325 2021-11-17 25 1 1 1
## 326 2020-01-26 23 1 1 1
## 327 2020-01-25 13 1 1 0
## 328 2021-12-08 36 1 1 1
## 329 2021-07-27 21 1 1 1
## 330 2021-11-25 17 1 1 0
## 331 2020-01-09 22 1 1 1
## 332 2021-02-26 16 1 0 1
## 333 2021-10-26 28 1 1 1
## 334 2021-12-18 22 1 1 0
## 335 2021-01-01 14 1 1 0
## 336 2020-02-15 3 0 0 0
## 337 2020-02-15 3 0 0 0
## 338 2020-03-09 11 1 1 1
## 339 2020-02-17 22 1 1 1
## 340 2020-03-04 30 1 1 1
## 341 2021-12-25 14 1 1 1
## 342 2020-01-20 24 1 1 1
## 343 2021-08-14 18 1 0 1
## 344 2021-10-13 31 1 1 1
## 345 2020-01-14 19 1 1 0
## 346 2020-03-30 16 1 0 1
## 347 2020-01-19 11 1 1 0
## 348 2021-05-04 24 1 1 1
## 349 2021-11-12 24 1 0 1
## 350 2021-08-28 21 1 1 1
## 351 2021-08-15 21 1 1 1
## 352 2020-11-29 25 1 1 1
## 353 2020-01-21 24 1 1 1
## 354 2020-02-07 23 1 1 1
## 355 2020-03-15 18 1 0 1
## 356 2020-01-11 23 1 1 1
## 357 2020-03-02 26 1 1 0
## 358 2021-11-08 18 1 1 0
## 359 2019-12-08 35 1 1 1
## 360 2021-07-12 42 1 1 1
## 361 2020-03-10 20 1 0 0
## 362 2020-06-24 24 1 1 1
## 363 2020-12-13 12 1 1 0
## 364 2020-01-09 17 1 1 1
## 365 2021-03-10 18 1 0 1
## 366 2021-08-12 13 1 1 0
## 367 2021-12-13 19 1 1 1
## 368 2021-11-09 24 1 1 1
## 369 2021-06-26 18 1 0 1
## 370 2020-02-18 18 1 0 1
## 371 2020-03-03 11 1 0 0
## 372 2019-07-24 21 1 1 0
## 373 2019-07-03 18 1 1 1
## 374 2020-02-03 18 1 0 1
## 375 2019-12-25 16 1 0 0
## 376 2019-11-20 17 1 1 1
## 377 2020-02-17 22 1 0 1
## 378 2019-12-15 16 1 0 0
## 379 2021-07-23 18 1 0 1
## 380 2019-10-05 32 1 1 1
## 381 2021-10-21 22 1 0 1
## 382 2020-02-15 14 1 1 0
## 383 2020-01-14 18 1 1 0
## 384 2020-12-31 29 1 1 1
## 385 2021-12-17 28 1 1 1
## 386 2020-09-11 26 1 1 1
## 387 2021-11-30 20 1 1 1
## 388 2021-12-07 24 1 1 1
## 389 2021-12-20 29 1 1 1
## 390 2020-01-04 24 1 1 1
## 391 2020-02-08 24 1 1 1
## 392 2020-01-15 19 1 0 1
## 393 2021-12-22 32 1 1 1
## 394 2020-02-14 10 1 0 0
## 395 2020-01-02 33 1 1 1
## 396 2021-08-26 27 1 1 1
## 397 2019-11-25 22 1 1 1
## 398 2021-01-09 25 1 1 1
## 399 2021-10-16 27 1 1 1
## 400 2020-02-19 21 1 1 0
## 401 2020-02-15 23 1 1 1
## 402 2021-10-14 24 1 1 0
## 403 2020-02-17 9 1 0 0
## 404 2021-12-12 17 1 1 1
## 405 2020-02-06 15 1 1 0
## 406 2021-11-29 34 1 1 1
## 407 2021-10-14 38 1 1 1
## 408 2020-01-13 22 1 1 1
## 409 2021-12-12 58 1 1 1
## 410 2020-03-24 15 1 1 0
## 411 2021-09-23 21 1 1 1
## 412 2020-12-09 20 1 1 1
## 413 2020-01-27 17 1 0 1
## 414 2020-03-02 16 1 0 1
## 415 2020-03-21 18 1 0 1
## 416 2021-08-23 19 1 0 1
## 417 2021-03-01 18 1 0 1
## 418 2021-12-19 58 1 1 1
## 419 2020-02-04 19 1 0 0
## 420 2020-03-31 13 1 1 0
## 421 2020-02-19 25 1 1 1
## 422 2020-02-14 15 1 0 1
## 423 2019-12-03 14 1 0 1
## 424 2020-05-06 21 1 1 1
## 425 2020-01-31 22 1 0 1
## 426 2020-01-26 24 1 1 0
## 427 2020-10-24 18 1 0 0
## 428 2019-11-22 19 1 1 0
## 429 2021-01-23 32 1 1 1
## 430 2020-02-10 24 1 1 0
## 431 2020-03-03 15 1 1 0
## 432 2021-02-17 30 1 1 1
## 433 2020-07-09 17 1 0 1
## 434 2020-08-12 20 1 0 1
## 435 2020-03-09 12 1 1 0
## 436 2021-09-19 24 1 1 1
## 437 2021-12-09 33 1 1 1
## 438 2021-11-17 24 1 1 1
## 439 2021-04-09 22 1 0 1
## 440 2021-11-27 38 1 1 1
## 441 2021-12-09 39 1 1 1
## 442 2020-03-02 28 1 1 1
## 443 2021-11-20 20 1 0 1
## 444 2021-08-26 19 1 1 1
## 445 2019-05-06 17 1 0 0
## 446 2021-11-14 30 1 1 1
## 447 2020-01-18 27 1 0 1
## 448 2021-09-10 36 1 1 1
## 449 2021-01-21 15 1 0 1
## 450 2021-01-05 19 1 0 1
## 451 2021-07-05 25 1 0 1
## 452 2020-01-23 21 1 1 0
## 453 2020-02-09 11 1 1 0
## 454 2021-11-29 24 1 1 1
## 455 2020-02-05 31 1 1 1
## 456 2020-06-07 18 1 0 1
## 457 2020-02-01 15 0 1 0
## 458 2021-08-28 17 1 1 1
## 459 2020-02-16 24 1 1 1
## 460 2021-10-31 28 1 1 1
## 461 2020-09-28 17 1 0 1
## 462 2020-03-04 15 1 1 1
## 463 2021-11-17 28 1 1 1
## 464 2021-12-23 32 1 0 1
## 465 2021-12-08 12 1 1 1
## 466 2021-11-05 24 1 0 1
## 467 2020-05-10 40 1 1 1
## 468 2021-12-09 13 1 1 1
## 469 2020-01-27 17 1 1 1
## 470 2020-03-08 10 1 0 0
## 471 2021-08-13 36 1 1 1
## 472 2021-05-30 15 1 0 1
## 473 2020-03-02 17 1 1 0
## 474 2020-02-08 19 1 0 1
## 475 2019-12-09 9 1 0 1
## 476 2019-11-17 17 1 0 0
## 477 2020-02-22 39 1 1 1
## 478 2021-10-17 35 1 1 1
## 479 2021-01-24 22 1 1 1
## 480 2020-02-09 36 1 1 1
## 481 2021-12-13 35 1 1 1
## 482 2019-08-10 12 1 1 0
## 483 2021-09-02 20 1 0 1
## 484 2021-08-14 19 1 1 0
## 485 2020-01-19 21 1 1 1
## 486 2020-12-29 17 1 0 1
## 487 2020-02-05 14 1 1 0
## 488 2021-05-30 15 1 1 0
## 489 2020-02-28 16 1 1 0
## 490 2020-01-29 17 1 1 0
## 491 2020-01-17 15 1 1 0
## 492 2020-11-28 16 1 1 0
## 493 2021-12-05 11 1 1 0
## 494 2020-12-25 23 1 1 1
## 495 2021-12-02 35 1 1 1
## 496 2021-12-14 34 1 1 1
## 497 2021-07-30 17 1 1 1
## 498 2021-09-01 26 1 0 1
## 499 2021-09-12 18 1 1 1
## 500 2021-05-06 16 1 0 1
## 501 2021-06-09 16 1 0 1
## 502 2020-01-30 15 1 0 1
## 503 2020-01-22 24 1 1 1
## 504 2021-10-02 30 1 1 0
## 505 2019-12-27 25 1 1 0
## 506 2020-10-04 19 1 1 1
## 507 2020-02-21 18 1 1 0
## 508 2021-12-22 43 1 1 1
## 509 2019-09-06 12 1 1 0
## 510 2020-01-19 38 1 1 1
## 511 2020-01-27 24 1 0 1
## 512 2019-12-16 19 1 1 0
## 513 2021-07-11 34 1 1 1
## 514 2021-01-01 18 1 1 1
## 515 2020-01-06 7 1 1 0
## 516 2020-05-09 27 1 1 0
## 517 2020-02-13 15 1 1 0
## 518 2020-01-07 20 1 1 1
## 519 2020-08-23 22 1 0 0
## 520 2020-11-01 31 1 1 1
## 521 2021-10-28 29 1 1 1
## 522 2021-12-12 39 1 1 1
## 523 2021-10-15 14 1 0 1
## 524 2020-08-06 21 1 0 1
## 525 2021-09-05 22 1 1 1
## 526 2021-08-25 21 1 1 1
## 527 2021-11-26 14 1 1 1
## 528 2021-12-17 12 1 1 1
## 529 2021-10-23 37 1 1 1
## 530 2021-07-31 47 1 1 1
## 531 2020-02-07 37 1 1 1
## 532 2021-04-17 38 1 1 1
## 533 2021-05-24 37 1 1 1
## 534 2020-01-01 17 1 1 0
## 535 2021-11-04 37 1 1 1
## 536 2021-04-29 15 1 1 1
## 537 2019-08-17 18 1 0 1
## 538 2020-02-12 24 1 1 1
## 539 2020-01-13 8 1 1 0
## 540 2019-12-08 24 1 1 0
## 541 2020-03-17 12 1 1 0
## 542 2021-06-15 29 1 1 1
## 543 2021-12-12 28 1 1 0
## 544 2021-08-25 34 1 1 1
## 545 2020-01-27 9 1 0 1
## 546 2021-05-10 25 1 1 1
## 547 2020-02-13 27 1 0 1
## 548 2021-07-20 19 1 1 1
## 549 2019-11-24 18 1 1 0
## 550 2020-03-21 37 1 1 1
## 551 2021-10-11 16 1 0 1
## 552 2021-06-18 18 1 0 1
## 553 2020-03-01 16 1 0 1
## 554 2021-10-03 37 1 1 1
## 555 2020-02-02 17 1 1 1
## 556 2021-04-09 28 1 1 1
## 557 2020-03-18 19 1 1 0
## 558 2020-03-27 9 1 1 0
## 559 2020-04-04 15 1 1 0
## 560 2021-11-11 25 1 1 1
## 561 2021-12-03 19 1 1 1
## 562 2021-12-04 16 1 1 1
## 563 2021-12-19 24 1 1 0
## 564 2020-01-17 30 1 1 1
## 565 2021-01-31 15 1 0 0
## 566 2021-10-23 14 1 0 1
## 567 2019-11-16 15 1 1 0
## 568 2019-05-01 18 1 0 1
## 569 2019-08-04 29 1 1 1
## 570 2020-02-23 16 1 0 1
## 571 2019-11-23 17 1 1 1
## 572 2021-07-16 24 1 0 1
## 573 2020-01-22 22 1 0 1
## 574 2020-03-22 39 1 1 1
## 575 2021-12-18 40 1 1 1
## 576 2019-11-07 13 1 1 1
## 577 2019-12-28 11 1 1 0
## 578 2019-08-21 21 1 1 1
## 579 2020-04-25 16 1 0 1
## 580 2020-04-08 22 1 1 0
## 581 2019-09-24 17 1 1 1
## 582 2020-03-25 26 1 1 1
## 583 2021-05-04 18 1 1 1
## 584 2021-05-22 31 1 1 0
## 585 2021-04-19 14 1 1 0
## 586 2021-11-30 17 1 0 1
## 587 2021-12-13 25 1 1 1
## 588 2021-10-10 24 1 0 1
## 589 2021-12-14 25 1 1 1
## 590 2021-11-09 20 1 1 0
## 591 2021-11-27 14 1 1 1
## 592 2020-02-10 17 1 0 1
## 593 2021-12-11 15 1 0 1
## 594 2021-05-01 16 1 0 1
## 595 2020-01-19 12 1 1 1
## 596 2020-02-10 19 1 0 0
## 597 2021-11-28 16 1 0 1
## 598 2021-08-20 20 1 1 1
## 599 2020-01-12 27 1 1 1
## 600 2020-01-31 18 1 0 1
## 601 2020-01-04 26 1 1 1
## 602 2021-06-21 20 1 1 1
## 603 2020-01-25 25 1 1 1
## 604 2019-11-17 17 1 0 0
## 605 2020-01-11 39 1 1 1
## 606 2020-01-27 39 1 1 1
## 607 2020-08-28 19 1 0 1
## 608 2020-02-19 22 1 0 0
## 609 2021-08-11 37 1 1 1
## 610 2020-11-06 32 1 1 1
## 611 2020-01-10 19 1 1 1
## 612 2020-01-24 27 1 1 1
## 613 2020-02-16 7 1 0 0
## 614 2020-12-10 26 1 1 1
## 615 2020-02-13 18 1 1 0
## 616 2020-03-15 28 1 1 1
## 617 2020-02-04 21 1 1 1
## 618 2019-09-07 24 1 1 1
## 619 2020-01-30 17 1 1 1
## 620 2020-02-29 14 1 1 0
## 621 2020-01-14 15 1 1 0
## 622 2021-11-13 17 1 1 1
## 623 2021-09-03 30 1 1 0
## 624 2021-07-27 26 1 1 1
## 625 2021-11-15 29 1 1 0
## 626 2021-01-26 16 1 0 1
## 627 2020-11-30 31 1 1 1
## 628 2021-12-07 13 1 1 0
## 629 2021-04-25 37 1 1 1
## 630 2021-04-25 17 1 0 1
## 631 2021-05-30 33 1 1 1
## 632 2021-12-21 23 1 1 0
## 633 2021-12-10 21 1 1 0
## 634 2019-12-04 24 1 1 1
## 635 2019-12-27 22 1 1 0
## 636 2019-11-15 15 1 1 0
## 637 2021-03-18 22 1 1 1
## 638 2020-08-19 23 1 1 1
## 639 2020-01-01 17 1 0 1
## 640 2021-12-12 34 1 1 1
## 641 2019-11-03 17 1 1 1
## 642 2020-02-11 37 1 1 1
## 643 2020-01-14 39 1 1 1
## 644 2020-01-27 21 1 1 0
## 645 2021-12-03 38 1 1 1
## 646 2021-08-31 20 1 0 1
## 647 2021-11-22 19 1 0 1
## 648 2020-01-13 19 1 0 1
## 649 2020-01-04 30 1 1 1
## 650 2020-02-03 18 1 1 0
## 651 2021-10-11 25 1 1 1
## 652 2021-01-03 27 1 1 1
## 653 2021-08-14 31 1 1 1
## 654 2020-10-15 29 1 1 1
## 655 2021-01-28 15 1 1 0
## 656 2021-03-30 18 1 0 1
## 657 2020-04-25 28 1 1 1
## 658 2019-12-08 15 1 1 0
## 659 2021-12-06 27 1 1 1
## 660 2020-02-16 10 1 1 0
## 661 2020-01-01 35 1 1 0
## 662 2020-02-10 16 1 0 1
## 663 2020-01-26 14 1 1 0
## 664 2019-12-13 8 1 0 0
## 665 2020-07-08 29 1 1 0
## 666 2020-02-28 20 1 1 1
## 667 2020-03-01 17 1 0 1
## 668 2021-11-28 33 1 0 1
## 669 2021-12-12 38 1 1 1
## 670 2021-01-16 15 1 0 0
## 671 2021-12-01 25 1 1 1
## 672 2021-12-05 25 1 1 1
## 673 2021-11-14 31 1 1 1
## 674 2021-08-02 24 1 1 1
## 675 2021-12-15 14 1 1 1
## 676 2021-12-23 15 1 1 0
## 677 2021-10-25 33 1 1 1
## 678 2021-12-07 45 1 0 1
## 679 2021-12-14 23 1 1 1
## 680 2019-11-19 17 1 1 0
## 681 2020-03-08 15 1 0 1
## 682 2020-03-25 43 1 1 1
## 683 2020-01-27 19 1 0 1
## 684 2020-01-26 12 1 1 1
## 685 2021-04-12 19 1 0 0
## 686 2019-10-17 27 1 1 1
## 687 2020-03-01 20 1 0 1
## 688 2021-09-03 23 1 1 1
## 689 2021-11-20 19 1 0 1
## 690 2021-06-25 11 1 1 1
## 691 2020-04-30 33 1 1 1
## 692 2021-11-10 14 1 1 1
## 693 2020-02-12 19 1 0 0
## 694 2021-11-30 45 1 1 1
## 695 2020-07-05 23 1 1 1
## 696 2020-06-01 21 1 1 1
## 697 2021-11-24 25 1 1 0
## 698 2021-10-16 14 1 0 1
## 699 2020-01-29 27 1 1 1
## 700 2020-09-03 12 1 0 1
## 701 2020-04-19 13 1 1 0
## 702 2020-11-22 18 1 1 1
## 703 2020-02-28 20 1 0 1
## 704 2020-01-30 12 1 0 1
## 705 2021-08-23 32 1 1 1
## 706 2019-10-09 17 1 0 0
## 707 2020-02-02 37 1 1 1
## 708 2019-07-01 24 1 1 1
## 709 2021-12-05 23 1 1 0
## 710 2021-06-24 30 1 1 1
## 711 2020-12-14 12 1 1 0
## 712 2020-02-04 20 1 0 1
## 713 2021-07-23 19 1 0 1
## 714 2020-02-25 11 1 1 1
## 715 2020-08-16 28 1 1 1
## 716 2019-12-14 12 1 1 1
## 717 2020-03-15 15 1 1 0
## 718 2021-10-31 34 1 1 1
## 719 2019-10-25 23 1 1 1
## 720 2019-12-17 13 1 1 0
## 721 2020-02-16 13 1 1 0
## 722 2020-06-11 14 1 1 0
## 723 2020-07-11 14 1 0 1
## 724 2021-01-30 17 1 1 0
## 725 2020-12-31 11 1 1 0
## 726 2020-01-29 23 1 1 1
## 727 2021-03-10 30 1 1 0
## 728 2019-12-30 28 1 1 1
## 729 2020-02-15 19 1 1 1
## 730 2021-09-30 21 1 1 1
## 731 2020-12-30 22 1 1 1
## 732 2021-06-13 21 1 1 1
## 733 2020-02-17 17 1 1 0
## 734 2021-01-29 25 1 1 1
## 735 2021-11-27 24 1 1 1
## 736 2021-12-19 31 1 1 0
## 737 2021-11-17 24 1 1 1
## 738 2021-12-19 25 1 0 0
## 739 2021-11-18 20 1 1 0
## 740 2021-11-23 14 1 0 0
## 741 2021-11-30 15 1 1 0
## 742 2021-09-10 20 1 1 0
## 743 2021-12-12 21 1 1 1
## 744 2020-04-17 14 1 1 1
## 745 2020-10-12 19 1 1 1
## 746 2019-09-27 17 1 0 1
## 747 2019-10-15 13 1 0 1
## 748 2021-08-09 39 1 0 0
## 749 2021-04-17 34 1 0 0
## 750 2020-02-17 24 1 1 1
## 751 2020-02-11 9 1 0 0
## 752 2021-05-31 25 1 0 1
## 753 2020-02-04 20 1 1 0
## 754 2020-02-08 9 1 1 0
## 755 2020-02-24 19 1 0 1
## 756 2020-06-21 28 1 1 1
## 757 2019-12-30 25 1 1 1
## 758 2019-08-19 13 1 0 1
## 759 2021-09-16 32 1 1 1
## 760 2020-03-18 24 1 1 1
## 761 2021-04-22 26 1 1 1
## 762 2019-12-01 27 1 1 1
## 763 2020-07-19 23 1 1 1
## 764 2021-02-20 29 1 0 1
## 765 2020-01-18 18 1 0 0
## 766 2021-09-13 38 1 1 1
## 767 2021-12-19 12 1 1 1
## 768 2021-09-01 24 1 1 1
## 769 2020-09-06 39 1 1 1
## 770 2021-05-13 23 1 1 1
## 771 2021-12-17 39 1 1 1
## 772 2020-02-08 36 1 1 1
## 773 2021-02-18 29 1 1 1
## 774 2020-01-12 14 1 1 0
## 775 2020-08-17 28 1 0 1
## 776 2021-07-29 14 1 0 1
## 777 2021-12-10 37 1 1 1
## 778 2020-01-02 38 1 0 1
## 779 2020-12-14 17 1 0 1
## 780 2020-03-21 23 1 1 1
## 781 2020-01-02 37 1 1 1
## 782 2020-01-23 16 1 1 1
## 783 2020-03-15 3 0 0 0
## 784 2019-12-23 44 1 1 1
## 785 2021-08-16 33 1 1 1
## 786 2021-08-30 26 1 1 1
## 787 2020-02-14 10 1 1 0
## 788 2020-12-05 26 1 0 1
## 789 2020-10-24 12 1 1 0
## 790 2020-01-20 30 1 1 1
## 791 2020-01-26 26 1 1 0
## 792 2021-01-12 31 1 1 1
## 793 2020-11-22 16 1 1 0
## 794 2021-11-05 16 1 1 1
## 795 2020-01-14 23 1 1 1
## 796 2020-02-29 19 1 1 1
## 797 2021-08-30 21 1 1 1
## 798 2021-08-21 37 1 1 1
## 799 2020-07-11 28 1 1 1
## 800 2021-12-13 17 1 1 0
## 801 2020-08-11 10 1 0 0
## 802 2021-04-03 18 1 1 1
## 803 2021-01-16 16 1 1 1
## 804 2020-12-31 29 1 1 1
## 805 2021-02-25 30 1 1 1
## 806 2020-09-04 48 1 1 1
## 807 2020-12-05 32 1 1 1
## 808 2021-09-09 17 1 1 0
## 809 2021-12-09 17 1 1 0
## 810 2021-11-21 30 1 1 1
## 811 2021-11-30 23 1 1 1
## 812 2021-10-30 23 1 1 1
## 813 2021-12-23 39 1 1 1
## 814 2019-10-13 26 1 1 1
## 815 2020-07-12 22 1 1 1
## 816 2020-01-27 8 1 0 1
## 817 2020-01-01 37 1 1 1
## 818 2021-08-05 8 1 0 1
## 819 2020-03-02 26 1 1 1
## 820 2020-01-30 29 1 1 1
## 821 2021-10-16 15 1 0 1
## 822 2020-09-17 22 1 1 1
## 823 2020-11-01 25 1 1 1
## 824 2020-02-09 11 1 0 0
## 825 2020-07-02 20 1 1 1
## 826 2021-10-12 17 1 1 1
## 827 2020-01-23 21 1 1 0
## 828 2019-09-22 19 1 0 0
## 829 2020-02-06 37 1 1 1
## 830 2020-01-28 18 1 1 0
## 831 2019-12-30 10 1 0 0
## 832 2019-11-22 15 1 0 1
## 833 2021-03-20 20 1 1 1
## 834 2019-05-12 37 1 1 1
## 835 2021-09-23 16 1 1 1
## 836 2021-11-15 16 1 1 1
## 837 2019-11-17 17 1 0 0
## 838 2020-01-18 18 1 1 0
## 839 2021-10-02 16 1 0 1
## 840 2019-09-19 17 1 0 0
## 841 2021-10-31 18 1 1 1
## 842 2021-05-15 31 1 1 1
## 843 2021-09-15 15 1 0 1
## 844 2020-01-26 24 1 1 0
## 845 2020-01-08 39 1 1 1
## 846 2021-07-12 31 1 0 1
## 847 2020-02-01 31 1 1 1
## 848 2020-01-08 23 1 0 1
## 849 2020-01-12 19 1 0 1
## 850 2019-09-21 38 1 1 1
## 851 2020-01-20 37 1 1 1
## 852 2021-02-15 49 1 1 1
## 853 2019-12-07 15 1 1 1
## 854 2019-12-20 28 1 1 1
## 855 2020-01-02 17 1 1 0
## 856 2020-01-01 24 1 1 1
## 857 2020-12-17 12 1 0 1
## 858 2021-08-16 36 1 1 1
## 859 2019-12-03 21 1 1 1
## 860 2019-11-16 15 1 1 1
## 861 2019-11-08 26 1 0 1
## 862 2019-08-27 11 1 1 1
## 863 2019-11-30 24 1 1 1
## 864 2021-12-10 9 1 1 0
## 865 2021-10-01 11 1 0 0
## 866 2021-11-01 30 1 1 1
## 867 2021-12-01 29 1 0 1
## 868 2021-07-10 30 1 1 1
## 869 2021-09-18 26 1 1 1
## 870 2021-04-09 26 1 1 1
## 871 2019-12-25 16 1 1 0
## 872 2021-10-19 29 1 0 1
## 873 2019-10-13 8 1 0 0
## 874 2019-12-22 21 1 1 1
## 875 2020-01-25 20 1 1 1
## 876 2020-01-23 10 0 1 1
## 877 2019-08-31 13 1 1 1
## 878 2020-02-11 17 1 0 1
## 879 2020-03-13 24 1 1 1
## 880 2021-01-30 13 1 0 1
## 881 2021-09-05 21 1 1 1
## 882 2021-08-29 28 1 0 1
## 883 2020-01-06 15 1 1 1
## 884 2020-07-31 20 1 1 1
## 885 2020-01-30 9 1 0 0
## 886 2020-03-30 20 1 1 1
## 887 2020-12-15 19 1 1 1
## 888 2021-08-14 21 1 1 1
## 889 2020-03-25 36 1 1 0
## 890 2021-12-06 28 1 1 1
## 891 2020-02-28 17 1 1 0
## 892 2021-09-30 15 1 1 0
## 893 2021-07-12 13 1 1 1
## 894 2021-11-13 12 1 1 1
## 895 2021-11-25 18 1 1 0
## 896 2021-05-06 27 1 1 1
## 897 2021-11-30 17 1 1 0
## 898 2021-12-06 14 1 1 1
## 899 2021-05-03 18 1 1 1
## 900 2021-11-21 13 1 1 1
## 901 2021-12-09 38 1 1 1
## 902 2021-12-17 9 1 1 0
## 903 2021-12-20 12 1 0 1
## 904 2020-12-27 15 1 1 1
## 905 2019-10-10 9 1 1 0
## 906 2019-12-25 22 1 1 1
## 907 2021-06-25 30 1 0 1
## 908 2020-01-23 17 1 1 0
## 909 2019-07-01 33 1 0 1
## 910 2019-03-23 29 1 1 1
## 911 2021-06-20 14 1 0 1
## 912 2020-03-22 16 1 0 1
## 913 2019-10-31 21 1 1 1
## 914 2019-12-09 10 1 1 1
## 915 2021-06-12 23 1 1 1
## 916 2020-02-06 1 0 0 0
## 917 2020-01-04 25 1 1 0
## 918 2019-12-12 22 1 1 0
## 919 2019-09-20 32 1 1 1
## 920 2020-02-18 10 1 0 0
## 921 2019-11-12 11 1 0 0
## 922 2020-02-04 18 1 0 0
## 923 2019-01-13 18 1 1 0
## 924 2020-02-12 15 1 1 1
## 925 2019-03-17 20 1 1 0
## 926 2021-10-17 17 1 0 1
## 927 2019-08-17 16 1 1 1
## 928 2019-08-18 14 1 0 1
## 929 2021-06-05 25 1 1 1
## 930 2021-08-31 28 1 0 1
## 931 2021-01-01 13 1 0 1
## 932 2020-03-20 27 1 1 1
## 933 2019-10-15 18 1 0 0
## 934 2020-03-18 24 1 1 1
## 935 2021-04-03 33 1 1 1
## 936 2019-09-01 19 1 0 1
## 937 2020-01-16 10 1 1 1
## 938 2019-08-01 23 1 0 1
## 939 2019-11-19 41 1 1 1
## 940 2019-07-20 14 1 1 0
## 941 2019-12-26 19 1 1 0
## 942 2020-01-24 18 1 1 0
## 943 2020-07-31 30 1 1 1
## 944 2019-12-29 23 1 0 1
## 945 2019-11-16 12 1 1 0
## 946 2019-11-10 22 1 1 1
## 947 2021-11-25 49 1 1 1
## 948 2019-07-20 10 1 0 0
## 949 2019-12-07 16 1 0 1
## 950 2020-04-30 28 1 0 1
## 951 2021-04-09 31 1 1 1
## 952 2020-04-11 10 1 1 0
## 953 2020-12-31 12 1 1 0
## 954 2019-10-02 11 1 1 0
## 955 2021-02-15 18 1 1 0
## 956 2020-12-20 18 1 1 0
## 957 2020-12-17 30 1 1 1
## 958 2020-08-24 17 1 1 1
## 959 2020-12-04 17 1 1 1
## 960 2019-08-16 65 1 1 1
## 961 2020-01-02 19 1 1 1
## 962 2020-08-30 32 1 1 1
## 963 2020-03-22 25 1 1 0
## 964 2020-03-29 30 1 1 1
## 965 2019-04-30 10 1 1 1
## 966 2019-06-21 21 1 1 1
## 967 2019-12-26 35 1 1 1
## 968 2021-12-16 27 1 1 1
## 969 2020-02-29 29 1 1 1
## 970 2020-11-30 27 1 1 1
## 971 2019-05-10 23 1 0 1
## 972 2020-01-18 55 1 1 1
## 973 2020-01-14 20 1 0 1
## 974 2021-09-06 17 1 1 1
## 975 2019-07-30 14 1 1 0
## 976 2019-12-15 15 1 1 0
## 977 2021-12-25 23 1 0 1
## 978 2021-11-30 16 1 0 1
## 979 2019-11-07 12 1 1 1
## 980 2021-12-17 15 1 1 1
## 981 2020-01-08 16 1 0 1
## 982 2021-08-17 37 1 1 1
## 983 2021-08-25 24 1 1 1
## 984 2020-05-14 24 1 1 1
## 985 2021-01-01 25 1 1 1
## 986 2021-08-25 20 1 1 1
## 987 2020-01-03 11 1 1 0
## 988 2020-06-07 12 1 0 1
## 989 2021-01-31 28 1 0 1
## 990 2020-01-21 37 1 1 1
## 991 2020-03-11 16 1 1 0
## 992 2021-11-30 10 1 0 0
## 993 2020-05-01 15 1 0 1
## 994 2021-05-20 17 1 0 0
## 995 2021-09-11 16 1 1 0
## 996 2020-03-12 9 1 0 0
## 997 2021-09-19 29 1 1 1
## 998 2020-01-01 23 1 1 1
## 999 2021-12-25 24 1 1 1
## 1000 2020-02-07 14 1 1 0
## 1001 2020-03-02 20 1 1 1
## 1002 2020-01-22 19 1 0 0
## 1003 2021-05-07 22 1 1 1
## 1004 2020-01-13 15 1 1 0
## 1005 2021-02-01 21 1 1 1
## 1006 2020-04-14 23 1 1 1
## 1007 2020-02-09 9 1 0 0
## 1008 2021-09-10 33 1 1 1
## 1009 2021-01-02 28 1 0 1
## 1010 2020-03-21 8 1 1 0
## 1011 2021-11-22 26 1 1 1
## 1012 2021-12-05 17 1 1 1
## 1013 2021-11-13 24 1 1 1
## 1014 2021-09-07 20 1 1 0
## 1015 2021-02-16 17 1 1 0
## 1016 2021-07-16 16 1 0 1
## 1017 2021-12-11 13 1 0 1
## 1018 2021-12-05 27 1 1 1
## 1019 2021-12-12 27 1 1 1
## 1020 2021-08-28 34 1 1 1
## 1021 2021-12-20 19 1 1 1
## 1022 2021-09-20 18 1 1 1
## 1023 2021-12-19 22 1 1 0
## 1024 2021-08-27 17 1 0 1
## 1025 2021-10-28 17 1 1 1
## 1026 2021-11-04 6 1 0 0
## 1027 2021-10-07 21 1 1 1
## 1028 2021-11-20 31 1 0 1
## 1029 2019-09-28 13 1 1 1
## 1030 2019-04-27 14 1 1 1
## 1031 2019-04-25 42 1 1 1
## 1032 2019-07-27 19 1 1 0
## 1033 2020-06-05 27 1 1 1
## 1034 2019-10-29 28 1 0 1
## 1035 2020-02-14 14 0 1 1
## 1036 2019-08-31 8 1 0 0
## 1037 2020-02-23 17 1 1 1
## 1038 2019-07-01 30 1 0 1
## 1039 2021-02-14 13 1 1 0
## 1040 2019-10-19 31 1 1 1
## 1041 2021-03-01 19 1 0 1
## 1042 2019-07-23 11 1 0 0
## 1043 2019-12-21 9 1 0 0
## 1044 2019-01-28 23 1 1 1
## 1045 2019-01-31 16 1 1 0
## 1046 2019-05-24 16 1 1 0
## 1047 2019-10-20 13 1 0 1
## 1048 2019-07-20 10 1 0 0
## 1049 2019-08-28 22 1 1 1
## 1050 2019-08-18 10 1 0 1
## 1051 2020-01-17 11 1 1 0
## 1052 2019-11-30 18 1 1 1
## 1053 2019-04-18 19 1 0 0
## 1054 2020-02-02 19 1 0 0
## 1055 2020-02-16 15 1 1 0
## 1056 2019-05-12 11 1 0 1
## 1057 2019-07-01 31 1 1 1
## 1058 2019-07-17 13 0 1 0
## 1059 2020-03-26 27 1 0 1
## 1060 2021-10-26 10 1 1 1
## 1061 2019-12-08 30 1 0 1
## 1062 2021-05-14 16 1 0 1
## 1063 2021-09-10 16 1 0 1
## 1064 2019-10-31 23 1 1 1
## 1065 2020-04-09 24 1 1 1
## 1066 2019-08-06 17 1 1 1
## 1067 2019-09-07 17 1 1 1
## 1068 2020-02-28 20 1 1 1
## 1069 2020-01-02 24 1 1 1
## 1070 2019-05-12 16 1 0 1
## 1071 2020-01-30 33 1 1 1
## 1072 2020-02-06 20 0 1 1
## 1073 2020-07-09 20 1 1 1
## 1074 2021-03-15 16 1 0 1
## 1075 2019-06-28 20 1 0 0
## 1076 2020-02-03 20 1 1 0
## 1077 2019-12-13 19 1 1 1
## 1078 2019-10-22 24 1 1 1
## 1079 2020-01-19 13 1 1 1
## 1080 2019-09-15 22 1 1 0
## 1081 2019-03-19 9 1 0 1
## 1082 2020-02-11 22 1 1 1
## 1083 2020-01-03 13 1 0 1
## 1084 2019-10-06 9 1 0 1
## 1085 2019-03-27 22 1 0 1
## 1086 2019-08-24 17 1 1 1
## 1087 2021-06-22 23 1 0 0
## 1088 2019-03-15 17 1 0 0
## 1089 2021-12-10 24 1 1 1
## 1090 2021-10-26 18 1 0 1
## 1091 2019-12-07 23 0 1 1
## 1092 2019-12-29 16 1 1 0
## 1093 2020-02-25 22 1 1 1
## 1094 2020-02-29 27 0 0 1
## 1095 2019-08-19 29 1 0 1
## 1096 2019-07-17 17 1 0 1
## 1097 2019-02-10 25 1 1 1
## 1098 2020-08-31 28 1 0 1
## 1099 2020-04-07 29 1 0 1
## 1100 2020-03-31 29 1 0 1
## 1101 2019-03-21 24 1 0 1
## 1102 2019-03-19 18 1 0 1
## 1103 2021-05-19 38 1 1 1
## 1104 2021-05-01 38 1 0 1
## 1105 2020-12-28 14 1 0 0
## 1106 2019-12-19 10 1 1 0
## 1107 2020-01-27 12 1 1 0
## 1108 2020-01-13 11 1 1 0
## 1109 2020-12-26 12 1 1 0
## 1110 2019-06-04 12 1 1 0
## 1111 2019-08-11 12 1 1 0
## 1112 2019-12-11 13 1 0 1
## 1113 2019-09-08 19 1 1 1
## 1114 2020-03-06 27 1 1 1
## 1115 2019-04-10 15 1 1 0
## 1116 2019-09-10 17 1 1 0
## 1117 2020-06-13 17 1 1 0
## 1118 2019-10-05 35 1 1 1
## 1119 2019-08-28 15 1 1 1
## 1120 2020-02-22 10 1 1 0
## 1121 2019-10-05 22 1 1 1
## 1122 2019-09-23 35 1 0 1
## 1123 2020-02-13 28 1 1 1
## 1124 2020-04-18 15 1 0 1
## 1125 2019-04-30 20 1 1 1
## 1126 2019-04-22 17 1 1 1
## 1127 2019-09-30 28 1 1 1
## 1128 2019-10-10 15 1 0 1
## 1129 2019-01-05 32 1 1 1
## 1130 2019-12-18 7 1 0 0
## 1131 2020-01-12 11 1 1 1
## 1132 2020-01-30 11 1 1 1
## 1133 2019-03-31 29 1 0 1
## 1134 2019-04-10 17 1 1 0
## 1135 2021-02-26 30 1 1 1
## 1136 2021-12-07 31 1 1 1
## 1137 2020-10-05 26 1 0 1
## 1138 2019-10-18 27 1 0 1
## 1139 2019-07-28 23 1 0 0
## 1140 2021-06-16 28 1 0 1
## 1141 2019-08-04 25 1 1 0
## 1142 2019-03-25 22 1 1 1
## 1143 2019-06-29 29 1 1 1
## 1144 2021-04-03 29 1 1 1
## 1145 2021-02-22 25 1 1 1
## 1146 2020-01-09 23 1 1 1
## 1147 2020-12-28 28 1 1 1
## 1148 2020-07-15 31 1 1 1
## 1149 2019-08-30 27 1 1 1
## 1150 2019-10-01 30 1 1 1
## 1151 2021-05-31 31 1 1 1
## 1152 2021-12-15 36 1 1 1
## 1153 2020-02-25 32 1 1 1
## 1154 2020-09-30 29 1 1 1
## 1155 2021-07-17 27 1 0 1
## 1156 2019-08-19 45 1 1 1
## 1157 2019-11-27 27 1 0 1
## 1158 2020-01-05 29 1 0 1
## 1159 2019-06-09 27 1 0 1
## 1160 2020-10-10 30 1 1 1
## 1161 2019-11-25 29 1 0 1
## 1162 2020-03-25 26 1 0 1
## 1163 2021-10-13 29 1 1 1
## 1164 2021-07-24 7 1 0 0
## 1165 2021-07-08 16 1 0 1
## 1166 2021-10-01 16 1 1 1
## 1167 2020-03-01 16 1 1 1
## 1168 2019-08-12 8 1 0 0
## 1169 2020-01-27 22 1 0 1
## 1170 2021-06-16 28 1 0 1
## 1171 2020-01-13 16 1 1 0
## 1172 2020-01-22 30 1 1 0
## 1173 2021-11-12 25 1 1 1
## 1174 2021-07-26 25 1 1 1
## 1175 2019-11-30 43 1 1 1
## 1176 2019-08-24 15 1 1 1
## 1177 2020-01-02 19 1 0 1
## 1178 2019-11-08 30 1 0 1
## 1179 2020-04-25 16 1 0 1
## 1180 2019-10-17 17 1 0 0
## 1181 2020-07-06 12 1 0 1
## 1182 2021-03-29 24 1 1 1
## 1183 2021-02-28 11 1 1 0
## 1184 2020-09-29 28 1 0 1
## 1185 2020-11-14 24 1 1 1
## 1186 2020-01-23 14 1 1 0
## 1187 2021-06-16 27 1 1 1
## 1188 2020-08-31 26 1 1 1
## 1189 2021-11-01 16 1 1 0
## 1190 2019-11-24 14 1 1 1
## 1191 2019-12-17 7 1 0 0
## 1192 2019-12-19 20 1 1 0
## 1193 2020-04-04 15 1 1 0
## 1194 2021-10-26 16 0 0 1
## 1195 2020-04-15 28 1 0 1
## 1196 2020-02-08 28 1 0 1
## 1197 2021-11-21 33 1 1 1
## 1198 2020-03-31 19 1 0 1
## 1199 2019-12-28 18 1 0 1
## 1200 2021-08-31 22 1 1 1
## 1201 2021-05-22 11 1 0 0
## 1202 2019-11-23 11 1 0 1
## 1203 2020-02-28 29 1 1 1
## 1204 2020-02-28 17 1 1 1
## 1205 2021-02-07 23 1 1 1
## 1206 2020-01-17 32 1 1 1
## 1207 2020-01-27 18 1 1 1
## 1208 2021-11-05 40 1 1 1
## 1209 2020-02-15 34 1 1 1
## 1210 2020-01-18 30 1 1 1
## 1211 2020-03-13 21 1 1 1
## 1212 2021-04-02 22 1 1 1
## 1213 2021-12-19 39 1 1 1
## 1214 2020-01-20 11 1 1 0
## 1215 2020-01-26 29 1 1 1
## 1216 2021-04-20 14 1 1 1
## 1217 2020-03-22 25 1 1 0
## 1218 2020-01-17 28 1 1 1
## 1219 2020-03-31 36 1 1 1
## 1220 2020-02-25 15 1 1 0
## 1221 2020-09-26 14 1 1 0
## 1222 2020-02-19 13 1 1 0
## 1223 2021-10-01 27 1 1 0
## 1224 2020-01-26 21 1 1 1
## 1225 2021-10-24 27 1 1 0
## 1226 2020-06-30 25 1 1 1
## 1227 2021-12-24 24 1 1 1
## 1228 2021-05-26 33 1 1 1
## 1229 2021-03-22 18 1 1 1
## 1230 2020-10-21 19 1 1 1
## 1231 2021-10-10 16 1 1 1
## 1232 2020-08-28 17 1 1 1
## 1233 2021-11-26 17 1 1 1
## 1234 2020-06-28 17 1 1 1
## 1235 2020-06-18 16 1 0 1
## 1236 2021-06-21 58 1 1 1
## 1237 2021-11-29 21 1 0 0
## 1238 2021-02-15 29 1 1 1
## 1239 2021-05-27 22 1 1 1
## 1240 2021-03-23 19 1 1 0
## 1241 2021-10-08 24 1 1 1
## 1242 2021-12-19 48 1 1 1
## 1243 2021-11-03 26 1 1 1
## 1244 2020-12-28 14 1 0 1
## 1245 2021-02-12 20 1 1 0
## 1246 2021-12-06 20 1 1 0
## 1247 2021-10-03 35 0 0 1
## 1248 2021-09-25 26 1 1 1
## 1249 2021-10-17 14 1 1 1
## 1250 2021-12-15 29 1 0 1
## 1251 2021-08-26 19 1 1 1
## 1252 2021-11-28 23 1 1 1
## 1253 2021-06-01 29 1 1 1
## 1254 2021-03-24 25 1 1 1
## 1255 2021-06-06 29 1 0 1
## 1256 2021-12-14 21 1 1 0
## 1257 2021-11-15 20 1 1 0
## 1258 2021-09-26 13 1 1 0
## 1259 2021-10-26 15 1 1 1
## 1260 2021-12-03 26 1 1 1
## 1261 2021-10-21 12 1 1 1
## 1262 2021-12-04 11 1 1 1
## 1263 2021-12-15 45 1 1 1
## 1264 2021-12-22 16 1 1 1
## 1265 2021-12-11 19 1 1 1
## 1266 2021-12-01 18 1 1 1
## 1267 2021-12-19 48 1 1 1
## 1268 2021-10-29 39 1 1 1
## 1269 2021-11-13 10 1 0 0
## 1270 2021-12-17 15 1 1 0
## 1271 2021-11-14 23 1 1 1
## 1272 2021-10-19 54 1 0 1
## 1273 2021-11-29 34 1 1 1
## 1274 2021-12-10 19 1 1 1
## 1275 2019-02-27 27 1 1 1
## 1276 2019-08-11 26 1 0 1
## 1277 2019-01-25 2 0 0 0
## 1278 2021-05-23 27 1 0 1
## 1279 2020-01-03 18 1 1 1
## 1280 2019-01-01 18 1 1 0
## 1281 2019-09-23 15 1 0 1
## 1282 2019-09-16 9 1 0 1
## 1283 2020-01-31 31 1 1 1
## 1284 2019-03-27 23 1 0 1
## 1285 2019-09-29 30 1 1 1
## 1286 2020-06-26 11 1 0 1
## 1287 2019-09-15 15 1 1 1
## 1288 2019-07-10 27 1 1 1
## 1289 2021-11-19 12 1 1 1
## 1290 2019-01-01 18 1 0 1
## 1291 2019-07-22 16 1 1 0
## 1292 2019-09-23 16 1 1 1
## 1293 2021-08-31 23 1 1 1
## 1294 2019-07-17 21 1 1 1
## 1295 2019-04-18 23 1 1 1
## 1296 2021-01-21 23 1 1 1
## 1297 2019-06-26 1 0 0 0
## 1298 2019-03-18 24 1 0 0
## 1299 2019-09-07 17 1 1 0
## 1300 2019-06-09 17 1 1 1
## 1301 2020-02-08 18 1 1 1
## 1302 2019-11-23 17 1 1 1
## 1303 2020-02-08 17 1 1 1
## 1304 2019-01-26 24 1 1 0
## 1305 2020-01-26 19 1 0 0
## 1306 2019-06-08 26 1 0 1
## 1307 2019-06-14 37 1 1 1
## 1308 2019-07-15 13 1 1 0
## 1309 2021-04-03 20 1 1 1
## 1310 2019-08-24 11 1 1 0
## 1311 2020-01-08 11 1 1 0
## 1312 2020-01-21 8 1 1 0
## 1313 2021-07-14 34 1 1 1
## 1314 2019-02-02 22 1 0 1
## 1315 2021-07-21 23 1 1 0
## 1316 2020-05-31 29 1 0 1
## 1317 2019-08-31 23 0 0 1
## 1318 2019-06-09 6 1 0 1
## 1319 2020-06-29 23 1 1 1
## 1320 2019-09-21 27 1 0 1
## 1321 2021-05-06 25 1 1 1
## 1322 2021-03-31 28 1 0 1
## 1323 2019-05-15 14 1 0 1
## 1324 2019-08-17 21 1 1 1
## 1325 2020-12-04 28 1 0 1
## 1326 2021-09-13 15 1 0 1
## 1327 2021-01-14 19 1 1 0
## 1328 2019-07-18 14 1 0 1
## 1329 2019-11-03 14 1 1 0
## 1330 2020-01-01 28 1 1 1
## 1331 2019-01-29 25 1 1 1
## 1332 2019-09-10 19 1 1 1
## 1333 2019-06-23 15 1 1 0
## 1334 2021-05-12 29 1 0 1
## 1335 2019-10-06 38 1 1 1
## 1336 2019-01-20 16 1 0 0
## 1337 2019-09-18 27 1 0 1
## 1338 2019-09-13 28 1 0 1
## 1339 2019-08-05 10 1 0 0
## 1340 2019-07-30 51 1 1 1
## 1341 2021-12-08 28 0 1 1
## 1342 2021-04-29 13 1 0 1
## 1343 2019-03-02 27 1 0 1
## 1344 2021-08-29 15 1 0 1
## 1345 2020-08-31 28 1 0 1
## 1346 2020-01-03 20 1 1 0
## 1347 2019-09-04 20 1 0 1
## 1348 2019-03-19 29 1 1 1
## 1349 2020-12-30 28 1 0 1
## 1350 2019-09-24 32 1 1 1
## 1351 2020-07-29 27 1 0 1
## 1352 2021-05-15 14 1 0 1
## 1353 2021-07-30 17 1 1 1
## 1354 2019-09-23 16 1 1 0
## 1355 2019-04-30 16 1 1 1
## 1356 2019-09-29 15 1 1 0
## 1357 2019-09-07 27 1 0 1
## 1358 2019-01-23 25 1 1 1
## 1359 2019-01-26 11 1 1 0
## 1360 2019-06-14 31 1 0 1
## 1361 2019-09-09 18 1 1 1
## 1362 2019-12-04 17 1 1 0
## 1363 2020-07-31 17 1 1 0
## 1364 2019-11-22 28 1 0 1
## 1365 2019-12-01 28 1 0 1
## 1366 2019-02-10 14 1 1 0
## 1367 2019-01-03 38 1 0 1
## 1368 2019-02-28 28 1 0 1
## 1369 2021-07-07 29 1 0 1
## 1370 2019-10-15 26 1 0 1
## 1371 2020-02-16 15 1 0 1
## 1372 2019-10-31 18 1 1 0
## 1373 2021-12-07 49 1 1 1
## 1374 2020-12-31 49 1 1 1
## 1375 2019-01-12 14 1 1 1
## 1376 2019-01-04 16 1 1 1
## 1377 2019-09-11 16 1 1 1
## 1378 2019-07-26 40 1 0 1
## 1379 2019-02-28 24 1 1 1
## 1380 2021-01-02 12 1 1 0
## 1381 2020-01-04 12 1 1 0
## 1382 2019-06-03 12 1 1 0
## 1383 2019-06-08 15 1 0 1
## 1384 2020-11-28 36 1 0 1
## 1385 2019-01-04 32 1 0 1
## 1386 2021-12-03 25 1 0 1
## 1387 2020-03-23 15 1 0 1
## 1388 2019-04-16 9 1 1 0
## 1389 2020-12-12 37 1 0 1
## 1390 2020-07-07 29 1 0 1
## 1391 2020-08-10 29 1 0 1
## 1392 2020-12-28 12 1 0 1
## 1393 2019-10-28 16 1 1 0
## 1394 2019-12-31 28 1 0 1
## 1395 2019-08-02 21 1 0 1
## 1396 2020-06-20 12 1 1 0
## 1397 2019-07-20 38 1 0 1
## 1398 2019-11-28 30 1 0 1
## 1399 2019-07-27 39 1 0 1
## 1400 2020-04-30 21 1 0 1
## 1401 2020-08-19 28 1 0 1
## 1402 2019-02-08 28 1 0 1
## 1403 2019-07-09 23 1 1 1
## 1404 2019-10-20 24 0 0 1
## 1405 2019-08-13 27 1 0 1
## 1406 2020-02-21 16 0 1 1
## 1407 2019-10-24 15 0 0 1
## 1408 2019-09-20 31 1 1 1
## 1409 2020-02-05 35 1 1 1
## 1410 2019-11-09 15 1 1 1
## 1411 2021-11-26 7 0 0 0
## 1412 2019-09-29 8 1 0 0
## 1413 2019-09-08 7 1 0 0
## 1414 2019-03-27 14 1 1 0
## 1415 2019-05-24 11 1 1 1
## 1416 2020-03-11 29 1 0 1
## 1417 2020-01-27 15 1 1 1
## 1418 2019-11-14 17 1 1 0
## 1419 2019-01-27 29 1 1 1
## 1420 2019-09-07 17 1 1 0
## 1421 2019-01-04 22 1 1 1
## 1422 2020-05-28 33 1 1 1
## 1423 2019-06-29 31 1 1 1
## 1424 2019-10-28 27 1 0 1
## 1425 2019-06-28 39 1 1 1
## 1426 2019-04-23 28 1 0 1
## 1427 2019-04-01 27 1 0 1
## 1428 2020-01-11 29 1 1 1
## 1429 2019-08-14 29 1 1 1
## 1430 2021-08-31 32 1 1 1
## 1431 2021-10-01 28 1 1 1
## 1432 2019-02-27 28 1 0 1
## 1433 2019-11-16 6 0 0 0
## 1434 2019-08-13 30 1 1 1
## 1435 2019-01-31 28 1 0 1
## 1436 2019-03-26 30 1 1 1
## 1437 2019-03-23 28 1 0 1
## 1438 2019-10-26 29 1 0 1
## 1439 2019-11-03 30 1 1 1
## 1440 2019-10-31 28 1 0 1
## 1441 2019-01-11 27 1 0 1
## 1442 2020-09-19 26 1 0 1
## 1443 2020-02-06 28 1 0 1
## 1444 2020-04-14 25 1 1 1
## 1445 2020-09-30 28 1 0 1
## 1446 2019-02-06 14 1 1 1
## 1447 2019-02-16 11 1 1 0
## 1448 2019-01-30 13 1 1 0
## 1449 2019-12-28 44 1 1 1
## 1450 2019-08-02 61 1 1 1
## 1451 2019-07-05 31 1 0 1
## 1452 2020-01-03 32 1 1 1
## 1453 2019-03-05 28 1 0 1
## 1454 2019-08-25 32 1 1 1
## 1455 2019-05-13 25 1 1 1
## 1456 2019-10-20 13 1 0 1
## 1457 2019-08-02 24 1 1 1
## 1458 2021-05-26 35 1 1 1
## 1459 2021-05-01 31 1 1 1
## 1460 2019-03-17 63 1 1 1
## 1461 2019-03-06 9 1 0 1
## 1462 2019-08-01 29 1 0 1
## 1463 2021-04-15 29 1 1 1
## 1464 2019-05-18 28 1 0 1
## 1465 2019-12-13 28 1 0 1
## 1466 2019-07-22 46 1 1 1
## 1467 2019-12-14 28 1 0 1
## 1468 2021-11-22 39 1 1 1
## 1469 2019-04-07 6 1 0 1
## 1470 2020-02-18 25 1 1 1
## 1471 2019-04-15 18 1 0 1
## 1472 2019-05-29 26 1 0 1
## 1473 2020-09-23 29 1 1 1
## 1474 2019-10-06 15 1 1 1
## 1475 2019-07-21 16 1 1 0
## 1476 2019-06-27 13 1 1 1
## 1477 2019-05-30 27 1 0 1
## 1478 2019-08-09 28 1 0 1
## 1479 2021-12-04 22 1 0 1
## 1480 2019-12-14 28 1 0 1
## 1481 2019-07-12 28 1 0 1
## 1482 2019-06-07 9 1 0 1
## 1483 2019-12-09 32 1 0 1
## 1484 2021-12-04 11 1 0 1
## 1485 2019-07-01 26 1 0 1
## 1486 2019-08-03 26 1 0 1
## 1487 2020-12-29 17 1 0 1
## 1488 2019-07-25 8 1 0 0
## 1489 2021-07-22 28 1 0 1
## 1490 2020-02-28 8 1 0 0
## 1491 2019-06-21 8 1 0 0
## 1492 2019-09-02 8 1 0 0
## 1493 2019-07-14 17 1 0 1
## 1494 2019-07-24 20 1 1 1
## 1495 2019-10-03 40 1 1 1
## 1496 2019-07-31 16 1 1 0
## 1497 2021-09-12 40 1 1 1
## 1498 2020-01-03 22 1 0 1
## 1499 2019-08-30 27 1 1 1
## 1500 2019-11-08 38 1 1 1
## 1501 2020-08-01 27 1 0 0
## 1502 2019-08-03 40 1 1 1
## 1503 2021-09-08 34 1 1 1
## 1504 2019-08-05 16 1 1 1
## 1505 2020-01-01 38 1 0 1
## 1506 2021-09-16 25 1 1 1
## 1507 2019-08-02 11 1 0 1
## 1508 2019-08-05 14 0 1 1
## 1509 2021-08-01 51 1 1 1
## 1510 2019-10-15 19 1 1 1
## 1511 2019-09-05 9 1 1 0
## 1512 2019-08-12 16 1 1 1
## 1513 2019-08-10 16 1 1 1
## 1514 2020-01-17 18 1 0 1
## 1515 2019-08-21 18 1 0 1
## 1516 2019-09-23 35 1 1 0
## 1517 2021-07-06 27 1 1 1
## 1518 2019-12-11 19 1 0 1
## 1519 2020-02-07 18 1 1 1
## 1520 2019-10-01 27 1 0 1
## 1521 2020-05-26 15 1 1 1
## 1522 2021-02-16 11 1 1 0
## 1523 2019-09-24 11 1 1 0
## 1524 2019-11-30 28 1 0 1
## 1525 2019-11-16 28 1 0 1
## 1526 2021-11-28 15 1 1 1
## 1527 2019-09-24 40 1 1 1
## 1528 2020-07-26 26 1 1 1
## 1529 2021-11-13 16 1 1 1
## 1530 2019-09-28 17 1 1 1
## 1531 2020-12-31 15 1 1 0
## 1532 2020-02-02 12 1 1 0
## 1533 2019-12-08 27 1 0 1
## 1534 2020-02-15 16 1 0 1
## 1535 2021-06-29 28 1 0 1
## 1536 2020-04-30 16 1 0 1
## 1537 2019-12-26 33 1 1 1
## 1538 2019-11-01 28 1 0 1
## Amenities_Long_Term Amenities_Washer Amenities_HairDryer
## 1 1 0 1
## 2 0 0 1
## 3 1 0 1
## 4 1 1 1
## 5 1 0 1
## 6 1 1 1
## 7 1 0 1
## 8 1 0 1
## 9 1 0 0
## 10 1 1 1
## 11 1 1 1
## 12 1 1 1
## 13 1 1 1
## 14 1 0 1
## 15 1 1 0
## 16 1 1 1
## 17 1 0 1
## 18 1 1 1
## 19 1 0 1
## 20 1 0 1
## 21 1 1 1
## 22 1 1 1
## 23 1 1 1
## 24 1 1 1
## 25 1 0 1
## 26 1 1 1
## 27 1 1 1
## 28 1 1 1
## 29 1 1 1
## 30 1 0 1
## 31 1 0 1
## 32 1 1 1
## 33 1 1 1
## 34 1 1 1
## 35 1 1 1
## 36 1 0 1
## 37 1 1 1
## 38 1 1 1
## 39 0 1 1
## 40 1 1 1
## 41 1 1 1
## 42 1 0 1
## 43 1 1 1
## 44 1 1 1
## 45 1 0 0
## 46 1 1 1
## 47 1 0 0
## 48 1 1 1
## 49 1 1 1
## 50 1 1 1
## 51 1 0 1
## 52 1 0 1
## 53 1 0 1
## 54 1 1 1
## 55 1 0 1
## 56 1 1 1
## 57 1 1 1
## 58 1 1 1
## 59 1 1 1
## 60 0 1 1
## 61 1 1 1
## 62 1 1 1
## 63 1 1 1
## 64 1 1 1
## 65 1 1 1
## 66 1 1 1
## 67 1 0 1
## 68 1 1 1
## 69 1 1 1
## 70 1 1 1
## 71 1 0 1
## 72 1 0 1
## 73 1 1 0
## 74 1 1 1
## 75 1 1 1
## 76 1 1 1
## 77 1 1 1
## 78 1 1 1
## 79 1 0 1
## 80 1 1 1
## 81 1 1 1
## 82 1 1 1
## 83 1 1 1
## 84 1 1 1
## 85 1 1 1
## 86 1 1 1
## 87 1 1 1
## 88 1 1 1
## 89 1 1 1
## 90 1 1 1
## 91 1 1 0
## 92 1 1 1
## 93 1 1 1
## 94 1 1 1
## 95 1 1 1
## 96 1 1 1
## 97 1 1 1
## 98 1 1 1
## 99 1 1 1
## 100 1 1 1
## 101 1 0 1
## 102 1 1 1
## 103 1 1 1
## 104 1 1 1
## 105 0 0 1
## 106 1 1 1
## 107 1 1 0
## 108 1 1 1
## 109 1 1 1
## 110 1 1 1
## 111 1 1 1
## 112 1 1 1
## 113 1 1 1
## 114 1 1 1
## 115 1 1 0
## 116 1 1 1
## 117 1 1 1
## 118 1 1 1
## 119 1 1 1
## 120 1 1 1
## 121 1 1 1
## 122 1 1 1
## 123 1 1 1
## 124 1 1 1
## 125 1 1 1
## 126 1 0 1
## 127 1 1 1
## 128 1 1 1
## 129 1 1 1
## 130 1 1 1
## 131 1 1 1
## 132 1 1 1
## 133 1 0 1
## 134 1 1 1
## 135 1 1 1
## 136 1 1 1
## 137 1 1 1
## 138 1 0 1
## 139 1 1 1
## 140 1 1 1
## 141 1 0 1
## 142 1 1 1
## 143 1 1 1
## 144 1 1 1
## 145 1 1 1
## 146 1 1 1
## 147 1 1 1
## 148 1 1 1
## 149 1 0 1
## 150 1 1 1
## 151 1 1 1
## 152 1 1 1
## 153 1 1 1
## 154 1 1 1
## 155 1 1 1
## 156 1 1 1
## 157 1 0 1
## 158 1 1 1
## 159 1 0 1
## 160 1 1 1
## 161 1 1 1
## 162 1 1 1
## 163 1 1 1
## 164 1 1 1
## 165 1 1 1
## 166 1 1 1
## 167 1 1 1
## 168 1 1 1
## 169 1 1 1
## 170 1 1 1
## 171 1 1 1
## 172 1 1 1
## 173 1 0 1
## 174 1 1 1
## 175 1 1 1
## 176 1 1 1
## 177 1 1 1
## 178 1 1 1
## 179 1 1 1
## 180 1 1 1
## 181 1 1 1
## 182 1 1 1
## 183 1 1 1
## 184 1 1 1
## 185 1 1 0
## 186 1 1 1
## 187 1 0 1
## 188 1 1 1
## 189 1 1 1
## 190 1 1 1
## 191 1 1 1
## 192 1 1 1
## 193 1 1 1
## 194 1 1 1
## 195 1 1 1
## 196 1 1 1
## 197 1 1 1
## 198 1 1 0
## 199 1 1 1
## 200 1 1 1
## 201 1 1 1
## 202 1 1 1
## 203 1 1 1
## 204 1 1 1
## 205 1 1 1
## 206 1 1 1
## 207 1 1 1
## 208 1 1 1
## 209 1 0 1
## 210 1 1 1
## 211 1 1 1
## 212 1 0 1
## 213 1 1 1
## 214 1 1 1
## 215 1 1 1
## 216 1 1 1
## 217 1 1 1
## 218 1 0 1
## 219 1 1 1
## 220 1 1 1
## 221 1 1 1
## 222 1 1 1
## 223 1 1 1
## 224 1 1 1
## 225 1 0 1
## 226 1 0 1
## 227 1 1 1
## 228 0 1 1
## 229 1 0 1
## 230 1 1 1
## 231 1 1 1
## 232 1 1 1
## 233 1 1 1
## 234 1 1 1
## 235 1 1 1
## 236 1 1 1
## 237 1 1 1
## 238 1 1 1
## 239 1 1 1
## 240 1 1 1
## 241 1 1 1
## 242 1 0 1
## 243 1 0 1
## 244 1 1 1
## 245 1 1 0
## 246 1 1 1
## 247 1 1 1
## 248 1 1 1
## 249 1 1 1
## 250 1 1 1
## 251 1 1 1
## 252 1 1 1
## 253 1 1 1
## 254 1 1 1
## 255 1 0 1
## 256 1 1 1
## 257 1 1 1
## 258 1 1 1
## 259 1 1 1
## 260 1 0 1
## 261 1 1 1
## 262 1 1 1
## 263 1 1 1
## 264 1 1 1
## 265 1 1 1
## 266 1 1 1
## 267 1 1 0
## 268 1 1 1
## 269 1 0 1
## 270 1 1 1
## 271 1 1 1
## 272 1 1 1
## 273 1 1 1
## 274 1 1 1
## 275 1 1 1
## 276 1 1 1
## 277 1 1 1
## 278 1 1 1
## 279 1 1 1
## 280 1 1 1
## 281 1 1 1
## 282 1 1 1
## 283 1 1 1
## 284 1 1 1
## 285 1 1 1
## 286 1 1 1
## 287 1 1 1
## 288 1 1 1
## 289 1 0 1
## 290 1 1 1
## 291 1 1 1
## 292 1 1 1
## 293 1 1 1
## 294 1 1 1
## 295 1 1 1
## 296 1 1 1
## 297 1 1 1
## 298 1 1 1
## 299 1 1 1
## 300 1 1 0
## 301 1 1 1
## 302 1 1 1
## 303 1 1 1
## 304 1 1 1
## 305 1 1 1
## 306 1 1 1
## 307 1 1 1
## 308 1 1 1
## 309 1 1 1
## 310 1 1 1
## 311 1 0 0
## 312 1 1 1
## 313 1 1 1
## 314 1 0 0
## 315 1 0 1
## 316 1 1 0
## 317 1 1 1
## 318 1 1 0
## 319 1 1 1
## 320 1 1 1
## 321 1 1 1
## 322 1 1 1
## 323 1 1 0
## 324 1 1 1
## 325 1 1 1
## 326 1 1 1
## 327 1 0 1
## 328 1 1 1
## 329 1 0 1
## 330 1 1 1
## 331 1 1 1
## 332 1 1 1
## 333 1 1 1
## 334 1 1 1
## 335 1 0 1
## 336 0 0 0
## 337 0 0 0
## 338 1 0 0
## 339 1 1 1
## 340 1 1 1
## 341 1 0 1
## 342 1 1 1
## 343 1 1 1
## 344 1 1 1
## 345 1 1 1
## 346 1 1 1
## 347 1 0 1
## 348 1 1 1
## 349 1 1 1
## 350 1 0 1
## 351 1 0 1
## 352 1 0 1
## 353 1 1 1
## 354 1 1 1
## 355 1 1 1
## 356 1 1 1
## 357 1 1 1
## 358 1 1 1
## 359 1 1 1
## 360 1 1 1
## 361 1 1 1
## 362 1 0 1
## 363 1 0 1
## 364 1 1 1
## 365 1 1 1
## 366 1 0 1
## 367 1 1 1
## 368 1 1 1
## 369 1 1 1
## 370 1 1 1
## 371 1 1 0
## 372 1 1 1
## 373 1 1 1
## 374 1 1 1
## 375 1 1 0
## 376 1 1 1
## 377 1 1 1
## 378 1 1 0
## 379 1 1 1
## 380 0 1 1
## 381 1 1 1
## 382 1 1 1
## 383 1 1 1
## 384 1 1 1
## 385 1 1 1
## 386 1 0 1
## 387 1 1 1
## 388 1 1 1
## 389 0 1 1
## 390 1 1 1
## 391 1 1 1
## 392 1 0 1
## 393 1 1 1
## 394 1 1 0
## 395 1 1 1
## 396 1 1 0
## 397 1 1 0
## 398 1 1 1
## 399 1 1 1
## 400 1 1 1
## 401 1 1 1
## 402 1 1 1
## 403 1 0 0
## 404 1 1 1
## 405 1 0 1
## 406 1 1 1
## 407 1 1 1
## 408 1 1 1
## 409 1 0 1
## 410 1 0 1
## 411 1 0 1
## 412 1 1 1
## 413 1 1 1
## 414 1 1 1
## 415 1 1 1
## 416 1 1 1
## 417 1 1 1
## 418 1 1 1
## 419 1 1 1
## 420 1 1 0
## 421 1 1 1
## 422 1 1 1
## 423 1 1 1
## 424 1 1 1
## 425 1 1 1
## 426 1 1 1
## 427 1 1 0
## 428 1 0 1
## 429 1 1 1
## 430 1 1 1
## 431 1 1 1
## 432 1 1 1
## 433 1 1 1
## 434 1 1 1
## 435 1 1 0
## 436 1 0 1
## 437 1 1 1
## 438 1 1 1
## 439 1 1 1
## 440 1 1 1
## 441 1 1 1
## 442 1 1 1
## 443 1 1 1
## 444 1 1 1
## 445 1 1 1
## 446 1 1 1
## 447 1 1 1
## 448 1 1 1
## 449 1 1 1
## 450 1 1 1
## 451 1 1 1
## 452 1 1 1
## 453 1 1 1
## 454 1 1 1
## 455 1 1 1
## 456 1 1 1
## 457 1 1 0
## 458 1 1 1
## 459 1 1 1
## 460 1 1 1
## 461 1 1 1
## 462 1 1 1
## 463 1 1 1
## 464 0 1 0
## 465 1 0 1
## 466 1 1 1
## 467 1 1 1
## 468 1 1 0
## 469 1 1 1
## 470 1 1 0
## 471 1 1 1
## 472 1 1 1
## 473 1 1 1
## 474 1 1 1
## 475 1 1 0
## 476 1 1 1
## 477 1 1 1
## 478 1 1 1
## 479 1 1 1
## 480 1 1 1
## 481 1 1 1
## 482 1 0 1
## 483 1 1 1
## 484 1 0 1
## 485 1 1 1
## 486 1 1 1
## 487 1 0 1
## 488 1 0 1
## 489 1 1 1
## 490 1 1 1
## 491 1 1 1
## 492 1 0 1
## 493 1 0 0
## 494 1 0 1
## 495 1 1 1
## 496 1 1 1
## 497 1 1 1
## 498 1 1 1
## 499 1 1 1
## 500 1 1 1
## 501 1 1 1
## 502 1 1 1
## 503 1 1 1
## 504 1 1 1
## 505 1 0 1
## 506 1 1 1
## 507 1 0 1
## 508 1 1 1
## 509 0 1 1
## 510 1 1 1
## 511 1 1 1
## 512 1 1 1
## 513 1 1 1
## 514 1 0 0
## 515 1 0 1
## 516 1 1 1
## 517 1 0 1
## 518 1 1 1
## 519 1 1 1
## 520 1 1 1
## 521 1 1 1
## 522 1 1 1
## 523 1 1 1
## 524 1 1 1
## 525 1 0 1
## 526 1 0 1
## 527 1 0 1
## 528 1 0 1
## 529 1 1 1
## 530 1 1 1
## 531 1 1 1
## 532 1 1 1
## 533 1 1 1
## 534 1 1 1
## 535 1 1 1
## 536 1 1 0
## 537 1 1 1
## 538 1 1 1
## 539 1 0 0
## 540 1 1 1
## 541 1 1 1
## 542 1 1 1
## 543 1 1 1
## 544 1 1 1
## 545 1 1 1
## 546 1 1 1
## 547 1 1 1
## 548 1 1 1
## 549 0 1 1
## 550 1 1 1
## 551 1 1 1
## 552 1 1 1
## 553 1 1 1
## 554 1 1 1
## 555 1 1 1
## 556 1 1 1
## 557 1 1 1
## 558 1 0 0
## 559 1 0 1
## 560 1 1 1
## 561 1 1 1
## 562 1 1 1
## 563 1 1 1
## 564 1 1 1
## 565 1 1 1
## 566 1 0 1
## 567 1 1 1
## 568 1 1 1
## 569 1 1 1
## 570 1 1 1
## 571 1 1 1
## 572 1 1 1
## 573 1 1 1
## 574 1 1 1
## 575 1 1 1
## 576 1 1 0
## 577 1 0 1
## 578 1 1 1
## 579 1 1 1
## 580 1 1 1
## 581 0 1 1
## 582 1 1 1
## 583 1 1 1
## 584 1 0 1
## 585 0 0 1
## 586 1 1 1
## 587 1 1 1
## 588 1 1 1
## 589 1 1 0
## 590 1 1 1
## 591 1 1 1
## 592 1 1 1
## 593 1 1 1
## 594 1 1 1
## 595 1 0 1
## 596 1 1 1
## 597 1 1 1
## 598 1 1 1
## 599 1 1 1
## 600 1 1 1
## 601 1 1 1
## 602 1 0 1
## 603 1 1 1
## 604 1 1 1
## 605 1 1 1
## 606 1 1 1
## 607 1 1 1
## 608 1 1 0
## 609 1 1 1
## 610 1 1 1
## 611 1 1 1
## 612 1 1 1
## 613 1 0 0
## 614 1 1 1
## 615 1 0 1
## 616 1 1 1
## 617 1 1 1
## 618 1 1 1
## 619 1 1 1
## 620 1 1 1
## 621 1 1 1
## 622 1 1 1
## 623 1 1 0
## 624 1 1 1
## 625 1 1 0
## 626 1 1 1
## 627 1 1 1
## 628 1 1 1
## 629 1 1 1
## 630 1 1 1
## 631 1 1 1
## 632 1 1 0
## 633 1 1 0
## 634 1 1 1
## 635 1 1 1
## 636 1 1 1
## 637 1 1 1
## 638 1 1 1
## 639 1 1 0
## 640 1 1 1
## 641 1 1 1
## 642 1 1 1
## 643 1 1 1
## 644 1 1 1
## 645 1 1 1
## 646 1 1 1
## 647 1 1 1
## 648 1 1 1
## 649 1 1 1
## 650 1 1 1
## 651 1 1 1
## 652 1 1 1
## 653 1 1 1
## 654 1 1 1
## 655 1 0 1
## 656 1 1 1
## 657 1 1 1
## 658 1 0 1
## 659 1 1 1
## 660 1 0 1
## 661 0 1 0
## 662 1 1 1
## 663 1 1 1
## 664 1 0 1
## 665 1 1 0
## 666 1 1 1
## 667 1 1 1
## 668 1 1 0
## 669 1 1 1
## 670 1 1 0
## 671 1 1 1
## 672 1 1 1
## 673 0 1 1
## 674 1 1 1
## 675 1 0 1
## 676 1 1 1
## 677 1 1 1
## 678 1 1 1
## 679 1 1 1
## 680 1 1 1
## 681 1 1 1
## 682 1 1 1
## 683 1 1 1
## 684 1 1 0
## 685 1 1 1
## 686 1 1 1
## 687 1 1 1
## 688 1 1 1
## 689 1 1 1
## 690 1 1 0
## 691 1 1 1
## 692 1 1 1
## 693 1 1 1
## 694 1 1 1
## 695 1 1 1
## 696 1 1 1
## 697 1 1 1
## 698 1 1 1
## 699 1 1 1
## 700 1 1 0
## 701 1 0 0
## 702 1 1 1
## 703 1 1 1
## 704 1 1 0
## 705 1 1 1
## 706 1 1 1
## 707 1 1 1
## 708 1 1 1
## 709 1 1 1
## 710 1 1 1
## 711 1 0 1
## 712 1 1 1
## 713 1 1 1
## 714 1 0 0
## 715 1 1 1
## 716 1 1 1
## 717 1 0 1
## 718 1 1 1
## 719 1 1 1
## 720 1 1 1
## 721 1 1 1
## 722 1 1 1
## 723 1 1 1
## 724 1 1 0
## 725 1 0 0
## 726 1 1 1
## 727 1 1 0
## 728 1 1 1
## 729 1 1 1
## 730 1 0 1
## 731 1 0 1
## 732 1 0 1
## 733 1 0 1
## 734 1 1 1
## 735 1 1 1
## 736 1 0 1
## 737 1 1 1
## 738 0 1 1
## 739 1 1 1
## 740 1 1 1
## 741 1 1 1
## 742 1 0 1
## 743 1 1 1
## 744 1 1 1
## 745 1 1 1
## 746 1 1 1
## 747 1 1 0
## 748 1 0 1
## 749 1 1 1
## 750 1 1 1
## 751 1 1 0
## 752 1 1 1
## 753 1 1 1
## 754 1 1 0
## 755 1 1 1
## 756 1 0 1
## 757 1 1 1
## 758 1 1 1
## 759 1 1 1
## 760 1 1 1
## 761 1 1 1
## 762 1 1 0
## 763 1 1 1
## 764 1 1 1
## 765 1 1 1
## 766 1 1 1
## 767 1 1 1
## 768 1 1 1
## 769 1 1 1
## 770 1 1 1
## 771 1 1 1
## 772 1 1 1
## 773 1 1 1
## 774 1 0 1
## 775 1 1 0
## 776 1 1 1
## 777 1 1 1
## 778 1 1 0
## 779 1 1 1
## 780 1 1 1
## 781 1 1 1
## 782 1 1 1
## 783 0 0 0
## 784 1 0 1
## 785 1 1 1
## 786 1 1 1
## 787 1 0 1
## 788 1 1 0
## 789 1 0 1
## 790 1 1 1
## 791 1 1 1
## 792 1 1 1
## 793 0 0 1
## 794 1 1 0
## 795 1 1 1
## 796 1 1 1
## 797 1 0 1
## 798 1 1 1
## 799 1 1 1
## 800 1 0 1
## 801 1 1 0
## 802 1 1 1
## 803 1 1 1
## 804 1 1 1
## 805 1 1 1
## 806 1 1 1
## 807 1 1 1
## 808 1 0 0
## 809 1 1 1
## 810 1 1 1
## 811 1 1 1
## 812 1 1 1
## 813 1 1 1
## 814 1 1 1
## 815 1 1 1
## 816 1 1 0
## 817 1 1 1
## 818 1 0 0
## 819 1 1 1
## 820 1 1 1
## 821 1 1 1
## 822 1 1 1
## 823 1 1 1
## 824 1 1 0
## 825 1 1 1
## 826 1 1 1
## 827 1 0 1
## 828 1 1 1
## 829 1 1 1
## 830 1 1 1
## 831 1 1 0
## 832 1 1 1
## 833 1 1 1
## 834 1 1 1
## 835 1 1 1
## 836 1 1 1
## 837 1 0 1
## 838 1 0 1
## 839 1 1 1
## 840 1 1 1
## 841 1 1 1
## 842 1 1 1
## 843 1 1 0
## 844 1 1 1
## 845 1 1 1
## 846 1 1 1
## 847 1 1 1
## 848 1 1 1
## 849 1 1 0
## 850 1 1 1
## 851 1 1 1
## 852 1 1 1
## 853 1 1 1
## 854 1 1 1
## 855 1 1 1
## 856 1 1 1
## 857 1 1 1
## 858 1 1 1
## 859 1 1 1
## 860 1 1 1
## 861 1 1 0
## 862 1 0 0
## 863 1 1 1
## 864 1 1 0
## 865 0 1 0
## 866 1 1 1
## 867 1 1 1
## 868 1 1 1
## 869 1 1 1
## 870 1 1 1
## 871 1 1 1
## 872 1 1 1
## 873 1 0 1
## 874 1 1 1
## 875 1 1 1
## 876 0 1 1
## 877 1 1 0
## 878 1 1 1
## 879 1 1 1
## 880 1 0 1
## 881 1 0 1
## 882 1 1 0
## 883 1 1 1
## 884 1 1 1
## 885 1 1 0
## 886 1 1 1
## 887 1 0 0
## 888 1 0 1
## 889 1 1 1
## 890 1 1 1
## 891 1 0 1
## 892 1 0 1
## 893 1 0 1
## 894 1 0 1
## 895 1 0 1
## 896 1 1 1
## 897 1 1 1
## 898 1 0 1
## 899 1 1 0
## 900 1 1 0
## 901 1 1 1
## 902 1 0 1
## 903 1 1 0
## 904 1 1 1
## 905 1 0 1
## 906 1 1 1
## 907 1 1 1
## 908 0 1 1
## 909 1 1 1
## 910 1 1 1
## 911 1 1 1
## 912 1 1 1
## 913 1 1 1
## 914 1 1 0
## 915 1 1 1
## 916 1 0 0
## 917 1 1 1
## 918 1 1 1
## 919 1 1 1
## 920 1 1 0
## 921 1 1 0
## 922 1 1 1
## 923 1 1 0
## 924 1 1 0
## 925 1 1 1
## 926 1 1 1
## 927 1 1 1
## 928 1 1 1
## 929 1 1 1
## 930 1 1 0
## 931 1 1 0
## 932 1 1 1
## 933 1 1 1
## 934 1 1 1
## 935 1 1 1
## 936 1 1 1
## 937 1 0 0
## 938 1 1 0
## 939 1 1 1
## 940 1 1 0
## 941 1 0 1
## 942 1 0 1
## 943 1 1 1
## 944 1 1 1
## 945 1 0 1
## 946 1 1 1
## 947 1 1 1
## 948 0 1 0
## 949 1 1 0
## 950 1 1 0
## 951 1 1 1
## 952 0 0 1
## 953 1 0 1
## 954 1 0 1
## 955 1 1 1
## 956 1 1 1
## 957 1 1 1
## 958 1 1 1
## 959 1 1 1
## 960 1 1 1
## 961 1 1 1
## 962 1 1 1
## 963 1 1 1
## 964 1 1 1
## 965 1 0 0
## 966 1 1 1
## 967 1 1 1
## 968 1 1 1
## 969 1 1 1
## 970 1 1 1
## 971 1 1 0
## 972 1 1 1
## 973 1 1 1
## 974 1 1 1
## 975 1 1 1
## 976 1 1 1
## 977 1 1 1
## 978 1 1 1
## 979 1 1 0
## 980 1 1 1
## 981 1 1 1
## 982 1 1 1
## 983 1 1 1
## 984 1 1 1
## 985 1 1 1
## 986 1 1 1
## 987 1 0 0
## 988 1 1 1
## 989 1 1 0
## 990 1 1 1
## 991 0 0 1
## 992 1 1 0
## 993 1 1 1
## 994 1 1 1
## 995 0 0 1
## 996 1 0 0
## 997 1 1 1
## 998 1 1 1
## 999 1 1 1
## 1000 1 0 1
## 1001 1 1 1
## 1002 1 1 1
## 1003 1 0 1
## 1004 1 1 1
## 1005 1 0 1
## 1006 1 1 1
## 1007 1 0 1
## 1008 1 1 1
## 1009 1 1 0
## 1010 1 1 0
## 1011 1 1 1
## 1012 1 1 1
## 1013 1 1 1
## 1014 1 1 1
## 1015 1 0 1
## 1016 1 1 1
## 1017 1 1 0
## 1018 1 1 1
## 1019 1 1 1
## 1020 1 1 1
## 1021 1 1 1
## 1022 1 1 1
## 1023 1 1 1
## 1024 1 1 0
## 1025 1 1 1
## 1026 1 1 0
## 1027 1 1 1
## 1028 1 1 1
## 1029 1 1 1
## 1030 1 1 1
## 1031 1 1 1
## 1032 1 0 1
## 1033 1 1 1
## 1034 1 1 0
## 1035 1 1 0
## 1036 1 0 0
## 1037 1 1 1
## 1038 1 1 0
## 1039 1 0 0
## 1040 1 1 1
## 1041 1 1 0
## 1042 1 1 0
## 1043 1 1 0
## 1044 1 1 1
## 1045 1 1 1
## 1046 1 1 1
## 1047 1 1 1
## 1048 1 1 0
## 1049 1 1 1
## 1050 1 1 0
## 1051 1 0 0
## 1052 1 1 1
## 1053 1 1 1
## 1054 1 1 1
## 1055 1 1 1
## 1056 1 1 0
## 1057 1 1 1
## 1058 1 1 1
## 1059 1 1 1
## 1060 1 1 0
## 1061 1 1 0
## 1062 1 1 1
## 1063 1 1 1
## 1064 1 1 1
## 1065 1 1 0
## 1066 0 1 0
## 1067 1 1 1
## 1068 1 1 1
## 1069 1 1 1
## 1070 1 1 1
## 1071 1 1 1
## 1072 1 1 1
## 1073 1 1 1
## 1074 1 1 0
## 1075 1 1 1
## 1076 1 1 1
## 1077 1 1 1
## 1078 1 1 1
## 1079 1 0 0
## 1080 1 1 1
## 1081 1 1 0
## 1082 1 1 1
## 1083 1 1 0
## 1084 1 1 0
## 1085 1 1 1
## 1086 1 1 1
## 1087 1 1 1
## 1088 1 1 1
## 1089 1 1 1
## 1090 1 1 0
## 1091 1 1 1
## 1092 1 1 1
## 1093 1 1 1
## 1094 1 1 0
## 1095 1 1 1
## 1096 1 1 0
## 1097 1 1 1
## 1098 1 1 0
## 1099 1 1 1
## 1100 1 1 1
## 1101 1 1 1
## 1102 1 1 1
## 1103 1 1 1
## 1104 1 1 0
## 1105 0 0 0
## 1106 1 0 1
## 1107 1 0 1
## 1108 1 0 1
## 1109 1 0 1
## 1110 1 0 0
## 1111 1 0 1
## 1112 1 1 0
## 1113 1 1 1
## 1114 1 1 1
## 1115 1 0 1
## 1116 1 1 1
## 1117 1 1 1
## 1118 1 1 1
## 1119 1 1 0
## 1120 1 1 0
## 1121 1 1 1
## 1122 1 1 0
## 1123 1 1 1
## 1124 1 1 1
## 1125 1 1 0
## 1126 1 1 1
## 1127 1 1 1
## 1128 1 1 0
## 1129 1 1 1
## 1130 1 0 0
## 1131 1 0 0
## 1132 1 0 0
## 1133 1 1 1
## 1134 1 1 1
## 1135 1 1 1
## 1136 1 1 1
## 1137 1 1 0
## 1138 1 1 0
## 1139 1 1 0
## 1140 1 1 0
## 1141 1 1 1
## 1142 1 1 1
## 1143 1 1 1
## 1144 1 1 1
## 1145 1 1 1
## 1146 1 1 1
## 1147 1 1 1
## 1148 1 1 1
## 1149 1 1 1
## 1150 1 1 1
## 1151 1 1 1
## 1152 1 1 1
## 1153 1 1 1
## 1154 1 1 0
## 1155 1 1 0
## 1156 1 0 1
## 1157 1 1 0
## 1158 1 1 0
## 1159 1 1 0
## 1160 1 1 1
## 1161 1 1 1
## 1162 1 1 0
## 1163 1 1 1
## 1164 1 0 0
## 1165 1 1 1
## 1166 1 1 1
## 1167 1 1 1
## 1168 1 0 1
## 1169 1 1 1
## 1170 1 1 0
## 1171 1 1 1
## 1172 1 1 0
## 1173 1 1 1
## 1174 1 1 1
## 1175 1 1 1
## 1176 1 1 0
## 1177 1 1 0
## 1178 1 1 0
## 1179 1 1 1
## 1180 1 1 1
## 1181 1 1 1
## 1182 1 1 1
## 1183 1 0 0
## 1184 1 1 0
## 1185 1 1 1
## 1186 1 1 1
## 1187 1 1 1
## 1188 1 1 1
## 1189 0 0 1
## 1190 1 1 1
## 1191 1 1 0
## 1192 1 0 1
## 1193 1 0 1
## 1194 1 1 0
## 1195 1 1 0
## 1196 1 1 0
## 1197 1 1 1
## 1198 1 1 1
## 1199 1 1 1
## 1200 1 1 1
## 1201 1 0 0
## 1202 1 1 0
## 1203 1 1 0
## 1204 1 1 1
## 1205 1 1 1
## 1206 1 1 1
## 1207 1 1 1
## 1208 1 1 1
## 1209 1 1 1
## 1210 1 1 1
## 1211 1 0 1
## 1212 1 0 1
## 1213 1 1 1
## 1214 1 0 1
## 1215 1 1 1
## 1216 1 1 1
## 1217 1 1 1
## 1218 1 1 1
## 1219 1 1 1
## 1220 1 1 1
## 1221 1 1 1
## 1222 1 1 1
## 1223 1 1 1
## 1224 1 1 1
## 1225 1 1 1
## 1226 1 1 1
## 1227 1 1 1
## 1228 1 1 1
## 1229 1 1 1
## 1230 1 1 1
## 1231 1 1 1
## 1232 1 1 1
## 1233 1 1 1
## 1234 1 1 1
## 1235 1 1 1
## 1236 1 0 1
## 1237 0 1 0
## 1238 1 1 1
## 1239 1 0 1
## 1240 1 0 1
## 1241 1 1 1
## 1242 1 1 1
## 1243 1 1 1
## 1244 1 1 0
## 1245 1 1 1
## 1246 1 1 1
## 1247 1 1 1
## 1248 1 1 1
## 1249 1 0 1
## 1250 1 1 1
## 1251 1 1 1
## 1252 1 1 1
## 1253 1 1 0
## 1254 1 1 1
## 1255 1 1 0
## 1256 1 0 1
## 1257 1 1 1
## 1258 1 0 1
## 1259 1 1 1
## 1260 1 1 1
## 1261 1 1 0
## 1262 1 1 1
## 1263 1 1 1
## 1264 1 1 1
## 1265 1 1 1
## 1266 1 1 0
## 1267 1 1 1
## 1268 1 1 1
## 1269 1 0 1
## 1270 1 0 1
## 1271 1 1 1
## 1272 1 1 1
## 1273 1 1 1
## 1274 1 1 1
## 1275 1 1 1
## 1276 1 1 0
## 1277 1 0 0
## 1278 1 1 0
## 1279 1 1 1
## 1280 1 1 1
## 1281 1 1 0
## 1282 1 1 0
## 1283 1 1 0
## 1284 1 1 1
## 1285 1 1 0
## 1286 0 1 0
## 1287 1 1 1
## 1288 1 1 1
## 1289 1 1 1
## 1290 1 1 1
## 1291 1 1 0
## 1292 1 1 1
## 1293 1 1 1
## 1294 1 1 1
## 1295 1 1 1
## 1296 1 1 1
## 1297 1 0 0
## 1298 1 1 1
## 1299 1 1 1
## 1300 1 1 1
## 1301 1 1 1
## 1302 1 1 1
## 1303 1 1 1
## 1304 1 1 1
## 1305 1 1 1
## 1306 1 1 0
## 1307 1 1 1
## 1308 1 0 1
## 1309 1 1 1
## 1310 1 1 0
## 1311 1 1 0
## 1312 1 1 0
## 1313 1 1 1
## 1314 1 1 1
## 1315 1 1 0
## 1316 1 1 0
## 1317 1 1 0
## 1318 1 1 0
## 1319 1 1 1
## 1320 1 1 0
## 1321 1 1 1
## 1322 1 1 0
## 1323 1 1 0
## 1324 1 1 1
## 1325 1 1 0
## 1326 1 1 0
## 1327 1 1 1
## 1328 1 1 0
## 1329 1 1 1
## 1330 1 1 1
## 1331 1 1 1
## 1332 1 1 1
## 1333 1 1 1
## 1334 1 1 1
## 1335 1 1 1
## 1336 1 0 1
## 1337 1 1 0
## 1338 1 1 0
## 1339 1 0 0
## 1340 1 1 1
## 1341 1 1 1
## 1342 1 1 0
## 1343 1 1 0
## 1344 1 1 1
## 1345 1 1 0
## 1346 1 1 1
## 1347 1 1 1
## 1348 1 1 1
## 1349 1 1 0
## 1350 1 1 1
## 1351 1 1 0
## 1352 1 1 0
## 1353 1 1 1
## 1354 1 1 1
## 1355 1 1 1
## 1356 1 1 1
## 1357 1 1 0
## 1358 1 1 1
## 1359 1 1 0
## 1360 1 1 1
## 1361 1 1 1
## 1362 1 1 1
## 1363 1 1 1
## 1364 1 1 0
## 1365 1 1 0
## 1366 1 0 1
## 1367 1 1 0
## 1368 1 1 0
## 1369 1 1 1
## 1370 1 1 0
## 1371 1 1 1
## 1372 1 1 1
## 1373 1 1 1
## 1374 1 1 1
## 1375 1 1 1
## 1376 1 1 1
## 1377 1 1 1
## 1378 1 1 1
## 1379 1 0 1
## 1380 1 0 1
## 1381 1 0 1
## 1382 1 0 1
## 1383 1 1 0
## 1384 1 1 1
## 1385 1 1 1
## 1386 1 1 1
## 1387 1 1 0
## 1388 1 0 1
## 1389 1 1 0
## 1390 1 1 1
## 1391 1 1 1
## 1392 1 1 1
## 1393 1 1 1
## 1394 1 1 0
## 1395 1 1 0
## 1396 1 1 0
## 1397 1 1 0
## 1398 1 1 1
## 1399 1 1 0
## 1400 1 1 0
## 1401 1 1 0
## 1402 1 1 0
## 1403 1 1 1
## 1404 1 1 1
## 1405 1 1 0
## 1406 1 1 0
## 1407 1 1 0
## 1408 1 1 1
## 1409 1 1 1
## 1410 1 0 1
## 1411 1 0 0
## 1412 1 0 0
## 1413 1 0 0
## 1414 0 1 1
## 1415 1 0 0
## 1416 1 1 0
## 1417 0 1 1
## 1418 1 1 1
## 1419 1 1 1
## 1420 1 1 1
## 1421 1 1 1
## 1422 1 1 1
## 1423 1 1 1
## 1424 1 1 0
## 1425 1 1 1
## 1426 1 1 0
## 1427 1 1 0
## 1428 1 1 1
## 1429 1 1 1
## 1430 1 1 1
## 1431 1 1 1
## 1432 1 1 0
## 1433 1 0 0
## 1434 1 1 1
## 1435 1 1 0
## 1436 1 1 1
## 1437 1 1 0
## 1438 1 1 0
## 1439 1 1 1
## 1440 1 1 0
## 1441 1 1 0
## 1442 1 1 0
## 1443 1 1 0
## 1444 1 1 1
## 1445 1 1 0
## 1446 1 1 1
## 1447 1 1 1
## 1448 1 1 1
## 1449 1 0 1
## 1450 1 1 1
## 1451 1 1 0
## 1452 1 1 1
## 1453 1 1 0
## 1454 1 1 1
## 1455 1 1 1
## 1456 1 1 0
## 1457 1 1 1
## 1458 1 1 1
## 1459 1 1 1
## 1460 1 1 1
## 1461 1 1 0
## 1462 1 1 1
## 1463 1 1 1
## 1464 1 1 0
## 1465 1 1 0
## 1466 1 1 1
## 1467 1 1 0
## 1468 1 0 1
## 1469 1 0 0
## 1470 1 1 1
## 1471 1 1 0
## 1472 1 1 0
## 1473 1 1 1
## 1474 1 1 1
## 1475 1 1 1
## 1476 1 1 0
## 1477 1 1 0
## 1478 1 1 0
## 1479 1 1 1
## 1480 1 1 0
## 1481 1 1 0
## 1482 0 1 0
## 1483 1 1 1
## 1484 1 1 0
## 1485 1 1 0
## 1486 1 1 0
## 1487 1 1 1
## 1488 1 0 1
## 1489 1 1 0
## 1490 1 0 1
## 1491 1 0 1
## 1492 1 0 1
## 1493 1 1 1
## 1494 1 1 1
## 1495 1 0 1
## 1496 1 1 1
## 1497 1 1 1
## 1498 1 0 1
## 1499 1 1 1
## 1500 1 1 1
## 1501 1 1 0
## 1502 1 1 1
## 1503 1 1 1
## 1504 1 1 1
## 1505 1 1 0
## 1506 1 1 1
## 1507 1 1 0
## 1508 1 1 0
## 1509 1 1 1
## 1510 1 1 1
## 1511 1 1 0
## 1512 1 1 1
## 1513 1 1 1
## 1514 1 1 1
## 1515 1 1 0
## 1516 1 1 1
## 1517 1 1 1
## 1518 1 1 1
## 1519 1 1 1
## 1520 1 1 1
## 1521 1 1 1
## 1522 1 0 0
## 1523 1 0 0
## 1524 1 1 0
## 1525 1 1 0
## 1526 1 1 1
## 1527 1 1 1
## 1528 1 1 1
## 1529 1 1 1
## 1530 1 0 1
## 1531 0 0 1
## 1532 1 0 1
## 1533 1 1 0
## 1534 1 1 1
## 1535 1 1 0
## 1536 1 1 1
## 1537 1 1 1
## 1538 1 1 0
## Amenities_HotWater Amenities_TV Amenities_AC
## 1 0 1 1
## 2 1 1 1
## 3 0 1 1
## 4 1 1 1
## 5 1 1 1
## 6 1 0 1
## 7 1 1 1
## 8 1 1 1
## 9 1 1 0
## 10 1 1 1
## 11 1 0 1
## 12 1 1 1
## 13 1 1 1
## 14 0 1 1
## 15 0 0 1
## 16 1 1 1
## 17 1 1 1
## 18 1 0 1
## 19 1 1 1
## 20 1 1 1
## 21 1 0 1
## 22 1 1 1
## 23 1 1 0
## 24 1 1 1
## 25 1 1 1
## 26 1 1 1
## 27 1 1 1
## 28 1 1 1
## 29 1 1 1
## 30 1 1 1
## 31 1 1 1
## 32 1 0 1
## 33 1 1 1
## 34 1 1 1
## 35 0 1 1
## 36 1 1 1
## 37 1 1 1
## 38 1 1 1
## 39 1 1 1
## 40 1 1 1
## 41 1 1 1
## 42 1 1 1
## 43 1 0 1
## 44 1 1 1
## 45 1 0 1
## 46 1 1 1
## 47 1 0 1
## 48 1 1 1
## 49 0 1 1
## 50 0 1 1
## 51 0 1 1
## 52 0 0 1
## 53 1 1 1
## 54 1 1 1
## 55 1 1 1
## 56 0 1 1
## 57 1 1 1
## 58 1 0 1
## 59 1 1 1
## 60 1 1 1
## 61 1 1 1
## 62 0 1 1
## 63 1 1 1
## 64 1 1 1
## 65 1 1 1
## 66 1 1 1
## 67 1 1 1
## 68 1 1 1
## 69 1 1 1
## 70 1 1 1
## 71 1 1 1
## 72 0 1 1
## 73 1 1 1
## 74 0 1 1
## 75 1 0 1
## 76 1 1 1
## 77 1 1 1
## 78 0 1 1
## 79 1 0 1
## 80 0 1 1
## 81 0 1 1
## 82 0 1 1
## 83 1 1 1
## 84 1 1 1
## 85 1 1 1
## 86 1 1 1
## 87 1 1 1
## 88 1 1 1
## 89 1 1 1
## 90 1 1 1
## 91 0 1 1
## 92 1 1 1
## 93 1 1 1
## 94 1 1 1
## 95 0 1 1
## 96 0 1 1
## 97 0 1 1
## 98 0 1 1
## 99 1 1 1
## 100 1 0 1
## 101 0 1 1
## 102 1 1 1
## 103 1 1 1
## 104 1 1 1
## 105 1 1 1
## 106 0 1 1
## 107 1 1 1
## 108 0 1 1
## 109 1 1 1
## 110 1 1 1
## 111 1 1 1
## 112 1 1 1
## 113 1 1 1
## 114 1 1 1
## 115 1 0 1
## 116 1 1 1
## 117 1 1 1
## 118 1 1 1
## 119 0 0 1
## 120 1 1 1
## 121 1 1 1
## 122 0 1 1
## 123 1 1 1
## 124 1 1 1
## 125 1 1 1
## 126 1 1 1
## 127 1 1 1
## 128 1 1 1
## 129 1 1 1
## 130 0 1 1
## 131 1 1 1
## 132 1 1 1
## 133 1 1 1
## 134 1 1 1
## 135 1 1 1
## 136 1 1 1
## 137 1 1 1
## 138 1 1 1
## 139 1 1 1
## 140 1 1 1
## 141 1 1 1
## 142 1 1 1
## 143 1 1 1
## 144 1 1 1
## 145 0 1 1
## 146 1 1 1
## 147 1 1 1
## 148 1 1 1
## 149 1 1 1
## 150 1 1 1
## 151 0 0 1
## 152 1 1 1
## 153 1 1 1
## 154 0 1 1
## 155 1 1 1
## 156 0 0 1
## 157 1 1 1
## 158 1 1 1
## 159 1 1 1
## 160 1 1 1
## 161 1 1 1
## 162 1 1 1
## 163 0 1 1
## 164 1 1 1
## 165 1 1 1
## 166 1 1 1
## 167 0 1 1
## 168 1 1 0
## 169 1 1 1
## 170 1 1 1
## 171 1 1 1
## 172 1 1 1
## 173 0 1 1
## 174 0 1 1
## 175 1 1 1
## 176 1 1 1
## 177 1 1 1
## 178 1 1 1
## 179 1 1 1
## 180 1 1 1
## 181 1 1 1
## 182 0 1 1
## 183 1 0 1
## 184 1 1 1
## 185 1 0 1
## 186 1 1 1
## 187 1 1 1
## 188 1 1 1
## 189 1 1 1
## 190 1 0 1
## 191 1 1 1
## 192 0 1 1
## 193 0 0 1
## 194 0 1 1
## 195 0 1 1
## 196 1 1 1
## 197 1 1 1
## 198 1 1 1
## 199 1 1 1
## 200 0 1 1
## 201 1 1 1
## 202 1 1 1
## 203 1 1 1
## 204 0 0 1
## 205 1 1 1
## 206 1 1 1
## 207 1 1 1
## 208 1 1 1
## 209 1 1 1
## 210 1 1 1
## 211 1 1 1
## 212 1 1 1
## 213 1 1 1
## 214 1 1 1
## 215 0 1 1
## 216 1 1 1
## 217 1 1 1
## 218 1 0 1
## 219 1 0 1
## 220 1 1 1
## 221 1 1 1
## 222 1 1 1
## 223 1 1 1
## 224 1 1 1
## 225 1 0 1
## 226 1 0 1
## 227 1 1 1
## 228 1 1 1
## 229 1 1 1
## 230 1 1 1
## 231 1 1 1
## 232 0 1 1
## 233 1 1 1
## 234 1 1 1
## 235 1 1 1
## 236 1 1 1
## 237 1 1 1
## 238 0 1 1
## 239 1 0 1
## 240 1 1 1
## 241 1 1 1
## 242 1 1 1
## 243 0 0 1
## 244 1 1 1
## 245 0 1 1
## 246 1 1 1
## 247 1 1 1
## 248 1 1 1
## 249 0 1 1
## 250 1 0 1
## 251 1 1 1
## 252 1 1 1
## 253 1 1 1
## 254 0 1 1
## 255 1 1 1
## 256 0 1 1
## 257 1 1 1
## 258 1 0 1
## 259 1 1 1
## 260 1 0 1
## 261 1 1 1
## 262 1 1 1
## 263 1 1 1
## 264 1 1 1
## 265 1 1 1
## 266 1 1 1
## 267 0 0 1
## 268 1 0 1
## 269 1 1 1
## 270 1 1 1
## 271 1 1 1
## 272 1 1 1
## 273 0 1 1
## 274 1 1 1
## 275 1 1 1
## 276 1 1 1
## 277 1 1 1
## 278 1 1 1
## 279 1 1 1
## 280 1 1 1
## 281 1 1 1
## 282 1 0 1
## 283 0 1 1
## 284 1 1 1
## 285 1 1 1
## 286 1 1 1
## 287 1 1 1
## 288 1 1 1
## 289 0 1 1
## 290 0 1 1
## 291 1 1 1
## 292 1 1 1
## 293 1 1 1
## 294 1 1 1
## 295 1 1 1
## 296 1 1 1
## 297 1 1 1
## 298 1 1 1
## 299 0 0 1
## 300 1 1 1
## 301 0 1 1
## 302 1 0 1
## 303 1 1 1
## 304 1 1 1
## 305 1 1 1
## 306 1 1 1
## 307 0 1 1
## 308 0 0 1
## 309 1 0 1
## 310 0 1 1
## 311 1 0 1
## 312 1 1 1
## 313 1 1 1
## 314 1 1 1
## 315 1 1 1
## 316 1 0 1
## 317 1 1 1
## 318 1 0 0
## 319 1 1 1
## 320 1 1 1
## 321 0 1 1
## 322 1 1 1
## 323 1 1 1
## 324 1 0 1
## 325 1 1 1
## 326 1 1 1
## 327 0 1 1
## 328 1 1 1
## 329 1 1 1
## 330 0 1 1
## 331 1 1 1
## 332 0 1 1
## 333 1 1 1
## 334 1 1 1
## 335 1 1 1
## 336 0 0 0
## 337 0 0 0
## 338 0 1 1
## 339 1 0 1
## 340 1 1 1
## 341 0 1 1
## 342 1 1 1
## 343 1 1 1
## 344 1 1 1
## 345 1 0 1
## 346 1 1 1
## 347 1 1 1
## 348 1 1 1
## 349 1 1 1
## 350 1 1 1
## 351 1 1 1
## 352 1 0 1
## 353 1 0 1
## 354 1 1 1
## 355 1 1 1
## 356 1 1 1
## 357 1 0 1
## 358 0 0 1
## 359 1 1 1
## 360 1 0 1
## 361 1 1 1
## 362 0 1 1
## 363 0 1 1
## 364 0 1 1
## 365 1 1 1
## 366 0 1 1
## 367 1 1 1
## 368 1 1 1
## 369 1 1 1
## 370 1 1 1
## 371 1 0 1
## 372 1 1 1
## 373 0 1 1
## 374 1 1 1
## 375 0 1 1
## 376 1 0 1
## 377 1 1 1
## 378 1 0 1
## 379 0 1 1
## 380 1 1 1
## 381 1 1 1
## 382 0 0 1
## 383 1 0 1
## 384 1 0 1
## 385 1 1 1
## 386 1 0 1
## 387 0 1 1
## 388 1 1 1
## 389 1 1 1
## 390 1 1 1
## 391 1 1 1
## 392 1 1 1
## 393 1 0 1
## 394 1 0 1
## 395 1 0 1
## 396 1 1 1
## 397 1 0 1
## 398 1 1 1
## 399 1 0 1
## 400 1 1 1
## 401 1 1 1
## 402 1 1 1
## 403 0 0 1
## 404 0 1 1
## 405 1 1 1
## 406 1 1 1
## 407 1 1 1
## 408 1 0 1
## 409 1 0 1
## 410 1 1 1
## 411 1 1 1
## 412 1 0 1
## 413 0 1 1
## 414 0 1 1
## 415 1 1 1
## 416 1 1 1
## 417 0 1 1
## 418 1 1 1
## 419 1 1 1
## 420 1 1 1
## 421 0 1 1
## 422 1 1 1
## 423 0 1 1
## 424 0 1 1
## 425 1 1 1
## 426 1 1 1
## 427 1 1 1
## 428 0 1 1
## 429 1 1 1
## 430 1 1 1
## 431 0 0 1
## 432 1 1 1
## 433 1 1 1
## 434 1 1 1
## 435 1 0 1
## 436 1 1 1
## 437 1 1 1
## 438 1 1 1
## 439 1 1 1
## 440 1 0 1
## 441 1 1 1
## 442 1 1 1
## 443 1 1 1
## 444 1 1 1
## 445 1 0 1
## 446 1 1 1
## 447 1 1 1
## 448 1 1 1
## 449 0 1 1
## 450 1 1 1
## 451 1 0 1
## 452 1 1 1
## 453 0 1 1
## 454 1 1 1
## 455 1 1 1
## 456 1 1 1
## 457 1 0 1
## 458 1 1 1
## 459 1 1 1
## 460 1 1 1
## 461 1 1 1
## 462 1 0 1
## 463 1 1 1
## 464 1 1 0
## 465 0 1 1
## 466 1 1 1
## 467 1 1 1
## 468 0 1 1
## 469 1 1 1
## 470 0 0 1
## 471 1 1 1
## 472 1 1 1
## 473 1 0 1
## 474 1 1 1
## 475 0 1 1
## 476 0 1 1
## 477 1 1 1
## 478 1 1 1
## 479 0 1 1
## 480 1 1 1
## 481 1 1 1
## 482 0 1 1
## 483 0 1 1
## 484 0 1 1
## 485 0 1 1
## 486 1 1 1
## 487 1 1 1
## 488 0 1 1
## 489 0 0 1
## 490 1 1 1
## 491 0 0 1
## 492 0 1 1
## 493 1 1 1
## 494 1 0 1
## 495 1 1 1
## 496 1 1 1
## 497 1 1 1
## 498 1 0 1
## 499 1 0 1
## 500 0 1 1
## 501 1 1 1
## 502 1 1 1
## 503 1 1 1
## 504 1 1 1
## 505 1 1 1
## 506 1 1 1
## 507 1 1 1
## 508 1 1 0
## 509 0 0 0
## 510 1 1 1
## 511 1 1 1
## 512 1 0 1
## 513 1 1 1
## 514 1 1 1
## 515 0 1 1
## 516 1 1 1
## 517 0 1 1
## 518 1 1 1
## 519 1 0 1
## 520 1 1 1
## 521 1 1 1
## 522 1 1 1
## 523 0 1 1
## 524 1 1 1
## 525 1 1 1
## 526 1 1 1
## 527 0 1 1
## 528 1 1 1
## 529 1 1 1
## 530 1 1 1
## 531 1 1 1
## 532 1 1 1
## 533 1 1 1
## 534 1 0 1
## 535 1 1 1
## 536 1 1 1
## 537 1 1 1
## 538 1 1 1
## 539 1 0 0
## 540 1 0 1
## 541 0 1 1
## 542 1 1 1
## 543 1 0 1
## 544 1 1 1
## 545 0 0 1
## 546 1 1 1
## 547 1 1 1
## 548 0 1 1
## 549 1 0 1
## 550 1 1 1
## 551 1 1 1
## 552 1 1 1
## 553 1 1 1
## 554 1 1 1
## 555 0 1 1
## 556 1 1 1
## 557 1 1 1
## 558 1 1 0
## 559 1 1 1
## 560 1 1 1
## 561 0 1 1
## 562 0 1 1
## 563 1 1 1
## 564 1 1 1
## 565 1 1 1
## 566 1 1 0
## 567 1 0 1
## 568 1 1 1
## 569 1 1 1
## 570 0 1 1
## 571 1 0 1
## 572 1 1 1
## 573 1 1 1
## 574 1 1 1
## 575 1 1 1
## 576 0 0 1
## 577 0 1 1
## 578 1 1 1
## 579 1 1 1
## 580 1 1 1
## 581 1 1 1
## 582 1 1 1
## 583 0 1 1
## 584 1 1 1
## 585 0 1 1
## 586 0 1 1
## 587 1 0 1
## 588 1 1 1
## 589 0 1 1
## 590 1 1 1
## 591 0 0 1
## 592 1 1 1
## 593 1 1 1
## 594 1 1 1
## 595 0 1 1
## 596 1 1 1
## 597 1 1 1
## 598 0 1 1
## 599 1 1 1
## 600 1 1 1
## 601 1 1 1
## 602 1 1 1
## 603 1 1 1
## 604 0 1 1
## 605 1 1 1
## 606 1 1 1
## 607 1 1 1
## 608 1 0 1
## 609 1 1 1
## 610 1 1 1
## 611 1 1 1
## 612 1 1 1
## 613 0 0 1
## 614 1 1 1
## 615 1 1 1
## 616 1 1 1
## 617 0 1 1
## 618 1 1 1
## 619 0 1 1
## 620 1 0 1
## 621 0 0 1
## 622 1 1 1
## 623 1 0 0
## 624 0 1 1
## 625 1 0 0
## 626 1 1 1
## 627 1 1 1
## 628 0 1 1
## 629 1 1 1
## 630 1 1 1
## 631 1 1 1
## 632 1 1 1
## 633 1 1 1
## 634 1 1 1
## 635 1 0 1
## 636 0 0 1
## 637 1 1 1
## 638 1 1 1
## 639 1 0 1
## 640 1 1 1
## 641 1 0 1
## 642 1 1 1
## 643 1 1 1
## 644 1 1 1
## 645 1 1 1
## 646 1 1 1
## 647 1 1 1
## 648 0 1 1
## 649 1 1 1
## 650 1 1 1
## 651 1 1 1
## 652 1 1 1
## 653 1 1 1
## 654 1 1 1
## 655 1 1 1
## 656 1 1 1
## 657 1 1 1
## 658 0 1 1
## 659 1 1 1
## 660 0 0 1
## 661 1 1 1
## 662 1 1 1
## 663 0 0 1
## 664 1 0 1
## 665 1 0 0
## 666 1 1 1
## 667 1 1 1
## 668 1 1 1
## 669 1 1 1
## 670 1 0 1
## 671 1 0 1
## 672 1 0 1
## 673 1 1 1
## 674 1 0 1
## 675 0 1 1
## 676 0 1 1
## 677 1 1 1
## 678 1 1 1
## 679 1 0 1
## 680 1 0 1
## 681 1 1 1
## 682 1 1 1
## 683 1 1 1
## 684 0 1 1
## 685 1 1 1
## 686 1 1 1
## 687 1 1 1
## 688 1 1 1
## 689 1 1 1
## 690 0 1 1
## 691 1 1 1
## 692 1 1 1
## 693 1 1 1
## 694 1 1 1
## 695 1 1 1
## 696 1 0 1
## 697 1 0 1
## 698 1 1 1
## 699 1 1 1
## 700 0 0 1
## 701 0 0 1
## 702 1 0 1
## 703 0 1 1
## 704 1 1 1
## 705 1 1 1
## 706 0 1 1
## 707 1 1 1
## 708 1 1 1
## 709 1 1 1
## 710 1 1 1
## 711 0 1 1
## 712 0 1 1
## 713 1 1 1
## 714 0 1 1
## 715 1 1 1
## 716 1 0 1
## 717 0 1 1
## 718 1 0 1
## 719 1 1 1
## 720 0 0 1
## 721 0 0 1
## 722 0 1 1
## 723 1 1 1
## 724 1 0 1
## 725 0 1 1
## 726 1 1 1
## 727 1 0 0
## 728 1 1 1
## 729 0 1 1
## 730 1 1 1
## 731 1 1 1
## 732 1 1 1
## 733 1 1 1
## 734 1 1 1
## 735 0 1 1
## 736 1 1 0
## 737 1 1 1
## 738 1 1 1
## 739 1 1 1
## 740 0 1 1
## 741 0 1 1
## 742 1 1 1
## 743 1 1 1
## 744 1 1 1
## 745 1 1 1
## 746 0 1 1
## 747 1 0 1
## 748 1 0 0
## 749 1 0 1
## 750 1 1 1
## 751 0 0 1
## 752 1 0 1
## 753 0 1 1
## 754 0 1 1
## 755 1 1 1
## 756 1 1 1
## 757 1 1 1
## 758 1 1 1
## 759 1 1 1
## 760 1 1 1
## 761 1 1 1
## 762 1 1 1
## 763 1 1 1
## 764 1 1 1
## 765 0 1 1
## 766 1 1 1
## 767 0 0 1
## 768 1 1 1
## 769 1 1 1
## 770 1 1 1
## 771 1 1 1
## 772 1 1 1
## 773 1 1 1
## 774 1 0 1
## 775 1 0 1
## 776 0 1 1
## 777 1 1 1
## 778 1 1 1
## 779 1 1 1
## 780 0 1 1
## 781 1 1 1
## 782 0 1 1
## 783 0 0 0
## 784 1 1 1
## 785 1 1 1
## 786 1 1 1
## 787 0 0 1
## 788 1 0 1
## 789 1 1 1
## 790 1 1 1
## 791 1 0 1
## 792 1 1 1
## 793 1 1 1
## 794 1 1 1
## 795 1 1 1
## 796 0 1 1
## 797 1 1 1
## 798 1 1 1
## 799 0 1 1
## 800 1 0 1
## 801 1 0 1
## 802 1 1 1
## 803 0 1 1
## 804 1 1 1
## 805 1 1 1
## 806 1 1 1
## 807 1 1 1
## 808 0 1 1
## 809 0 1 1
## 810 1 1 1
## 811 1 0 1
## 812 1 1 1
## 813 1 1 1
## 814 1 1 1
## 815 1 1 1
## 816 0 0 1
## 817 1 1 1
## 818 0 1 1
## 819 1 1 1
## 820 1 1 1
## 821 1 1 1
## 822 1 0 1
## 823 1 1 1
## 824 0 0 1
## 825 1 0 1
## 826 0 1 1
## 827 1 0 1
## 828 1 1 1
## 829 1 1 1
## 830 1 0 1
## 831 0 0 1
## 832 0 1 1
## 833 0 1 1
## 834 1 1 1
## 835 0 1 1
## 836 0 1 1
## 837 1 1 1
## 838 1 1 1
## 839 1 1 1
## 840 0 1 1
## 841 1 1 1
## 842 1 1 1
## 843 0 1 1
## 844 1 0 1
## 845 1 1 1
## 846 1 1 1
## 847 1 1 1
## 848 1 1 1
## 849 1 1 1
## 850 1 1 1
## 851 1 1 1
## 852 1 1 1
## 853 0 0 1
## 854 1 1 1
## 855 1 1 1
## 856 1 1 1
## 857 0 1 1
## 858 1 1 1
## 859 1 1 1
## 860 1 1 1
## 861 1 0 1
## 862 0 1 1
## 863 1 1 1
## 864 1 0 1
## 865 1 0 0
## 866 1 1 1
## 867 1 1 1
## 868 1 1 1
## 869 0 1 1
## 870 1 1 1
## 871 0 0 1
## 872 1 1 1
## 873 1 0 1
## 874 0 0 1
## 875 1 1 1
## 876 0 0 1
## 877 0 0 1
## 878 1 1 1
## 879 1 1 1
## 880 1 1 1
## 881 1 1 1
## 882 1 0 1
## 883 0 1 1
## 884 1 1 1
## 885 1 0 1
## 886 1 0 1
## 887 1 1 1
## 888 1 1 1
## 889 1 1 1
## 890 1 1 1
## 891 1 1 1
## 892 1 0 1
## 893 0 1 1
## 894 0 1 1
## 895 0 1 1
## 896 1 1 1
## 897 0 1 1
## 898 0 1 1
## 899 1 0 1
## 900 0 1 1
## 901 1 1 1
## 902 0 1 1
## 903 0 0 1
## 904 1 1 1
## 905 1 1 0
## 906 1 1 1
## 907 1 1 1
## 908 1 0 1
## 909 1 1 1
## 910 1 1 1
## 911 1 0 1
## 912 1 1 1
## 913 0 0 1
## 914 0 1 1
## 915 1 1 1
## 916 0 0 0
## 917 1 0 1
## 918 1 0 0
## 919 1 1 1
## 920 0 0 1
## 921 0 1 1
## 922 1 1 1
## 923 0 1 1
## 924 0 1 1
## 925 1 1 1
## 926 1 1 1
## 927 0 0 1
## 928 0 0 1
## 929 1 1 1
## 930 1 0 1
## 931 0 0 1
## 932 1 0 1
## 933 1 1 1
## 934 1 1 1
## 935 1 1 1
## 936 0 1 1
## 937 0 0 1
## 938 1 0 1
## 939 1 1 1
## 940 1 0 1
## 941 1 1 1
## 942 1 1 1
## 943 1 1 1
## 944 1 1 1
## 945 0 1 1
## 946 1 1 1
## 947 1 1 1
## 948 0 0 1
## 949 0 0 1
## 950 1 1 1
## 951 1 1 1
## 952 0 1 1
## 953 0 1 1
## 954 0 1 1
## 955 1 1 1
## 956 1 1 1
## 957 1 1 1
## 958 1 1 1
## 959 0 1 1
## 960 1 1 1
## 961 1 1 1
## 962 1 1 1
## 963 1 1 1
## 964 1 1 1
## 965 1 1 1
## 966 1 1 1
## 967 1 1 1
## 968 1 1 1
## 969 1 1 1
## 970 1 1 1
## 971 1 1 1
## 972 1 1 1
## 973 1 1 1
## 974 0 0 1
## 975 0 0 1
## 976 0 0 1
## 977 1 1 1
## 978 1 1 1
## 979 1 0 0
## 980 0 1 1
## 981 1 1 1
## 982 1 1 1
## 983 1 1 1
## 984 1 1 1
## 985 1 0 1
## 986 0 1 1
## 987 0 1 1
## 988 0 1 1
## 989 1 0 1
## 990 1 1 1
## 991 1 1 1
## 992 1 1 1
## 993 1 1 1
## 994 1 1 1
## 995 1 1 1
## 996 0 0 1
## 997 1 1 1
## 998 1 1 1
## 999 1 1 1
## 1000 1 1 1
## 1001 0 1 1
## 1002 1 0 1
## 1003 1 1 1
## 1004 1 0 1
## 1005 1 1 1
## 1006 1 1 1
## 1007 0 0 1
## 1008 1 0 1
## 1009 1 0 1
## 1010 1 0 1
## 1011 1 1 1
## 1012 0 1 1
## 1013 1 0 1
## 1014 1 1 1
## 1015 0 1 1
## 1016 1 1 1
## 1017 1 1 1
## 1018 1 1 1
## 1019 1 1 1
## 1020 1 1 1
## 1021 0 1 1
## 1022 1 0 1
## 1023 1 1 1
## 1024 0 1 1
## 1025 0 1 1
## 1026 0 0 1
## 1027 0 1 1
## 1028 1 1 1
## 1029 1 1 1
## 1030 1 1 1
## 1031 1 1 1
## 1032 1 1 1
## 1033 1 1 1
## 1034 1 0 1
## 1035 1 1 1
## 1036 1 0 1
## 1037 0 1 1
## 1038 1 1 1
## 1039 1 1 1
## 1040 1 1 1
## 1041 1 1 1
## 1042 0 0 1
## 1043 0 0 1
## 1044 1 1 1
## 1045 1 0 1
## 1046 1 0 1
## 1047 1 1 1
## 1048 0 0 1
## 1049 0 1 1
## 1050 0 0 1
## 1051 0 0 1
## 1052 0 1 1
## 1053 1 1 1
## 1054 1 1 1
## 1055 1 0 1
## 1056 1 0 1
## 1057 1 1 1
## 1058 0 1 1
## 1059 1 0 1
## 1060 0 1 0
## 1061 1 1 1
## 1062 1 1 1
## 1063 1 1 1
## 1064 1 1 1
## 1065 1 0 1
## 1066 1 1 1
## 1067 0 1 1
## 1068 0 1 1
## 1069 1 1 1
## 1070 1 1 1
## 1071 1 1 1
## 1072 0 1 1
## 1073 0 1 1
## 1074 0 1 1
## 1075 1 1 1
## 1076 1 1 1
## 1077 1 0 1
## 1078 1 1 1
## 1079 0 0 1
## 1080 1 1 1
## 1081 0 0 1
## 1082 1 1 1
## 1083 1 0 1
## 1084 0 0 1
## 1085 1 1 1
## 1086 1 1 1
## 1087 1 1 1
## 1088 0 1 1
## 1089 1 1 1
## 1090 0 1 1
## 1091 1 1 1
## 1092 0 0 1
## 1093 1 1 1
## 1094 1 1 1
## 1095 1 1 1
## 1096 0 1 1
## 1097 1 1 1
## 1098 1 0 1
## 1099 1 0 1
## 1100 1 0 1
## 1101 1 1 1
## 1102 0 1 1
## 1103 1 1 1
## 1104 1 1 1
## 1105 0 0 0
## 1106 0 1 1
## 1107 0 1 1
## 1108 0 1 1
## 1109 0 1 1
## 1110 0 1 1
## 1111 0 1 1
## 1112 1 0 1
## 1113 1 0 1
## 1114 1 0 1
## 1115 1 1 1
## 1116 1 1 1
## 1117 1 1 1
## 1118 1 1 1
## 1119 0 0 1
## 1120 0 0 1
## 1121 0 1 1
## 1122 1 1 1
## 1123 1 1 1
## 1124 1 1 1
## 1125 1 1 1
## 1126 1 1 1
## 1127 1 1 1
## 1128 0 0 1
## 1129 1 0 1
## 1130 0 0 1
## 1131 0 1 1
## 1132 0 1 1
## 1133 1 1 1
## 1134 1 0 1
## 1135 1 1 1
## 1136 1 1 1
## 1137 1 0 1
## 1138 1 0 1
## 1139 1 0 1
## 1140 1 0 1
## 1141 1 1 1
## 1142 1 1 1
## 1143 1 1 1
## 1144 1 1 1
## 1145 0 1 1
## 1146 1 1 1
## 1147 1 0 1
## 1148 1 1 1
## 1149 1 1 1
## 1150 1 1 1
## 1151 1 1 1
## 1152 1 1 1
## 1153 1 1 1
## 1154 1 0 1
## 1155 1 0 1
## 1156 1 1 1
## 1157 1 0 1
## 1158 1 1 1
## 1159 1 0 1
## 1160 1 1 1
## 1161 1 0 1
## 1162 1 0 1
## 1163 1 1 1
## 1164 1 0 1
## 1165 1 1 1
## 1166 0 0 1
## 1167 0 0 1
## 1168 1 0 1
## 1169 1 1 1
## 1170 1 1 1
## 1171 1 0 1
## 1172 1 0 0
## 1173 1 1 1
## 1174 1 1 1
## 1175 1 1 1
## 1176 0 0 1
## 1177 0 1 1
## 1178 1 1 1
## 1179 1 1 1
## 1180 1 0 1
## 1181 0 1 1
## 1182 1 1 1
## 1183 0 1 1
## 1184 1 0 1
## 1185 1 1 1
## 1186 1 0 1
## 1187 0 1 1
## 1188 0 1 1
## 1189 1 1 1
## 1190 0 1 1
## 1191 0 0 1
## 1192 1 0 1
## 1193 1 0 1
## 1194 0 1 1
## 1195 1 0 1
## 1196 1 0 1
## 1197 1 1 1
## 1198 1 1 1
## 1199 1 1 1
## 1200 0 0 1
## 1201 1 0 1
## 1202 0 0 1
## 1203 1 0 1
## 1204 0 1 1
## 1205 1 0 1
## 1206 1 1 1
## 1207 0 1 1
## 1208 1 1 1
## 1209 1 1 1
## 1210 1 1 1
## 1211 1 1 1
## 1212 1 1 1
## 1213 1 1 1
## 1214 0 1 1
## 1215 1 1 1
## 1216 0 1 1
## 1217 1 0 1
## 1218 1 1 1
## 1219 1 1 1
## 1220 1 1 1
## 1221 0 1 1
## 1222 0 0 1
## 1223 1 1 1
## 1224 1 0 1
## 1225 1 1 1
## 1226 0 1 1
## 1227 0 1 1
## 1228 1 1 1
## 1229 0 1 1
## 1230 0 1 1
## 1231 0 1 1
## 1232 0 1 1
## 1233 0 1 1
## 1234 0 1 1
## 1235 0 1 1
## 1236 1 1 1
## 1237 1 1 1
## 1238 1 1 1
## 1239 1 1 1
## 1240 0 1 1
## 1241 0 1 1
## 1242 1 1 1
## 1243 1 1 1
## 1244 0 1 1
## 1245 1 1 1
## 1246 1 1 1
## 1247 0 1 1
## 1248 1 1 1
## 1249 0 1 1
## 1250 1 1 1
## 1251 1 1 1
## 1252 1 0 1
## 1253 1 0 1
## 1254 1 1 1
## 1255 1 0 1
## 1256 1 1 1
## 1257 1 0 1
## 1258 1 1 1
## 1259 1 0 1
## 1260 1 0 1
## 1261 0 1 1
## 1262 0 0 1
## 1263 1 1 1
## 1264 1 1 1
## 1265 0 1 1
## 1266 1 0 1
## 1267 1 1 1
## 1268 1 1 1
## 1269 0 1 1
## 1270 0 1 1
## 1271 1 1 1
## 1272 1 1 1
## 1273 1 1 1
## 1274 0 1 1
## 1275 1 1 1
## 1276 1 0 1
## 1277 0 0 0
## 1278 1 0 1
## 1279 1 1 1
## 1280 1 1 1
## 1281 0 1 1
## 1282 0 0 1
## 1283 1 1 1
## 1284 1 1 1
## 1285 1 1 1
## 1286 0 1 1
## 1287 1 0 1
## 1288 1 1 1
## 1289 0 0 1
## 1290 1 1 1
## 1291 1 0 1
## 1292 1 1 1
## 1293 1 1 1
## 1294 1 0 1
## 1295 1 1 1
## 1296 1 1 1
## 1297 0 0 0
## 1298 0 1 1
## 1299 1 0 1
## 1300 0 1 1
## 1301 0 1 1
## 1302 0 1 1
## 1303 0 1 1
## 1304 1 0 1
## 1305 1 1 1
## 1306 1 0 1
## 1307 1 1 1
## 1308 1 0 1
## 1309 1 0 1
## 1310 0 1 1
## 1311 0 1 1
## 1312 0 1 1
## 1313 1 1 1
## 1314 1 0 1
## 1315 1 0 1
## 1316 1 1 1
## 1317 1 1 1
## 1318 0 0 1
## 1319 1 1 1
## 1320 1 0 1
## 1321 1 1 1
## 1322 1 0 1
## 1323 1 1 1
## 1324 1 1 1
## 1325 1 1 1
## 1326 0 1 1
## 1327 0 1 1
## 1328 0 1 1
## 1329 0 0 1
## 1330 1 1 1
## 1331 0 1 1
## 1332 1 0 1
## 1333 0 0 1
## 1334 1 1 1
## 1335 1 1 1
## 1336 1 1 1
## 1337 1 0 1
## 1338 1 0 1
## 1339 0 0 1
## 1340 1 1 1
## 1341 1 1 1
## 1342 0 0 1
## 1343 1 0 1
## 1344 0 0 1
## 1345 1 0 1
## 1346 0 1 1
## 1347 0 1 1
## 1348 1 1 1
## 1349 1 0 1
## 1350 1 1 1
## 1351 1 0 1
## 1352 0 1 1
## 1353 1 0 1
## 1354 1 0 1
## 1355 1 0 1
## 1356 1 1 0
## 1357 1 0 1
## 1358 1 1 1
## 1359 0 0 1
## 1360 1 1 1
## 1361 0 1 1
## 1362 1 0 1
## 1363 1 0 1
## 1364 1 1 1
## 1365 1 0 1
## 1366 0 1 1
## 1367 1 1 1
## 1368 1 1 1
## 1369 1 0 1
## 1370 1 0 1
## 1371 1 1 1
## 1372 0 0 1
## 1373 1 1 1
## 1374 1 1 1
## 1375 1 0 1
## 1376 0 1 1
## 1377 0 0 1
## 1378 1 1 1
## 1379 0 1 1
## 1380 0 1 1
## 1381 0 1 1
## 1382 0 1 1
## 1383 0 1 1
## 1384 1 1 1
## 1385 1 1 1
## 1386 1 0 1
## 1387 0 1 1
## 1388 1 1 1
## 1389 1 1 1
## 1390 1 1 1
## 1391 1 1 1
## 1392 0 1 1
## 1393 1 1 1
## 1394 1 0 1
## 1395 1 1 1
## 1396 0 1 1
## 1397 1 1 1
## 1398 1 1 1
## 1399 1 1 1
## 1400 0 0 1
## 1401 1 1 1
## 1402 1 1 1
## 1403 1 1 1
## 1404 1 1 1
## 1405 1 0 1
## 1406 1 1 1
## 1407 1 0 1
## 1408 1 1 1
## 1409 1 1 1
## 1410 1 0 1
## 1411 0 0 0
## 1412 0 0 1
## 1413 0 0 1
## 1414 1 0 1
## 1415 0 1 1
## 1416 1 1 1
## 1417 0 0 1
## 1418 1 0 1
## 1419 1 1 1
## 1420 1 0 1
## 1421 0 1 1
## 1422 1 1 1
## 1423 1 1 1
## 1424 1 0 1
## 1425 1 1 1
## 1426 1 1 1
## 1427 1 0 1
## 1428 1 1 1
## 1429 0 1 1
## 1430 1 1 1
## 1431 1 1 1
## 1432 1 0 1
## 1433 0 0 0
## 1434 1 1 1
## 1435 1 0 1
## 1436 1 1 1
## 1437 1 0 1
## 1438 1 1 1
## 1439 1 1 1
## 1440 1 0 1
## 1441 1 1 1
## 1442 1 0 1
## 1443 1 0 1
## 1444 1 1 1
## 1445 1 0 1
## 1446 1 0 1
## 1447 0 0 1
## 1448 1 0 1
## 1449 1 1 1
## 1450 1 1 1
## 1451 1 1 1
## 1452 1 1 1
## 1453 1 0 1
## 1454 1 1 1
## 1455 1 0 1
## 1456 1 1 1
## 1457 0 1 1
## 1458 1 1 1
## 1459 1 1 1
## 1460 1 1 1
## 1461 0 0 1
## 1462 1 1 1
## 1463 1 1 1
## 1464 1 0 1
## 1465 1 0 1
## 1466 1 1 1
## 1467 1 0 1
## 1468 1 1 1
## 1469 1 0 1
## 1470 1 1 1
## 1471 0 1 1
## 1472 1 0 1
## 1473 1 1 1
## 1474 1 0 1
## 1475 0 0 1
## 1476 0 0 1
## 1477 1 0 1
## 1478 1 1 1
## 1479 1 0 1
## 1480 1 0 1
## 1481 1 1 1
## 1482 0 0 0
## 1483 1 1 1
## 1484 1 1 1
## 1485 1 0 1
## 1486 1 0 1
## 1487 0 1 1
## 1488 1 0 1
## 1489 1 1 1
## 1490 1 0 1
## 1491 1 0 1
## 1492 1 0 1
## 1493 0 1 1
## 1494 0 1 1
## 1495 1 1 1
## 1496 0 0 1
## 1497 1 1 1
## 1498 1 1 1
## 1499 1 1 1
## 1500 1 1 1
## 1501 1 0 1
## 1502 1 1 1
## 1503 1 1 1
## 1504 0 0 1
## 1505 1 1 1
## 1506 0 1 1
## 1507 1 1 1
## 1508 1 0 1
## 1509 1 1 1
## 1510 0 1 1
## 1511 0 1 0
## 1512 0 0 1
## 1513 0 0 1
## 1514 0 1 1
## 1515 0 1 1
## 1516 1 1 1
## 1517 1 1 1
## 1518 1 1 1
## 1519 0 1 1
## 1520 1 1 1
## 1521 0 0 1
## 1522 0 1 1
## 1523 0 1 1
## 1524 1 1 1
## 1525 1 0 1
## 1526 1 0 1
## 1527 1 1 1
## 1528 0 1 1
## 1529 0 0 1
## 1530 0 1 1
## 1531 1 1 1
## 1532 0 0 1
## 1533 1 0 1
## 1534 0 1 1
## 1535 1 1 1
## 1536 0 1 1
## 1537 1 1 1
## 1538 1 0 1
## host_verifications
## 1 'email','phone'
## 2 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 3 'email','phone'
## 4 'email','phone','offline_government_id','selfie','government_id','identity_manual'
## 5 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 6 'email','phone','reviews'
## 7 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 8 'email','phone','reviews','jumio'
## 9 'email','phone','facebook','reviews','jumio','government_id'
## 10 'email','phone','reviews','work_email'
## 11 'email','phone','jumio','offline_government_id','government_id'
## 12 'phone','offline_government_id','selfie','government_id','identity_manual'
## 13 'email','phone','facebook','reviews','jumio','selfie','government_id'
## 14 'email','phone'
## 15 'email','phone','reviews','jumio','offline_government_id','government_id'
## 16 'phone','reviews','offline_government_id','government_id'
## 17 'email','phone'
## 18 'email','phone','google','reviews','jumio','government_id','work_email'
## 19 'email','phone','reviews','jumio'
## 20 'email','phone','reviews','jumio'
## 21 'email','phone','reviews','jumio','offline_government_id','government_id'
## 22 'email','phone','facebook','reviews','jumio','offline_government_id','government_id'
## 23 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 24 'phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 25 'email','phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 26 'email','phone','reviews','jumio','government_id'
## 27 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 28 'email','phone','google','reviews','jumio','government_id','work_email'
## 29 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 30 'email','phone','reviews','jumio'
## 31 'email','phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 32 'email','phone','offline_government_id','selfie','government_id','identity_manual'
## 33 'email','phone','offline_government_id','selfie','government_id','identity_manual'
## 34 'email','phone','reviews','weibo','jumio','offline_government_id','selfie','government_id','identity_manual'
## 35 'email','phone'
## 36 'email','phone','reviews','jumio'
## 37 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 38 'email','phone','offline_government_id','selfie','government_id'
## 39 'email','phone','reviews','jumio','offline_government_id'
## 40 'email','phone'
## 41 'email','phone','reviews','weibo','jumio','offline_government_id','selfie','government_id','identity_manual'
## 42 'email','phone','reviews','jumio'
## 43 'email','phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 44 'email','phone','facebook','reviews','jumio','selfie','government_id'
## 45 'email','phone','reviews','offline_government_id','selfie','government_id'
## 46 'email','phone','offline_government_id','selfie','government_id','identity_manual'
## 47 'email','phone','reviews','offline_government_id','selfie','government_id'
## 48 'email','phone','reviews','weibo','jumio','offline_government_id','selfie','government_id','identity_manual'
## 49 'email','phone','offline_government_id'
## 50 'email','phone'
## 51 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 52 'email','phone'
## 53 'email','phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 54 'email','phone','facebook','reviews','jumio','selfie','government_id'
## 55 'email','phone','reviews','jumio'
## 56 'email','phone','offline_government_id'
## 57 'email','phone','facebook','reviews','jumio','selfie','government_id'
## 58 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 59 'email','phone','reviews','jumio','offline_government_id','selfie','government_id'
## 60 'email','phone','reviews','jumio','offline_government_id'
## 61 'email','phone','offline_government_id','government_id'
## 62 'email','phone','offline_government_id'
## 63 'email','phone','facebook','reviews','jumio','selfie','government_id'
## 64 'email','phone','facebook','reviews','jumio','government_id'
## 65 'email','phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 66 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 67 'email','phone','reviews','work_email'
## 68 'email','phone','reviews','jumio','offline_government_id','government_id'
## 69 'email','phone','jumio','government_id'
## 70 'phone','reviews'
## 71 'email','phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 72 'email','phone','offline_government_id','selfie','government_id','identity_manual'
## 73 'email','phone','facebook','reviews','jumio','offline_government_id','selfie','government_id','identity_manual','work_email'
## 74 'email','phone','offline_government_id'
## 75 'email','phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 76 'email','phone','reviews','offline_government_id','selfie','government_id'
## 77 'email','phone','offline_government_id','selfie','government_id','identity_manual'
## 78 'email','phone','jumio','government_id'
## 79 'email','phone','reviews','offline_government_id','government_id','work_email'
## 80 'email','phone','offline_government_id'
## 81 'email','phone','offline_government_id'
## 82 'email','phone','offline_government_id'
## 83 'email','phone','reviews','jumio','government_id'
## 84 'email','phone','reviews'
## 85 'email','phone','work_email'
## 86 'email','phone'
## 87 'email','phone','reviews','offline_government_id','selfie','government_id'
## 88 'email','phone','reviews','offline_government_id','selfie','government_id'
## 89 'email','phone','offline_government_id','selfie','government_id','identity_manual'
## 90 'email','phone','reviews'
## 91 'email','phone','reviews','jumio','government_id'
## 92 'email','phone','facebook','reviews','jumio','offline_government_id','government_id'
## 93 'email','phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 94 'phone','reviews','jumio','offline_government_id','government_id'
## 95 'email','phone','jumio','government_id'
## 96 'email','phone','offline_government_id'
## 97 'email','phone','offline_government_id'
## 98 'email','phone','offline_government_id'
## 99 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 100 'email','phone','reviews','jumio','offline_government_id','government_id'
## 101 'email','phone','jumio','offline_government_id','government_id'
## 102 'email','phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 103 'email','phone','facebook','reviews','jumio','offline_government_id','government_id'
## 104 'email','phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 105 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 106 'email','phone','offline_government_id'
## 107 'email','phone','facebook','reviews','jumio','offline_government_id','selfie','government_id','identity_manual','work_email'
## 108 'email','phone','offline_government_id'
## 109 'email','phone','facebook','reviews','jumio','selfie','government_id'
## 110 'email','phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 111 'email','phone','reviews','jumio'
## 112 'email','phone','reviews'
## 113 'email','phone','reviews','jumio','offline_government_id','selfie','government_id'
## 114 'email','phone','reviews'
## 115 'email','phone','reviews'
## 116 'email','phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 117 'email','phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 118 None
## 119 'email','phone','work_email'
## 120 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 121 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 122 'email','phone','offline_government_id'
## 123 'email','phone','jumio','government_id'
## 124 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 125 'email','phone','reviews','jumio','offline_government_id','selfie','government_id'
## 126 'email','phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 127 'email','phone','reviews','jumio','offline_government_id','selfie','government_id'
## 128 'email','phone','facebook','google','reviews','jumio','offline_government_id','selfie','government_id','identity_manual','work_email'
## 129 'email','phone','jumio','government_id'
## 130 'email','phone','offline_government_id'
## 131 'email','phone','facebook','reviews','jumio','selfie','government_id'
## 132 'email','phone','facebook','reviews','jumio','selfie','government_id'
## 133 'email','phone','facebook','reviews','jumio','government_id'
## 134 'email','phone','reviews','manual_offline','jumio','offline_government_id','government_id'
## 135 'email','phone','offline_government_id','selfie','government_id','identity_manual'
## 136 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 137 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 138 'email','phone','facebook','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 139 'email','phone','reviews','jumio','selfie','government_id'
## 140 'email','phone','reviews','jumio','offline_government_id','selfie','government_id'
## 141 'email','phone','reviews','jumio'
## 142 'email','phone','reviews','jumio','government_id'
## 143 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 144 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 145 'email','phone'
## 146 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 147 'email','phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 148 'email','phone','reviews','jumio','offline_government_id','government_id'
## 149 'email','phone','reviews','work_email'
## 150 'email','phone','facebook','offline_government_id','government_id'
## 151 'email','phone','work_email'
## 152 'email','phone','reviews','jumio','offline_government_id','government_id'
## 153 'email','phone','facebook'
## 154 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 155 'email','phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 156 'email','phone'
## 157 'email','phone','reviews','jumio'
## 158 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 159 'email','phone','facebook','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 160 'email','phone','facebook','reviews','jumio','government_id'
## 161 'email','phone','reviews','work_email'
## 162 'email','phone','reviews','jumio','offline_government_id'
## 163 'email','phone','jumio','government_id'
## 164 'phone','reviews'
## 165 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 166 'email','phone','reviews','jumio'
## 167 'email','phone','reviews','jumio'
## 168 'email','phone','google','offline_government_id','selfie','government_id','identity_manual'
## 169 'email','phone','facebook','reviews','jumio','government_id'
## 170 'email','phone','reviews','jumio','government_id'
## 171 'email','phone','reviews','jumio','government_id'
## 172 'email','phone','reviews'
## 173 'email','phone'
## 174 'email','phone'
## 175 'email','phone','reviews','jumio'
## 176 'email','phone','reviews','jumio'
## 177 'email','phone','reviews','jumio'
## 178 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 179 'email','phone','reviews','offline_government_id','selfie','government_id'
## 180 'email','phone','reviews','jumio','offline_government_id','government_id','work_email'
## 181 'email','phone','reviews','jumio'
## 182 'email','phone','reviews','jumio','government_id'
## 183 'phone','reviews','jumio','offline_government_id','government_id'
## 184 'email','phone','reviews','offline_government_id','selfie','government_id'
## 185 'email','phone','facebook','reviews','jumio','offline_government_id','selfie','government_id','identity_manual','work_email'
## 186 'email','phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 187 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 188 'email','phone','facebook','reviews','jumio','government_id'
## 189 'email','phone','google','reviews','jumio','government_id'
## 190 'email','phone','reviews','jumio','offline_government_id','government_id'
## 191 'email','phone','reviews','jumio'
## 192 'email','phone','reviews','jumio','offline_government_id','government_id'
## 193 'email','phone','work_email'
## 194 'email','phone'
## 195 'email','phone','offline_government_id','selfie','government_id','identity_manual'
## 196 'email','phone'
## 197 'email','phone','facebook','reviews','jumio','government_id'
## 198 'email','phone','reviews','jumio','government_id'
## 199 'email','phone','reviews','offline_government_id','selfie','government_id'
## 200 'phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 201 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','work_email'
## 202 'email','phone','reviews','offline_government_id','selfie','government_id'
## 203 'email','phone','offline_government_id','selfie','government_id','identity_manual'
## 204 'email','phone','work_email'
## 205 'email','phone','google','reviews','jumio','government_id'
## 206 'email','phone','reviews','jumio'
## 207 'email','phone','reviews','jumio'
## 208 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 209 'phone','offline_government_id','selfie','government_id','identity_manual'
## 210 'email','phone','reviews'
## 211 'email','phone','reviews','jumio'
## 212 'email','phone','reviews','work_email'
## 213 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 214 'email','phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 215 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 216 'email','phone','google','reviews','jumio','government_id'
## 217 'phone','jumio','offline_government_id'
## 218 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 219 'email','phone','reviews','jumio','offline_government_id','government_id'
## 220 'email','phone','google','reviews'
## 221 'email','phone'
## 222 'email','phone'
## 223 'email','phone','reviews','jumio'
## 224 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','work_email'
## 225 'email','phone','facebook','reviews','jumio','offline_government_id','selfie','government_id','identity_manual','work_email'
## 226 'email','phone','reviews','jumio','government_id'
## 227 'email','phone'
## 228 'email','phone','manual_online','reviews','manual_offline','offline_government_id','selfie','government_id','identity_manual'
## 229 'email','phone'
## 230 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 231 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 232 'email','phone'
## 233 'email','phone','reviews','offline_government_id','selfie','government_id'
## 234 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','work_email'
## 235 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','work_email'
## 236 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 237 'email','phone'
## 238 'email','phone','offline_government_id','government_id','work_email'
## 239 'email','phone','facebook','reviews','jumio'
## 240 None
## 241 'email','phone','google','reviews','jumio','government_id'
## 242 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 243 'email','phone','reviews','weibo','jumio','government_id'
## 244 'email','phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 245 'email','phone','reviews'
## 246 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 247 'email','phone','work_email'
## 248 'email','phone'
## 249 'email','phone','reviews','jumio','offline_government_id','government_id'
## 250 'email','phone','reviews'
## 251 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 252 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual','work_email'
## 253 'email','phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 254 'email','phone','reviews'
## 255 'phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 256 'email','phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 257 'email','phone','reviews'
## 258 'phone','reviews','jumio','offline_government_id','government_id'
## 259 'email','phone','work_email'
## 260 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 261 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 262 'email','phone','work_email'
## 263 'email','phone','reviews','manual_offline','work_email'
## 264 'email','phone','google','reviews','manual_offline','jumio','offline_government_id','government_id'
## 265 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 266 'email','phone','reviews','jumio'
## 267 'email','phone','reviews','jumio','offline_government_id','government_id'
## 268 'email','phone','reviews','jumio','offline_government_id','government_id'
## 269 'email','phone','reviews','jumio','offline_government_id','government_id'
## 270 'email','phone','reviews','jumio'
## 271 'email','phone','jumio','offline_government_id','government_id'
## 272 'email','phone','google','jumio','offline_government_id','selfie','government_id','identity_manual','work_email'
## 273 'email','phone','offline_government_id','government_id','work_email'
## 274 'email','phone','reviews','work_email'
## 275 'email','phone','facebook','reviews','offline_government_id','selfie','government_id','identity_manual'
## 276 'email','phone','reviews','jumio'
## 277 'email','phone','facebook','reviews','offline_government_id','selfie','government_id','identity_manual'
## 278 'email','phone','reviews','jumio'
## 279 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 280 'email','phone','reviews','selfie','work_email'
## 281 'email','phone','jumio','government_id'
## 282 'phone','reviews','jumio','offline_government_id','government_id'
## 283 'email','phone','reviews'
## 284 'email','phone','reviews','jumio','offline_government_id','government_id'
## 285 'email','phone','work_email'
## 286 'email','phone','google','reviews','jumio','government_id'
## 287 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 288 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 289 'email','phone'
## 290 'email','phone'
## 291 'phone','reviews'
## 292 'email','phone','reviews','jumio'
## 293 'email','phone','reviews'
## 294 'email','phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 295 'email','phone','reviews','jumio'
## 296 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 297 'email','phone','reviews','work_email'
## 298 'email','phone','reviews','jumio'
## 299 'email','phone','work_email'
## 300 'email','phone','facebook','reviews','jumio','offline_government_id','selfie','government_id','identity_manual','work_email'
## 301 'email','phone','work_email'
## 302 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual','work_email'
## 303 'email','phone','facebook','reviews','offline_government_id','selfie','government_id'
## 304 'email','phone','offline_government_id','government_id','work_email'
## 305 'email','phone','reviews','jumio'
## 306 'email','phone','reviews','jumio'
## 307 'email','phone','reviews','work_email'
## 308 'email','phone','reviews'
## 309 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual','work_email'
## 310 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 311 'email','phone','reviews','offline_government_id','selfie','government_id'
## 312 'email','phone','manual_online','manual_offline'
## 313 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 314 'email','phone'
## 315 'email','phone','reviews','jumio'
## 316 'phone','facebook'
## 317 'email','phone','reviews'
## 318 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 319 'email','phone','reviews'
## 320 'email','phone','google','jumio','offline_government_id','selfie','government_id','identity_manual','work_email'
## 321 'email','phone','offline_government_id','government_id','work_email'
## 322 'email','phone','reviews','offline_government_id'
## 323 'email','phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 324 'email','phone','facebook','reviews','jumio','offline_government_id','government_id'
## 325 'email','phone','reviews','jumio','government_id'
## 326 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 327 'email','phone'
## 328 'email','phone','google','jumio','offline_government_id','selfie','government_id','identity_manual','work_email'
## 329 'phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 330 'email','phone','offline_government_id','selfie','government_id','identity_manual'
## 331 'email','phone','reviews','manual_offline','work_email'
## 332 'email','phone','offline_government_id','government_id','work_email'
## 333 'email','phone','reviews','jumio'
## 334 'email','phone','manual_online','reviews','manual_offline'
## 335 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 336 'email','phone'
## 337 'email','phone'
## 338 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 339 'email','phone','reviews','jumio','offline_government_id','government_id'
## 340 'email','phone','facebook','jumio','offline_government_id','government_id'
## 341 'email','phone'
## 342 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 343 'email','phone','reviews','jumio'
## 344 'email','phone','reviews'
## 345 'email','phone','reviews'
## 346 'email','phone','reviews'
## 347 'email','phone'
## 348 'email','phone','work_email'
## 349 'email','phone','work_email'
## 350 'phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 351 'phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 352 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 353 'email','phone','facebook','reviews','offline_government_id','selfie','government_id'
## 354 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 355 'email','phone','offline_government_id','government_id','work_email'
## 356 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 357 'email','phone','reviews','jumio'
## 358 'email','phone','reviews','work_email'
## 359 'email','phone','google','reviews','jumio','selfie','government_id','identity_manual'
## 360 'email','phone','google'
## 361 'email','phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 362 'email','phone','reviews','jumio'
## 363 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 364 'email','phone','jumio','government_id'
## 365 'email','phone','reviews'
## 366 'email','phone'
## 367 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 368 'email','phone','jumio','government_id'
## 369 'email','phone','reviews','jumio'
## 370 'email','phone','reviews','jumio'
## 371 'phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 372 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 373 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 374 'email','phone','offline_government_id','government_id','work_email'
## 375 'email','phone','reviews','offline_government_id','selfie','government_id'
## 376 'email','phone','facebook','reviews','offline_government_id','government_id'
## 377 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 378 'email','phone','reviews','work_email'
## 379 'email','phone','reviews'
## 380 'email','phone'
## 381 'email','phone','reviews','jumio'
## 382 'email','phone'
## 383 'email','phone'
## 384 'email','phone','jumio','offline_government_id','government_id'
## 385 'phone','reviews','jumio','offline_government_id','government_id'
## 386 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 387 None
## 388 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 389 'email','phone','reviews','jumio','offline_government_id'
## 390 'email','phone','facebook','reviews','offline_government_id','selfie','government_id'
## 391 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 392 'email','phone','offline_government_id','government_id','work_email'
## 393 'email','phone','reviews'
## 394 'phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 395 'email','phone','reviews'
## 396 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 397 'email','phone','reviews','jumio','government_id'
## 398 'email','phone','reviews','jumio','offline_government_id','government_id','work_email'
## 399 'email','phone','reviews','jumio','offline_government_id','government_id'
## 400 'phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 401 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 402 'email','phone','reviews','work_email'
## 403 'email','phone','reviews'
## 404 'email','phone','google','offline_government_id','selfie','government_id','identity_manual'
## 405 'email','phone'
## 406 'email','phone','reviews','work_email'
## 407 'email','phone','reviews','offline_government_id'
## 408 'email','phone','work_email'
## 409 'email','phone','facebook','reviews','jumio','work_email'
## 410 'email','phone','jumio','offline_government_id','government_id'
## 411 'phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 412 'email','phone','reviews','jumio','offline_government_id','government_id'
## 413 'email','phone','offline_government_id','government_id','work_email'
## 414 'email','phone','offline_government_id','government_id','work_email'
## 415 'email','phone','reviews','jumio'
## 416 'email','phone','reviews','jumio'
## 417 'email','phone','offline_government_id','government_id','work_email'
## 418 'email','phone','reviews','jumio'
## 419 'email','phone','reviews'
## 420 'email','phone','reviews','jumio','government_id'
## 421 'email','phone','reviews','jumio','government_id'
## 422 'email','phone','reviews','jumio'
## 423 'email','phone','offline_government_id','government_id','work_email'
## 424 'email','phone','reviews','jumio'
## 425 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 426 'phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 427 'email','phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 428 'email','phone','reviews','work_email'
## 429 'email','phone','reviews','work_email'
## 430 'email','phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 431 'email','phone','work_email'
## 432 'email','phone','google','reviews','jumio','government_id'
## 433 'email','phone','reviews'
## 434 'email','phone','reviews'
## 435 'phone','facebook'
## 436 'email','phone'
## 437 'email','phone','reviews','jumio','offline_government_id'
## 438 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 439 'email','phone','work_email'
## 440 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 441 'email','phone','reviews','offline_government_id'
## 442 'email','phone','reviews','jumio','government_id'
## 443 'email','phone','reviews','jumio'
## 444 'email','phone','facebook','reviews','offline_government_id','selfie','government_id','identity_manual'
## 445 'email','phone','reviews'
## 446 'email','phone','reviews'
## 447 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 448 'email','phone','reviews','jumio','offline_government_id','work_email'
## 449 'email','phone','reviews'
## 450 'email','phone','reviews'
## 451 'email','phone','facebook','offline_government_id','government_id'
## 452 'phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 453 'email','phone'
## 454 'email','phone'
## 455 'email','phone','reviews','jumio','offline_government_id','government_id'
## 456 'email','phone','reviews'
## 457 'email','phone','offline_government_id','selfie','government_id'
## 458 'phone','offline_government_id','selfie','government_id','identity_manual'
## 459 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 460 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 461 'email','phone','reviews'
## 462 'phone'
## 463 'email','phone','google','reviews','jumio','government_id'
## 464 'email','phone','offline_government_id','selfie','government_id','work_email'
## 465 'email','phone'
## 466 'email','phone','reviews','jumio','offline_government_id','selfie','government_id'
## 467 'email','phone','reviews'
## 468 'email','phone','reviews','jumio','offline_government_id'
## 469 'email','phone','facebook','reviews','offline_government_id','selfie','government_id','identity_manual'
## 470 'email','phone','reviews','jumio','offline_government_id','government_id'
## 471 'email','phone','reviews','offline_government_id'
## 472 'email','phone','reviews','jumio'
## 473 'email','phone','reviews'
## 474 'email','phone','reviews','jumio'
## 475 'email','phone','google','reviews'
## 476 'email','phone','reviews','manual_offline'
## 477 'email','phone','reviews','jumio','offline_government_id'
## 478 'email','phone','reviews','work_email'
## 479 'email','phone','reviews','jumio'
## 480 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','work_email'
## 481 'email','phone','reviews','offline_government_id'
## 482 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 483 'email','phone','work_email'
## 484 'email','phone','reviews','work_email'
## 485 'email','phone'
## 486 'email','phone','reviews'
## 487 'email','phone'
## 488 'email','phone'
## 489 'email','phone','work_email'
## 490 'email','phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 491 'email','phone','work_email'
## 492 'email','phone','reviews','work_email'
## 493 'email','phone'
## 494 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 495 'email','phone','reviews','work_email'
## 496 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 497 'email','phone'
## 498 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 499 'email','phone','google','reviews','jumio','offline_government_id','government_id'
## 500 'email','phone','offline_government_id','government_id','work_email'
## 501 'email','phone','reviews','jumio'
## 502 'email','phone','reviews','jumio'
## 503 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 504 'email','phone','reviews','manual_offline','jumio'
## 505 'email','phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 506 'email','phone','reviews','jumio','offline_government_id','government_id'
## 507 'email','phone','identity_manual'
## 508 'email','phone','reviews'
## 509 'email','phone','reviews'
## 510 'email','phone','reviews','jumio','offline_government_id','work_email'
## 511 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 512 'email','phone','reviews'
## 513 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','work_email'
## 514 'email','phone','offline_government_id','selfie','government_id'
## 515 'email','phone'
## 516 'email','phone','reviews'
## 517 'email','phone'
## 518 'email','phone'
## 519 'email','phone','reviews','jumio','government_id'
## 520 'email','phone','reviews'
## 521 'email','phone','jumio','government_id'
## 522 'email','phone','reviews','work_email'
## 523 'email','phone','work_email'
## 524 'email','phone','work_email'
## 525 'phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 526 'phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 527 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 528 'email','phone'
## 529 'email','phone','reviews','offline_government_id'
## 530 'email','phone','reviews'
## 531 'email','phone','reviews','offline_government_id'
## 532 'email','phone','reviews'
## 533 'email','phone','reviews','offline_government_id'
## 534 'email','phone','reviews'
## 535 'email','phone','reviews','offline_government_id'
## 536 'email','phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 537 'email','phone','reviews','jumio'
## 538 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 539 'email','phone','reviews','jumio','offline_government_id','government_id'
## 540 'email','phone','reviews','jumio','government_id'
## 541 'email','phone','reviews'
## 542 'email','phone','reviews'
## 543 'email','phone','manual_online','reviews','manual_offline'
## 544 'email','phone','google','reviews','jumio','work_email'
## 545 'email','phone','reviews'
## 546 'email','phone','reviews','jumio'
## 547 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 548 'email','phone','facebook','reviews','offline_government_id','government_id'
## 549 'email','phone','reviews','work_email'
## 550 'email','phone','reviews','jumio','offline_government_id','work_email'
## 551 'email','phone','reviews','jumio'
## 552 'email','phone','reviews','jumio'
## 553 'email','phone','reviews','jumio'
## 554 'email','phone','reviews','offline_government_id'
## 555 'email','phone'
## 556 'email','phone'
## 557 'email','phone','reviews','jumio','offline_government_id','government_id'
## 558 'phone'
## 559 'email','phone','jumio','offline_government_id','government_id'
## 560 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 561 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 562 'email','phone','offline_government_id','selfie','government_id','identity_manual'
## 563 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 564 'email','phone','reviews','manual_offline','work_email'
## 565 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 566 'email','phone','reviews','jumio'
## 567 'email','phone','reviews','jumio','offline_government_id','government_id'
## 568 'email','phone','reviews','jumio'
## 569 'email','phone','reviews','jumio','offline_government_id','government_id'
## 570 'email','phone','offline_government_id','government_id','work_email'
## 571 'email','phone','reviews'
## 572 'email','phone','offline_government_id','government_id','work_email'
## 573 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 574 'email','phone','reviews','jumio','offline_government_id'
## 575 'email','phone','reviews','work_email'
## 576 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual','zhima_selfie'
## 577 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 578 'email','phone','reviews'
## 579 'email','phone','reviews'
## 580 'email','phone','facebook','reviews','jumio','offline_government_id','government_id'
## 581 'email','phone','facebook'
## 582 'email','phone','reviews','jumio'
## 583 'email','phone','google','offline_government_id','selfie','government_id','identity_manual'
## 584 'email','phone','offline_government_id','selfie','government_id','identity_manual'
## 585 'email','phone','jumio','offline_government_id'
## 586 'email','phone','work_email'
## 587 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 588 'email','phone','reviews','jumio','offline_government_id','selfie','government_id'
## 589 'email','phone','reviews','jumio','work_email'
## 590 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 591 'email','phone'
## 592 'email','phone','reviews','jumio'
## 593 'email','phone','reviews','jumio'
## 594 'email','phone','reviews','jumio'
## 595 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 596 'email','phone','reviews'
## 597 'email','phone','reviews','jumio'
## 598 'email','phone','reviews','jumio'
## 599 'email','phone','facebook','reviews','offline_government_id','selfie','government_id'
## 600 'email','phone','facebook','reviews','offline_government_id','selfie','government_id'
## 601 'email','phone','reviews','jumio','offline_government_id','government_id'
## 602 'email','phone','identity_manual'
## 603 'email','phone','reviews','jumio','offline_government_id','government_id'
## 604 'email','phone','reviews','manual_offline'
## 605 'email','phone','reviews','jumio','offline_government_id'
## 606 'email','phone','reviews','work_email'
## 607 'email','phone','reviews','jumio'
## 608 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual','work_email'
## 609 'email','phone','reviews','offline_government_id'
## 610 'email','phone','reviews'
## 611 'email','phone','reviews'
## 612 'email','phone','manual_online','manual_offline'
## 613 'email','phone','work_email'
## 614 'email','phone','reviews','jumio'
## 615 'email','phone'
## 616 'email','phone','jumio','offline_government_id','government_id'
## 617 'email','phone','facebook','offline_government_id','government_id'
## 618 None
## 619 'email','phone'
## 620 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 621 'email','phone','work_email'
## 622 'phone','offline_government_id','selfie','government_id','identity_manual'
## 623 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 624 'email','phone','offline_government_id','selfie','government_id','identity_manual'
## 625 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 626 'email','phone','work_email'
## 627 'email','phone','facebook','reviews'
## 628 'email','phone','reviews','weibo','jumio','offline_government_id','selfie','government_id','identity_manual'
## 629 'email','phone','reviews','offline_government_id'
## 630 'email','phone','reviews','jumio'
## 631 'email','phone','reviews','offline_government_id'
## 632 'email','phone','reviews','jumio','government_id','work_email'
## 633 'email','phone','reviews','jumio','government_id','work_email'
## 634 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 635 'email','phone','reviews','jumio','government_id'
## 636 'email','phone','reviews'
## 637 'email','phone','google','reviews'
## 638 'email','phone','reviews','weibo','jumio','government_id'
## 639 'email','phone','reviews','jumio','government_id'
## 640 'email','phone','reviews','jumio','government_id','work_email'
## 641 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual','zhima_selfie'
## 642 'email','phone','reviews','jumio','offline_government_id','work_email'
## 643 'email','phone','reviews','jumio','offline_government_id'
## 644 'phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 645 'email','phone','reviews','work_email'
## 646 'email','phone','reviews','jumio'
## 647 'email','phone','reviews','jumio'
## 648 'email','phone','reviews','jumio','offline_government_id','government_id'
## 649 'email','phone','offline_government_id','selfie','government_id','identity_manual'
## 650 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 651 'email','phone','reviews','jumio'
## 652 'email','phone','reviews','jumio','offline_government_id','government_id'
## 653 'email','phone','jumio','government_id'
## 654 'email','phone','reviews','jumio'
## 655 'email','phone'
## 656 'email','phone','reviews','jumio'
## 657 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 658 'email','phone'
## 659 'email','phone','reviews','jumio'
## 660 'email','phone'
## 661 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 662 'email','phone','reviews','jumio'
## 663 'email','phone'
## 664 'email','phone'
## 665 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 666 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 667 'email','phone','reviews','jumio'
## 668 'email','phone','offline_government_id','selfie','government_id'
## 669 'email','phone','reviews','offline_government_id'
## 670 'email','phone','jumio','offline_government_id','government_id'
## 671 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 672 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 673 'email','phone','reviews','jumio','offline_government_id'
## 674 'email','phone','reviews'
## 675 'email','phone','jumio','offline_government_id','government_id'
## 676 'email','phone'
## 677 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 678 'phone'
## 679 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 680 'email','phone','reviews'
## 681 'email','phone','reviews','jumio'
## 682 'email','phone','reviews'
## 683 'email','phone','reviews','jumio'
## 684 'email','phone','reviews','jumio','offline_government_id'
## 685 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 686 'email','phone','reviews','jumio','government_id'
## 687 'email','phone','offline_government_id','government_id','work_email'
## 688 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 689 'email','phone','reviews','jumio'
## 690 'email','phone','reviews','weibo','jumio','government_id'
## 691 'email','phone','reviews','jumio','government_id'
## 692 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 693 'email','phone','reviews'
## 694 'email','phone','offline_government_id','government_id'
## 695 'email','phone','reviews','weibo','jumio','government_id'
## 696 'email','phone'
## 697 'email','phone','reviews'
## 698 'email','phone','reviews','jumio'
## 699 'email','phone','facebook','reviews','manual_offline','jumio','offline_government_id','government_id','work_email'
## 700 'email','phone','reviews'
## 701 'phone','facebook'
## 702 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual','work_email'
## 703 'email','phone','reviews','jumio','offline_government_id','government_id'
## 704 'email','phone','reviews','jumio','government_id'
## 705 'email','phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 706 'email','phone','reviews','manual_offline'
## 707 'email','phone','reviews','jumio','offline_government_id','work_email'
## 708 'email','phone','reviews','jumio'
## 709 'email','phone','reviews','work_email'
## 710 'email','phone','reviews','jumio'
## 711 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 712 'email','phone','work_email'
## 713 'email','phone','reviews','jumio'
## 714 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 715 'email','phone','reviews','jumio'
## 716 'email','phone','reviews'
## 717 'email','phone'
## 718 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 719 None
## 720 'email','phone'
## 721 'email','phone'
## 722 'email','phone'
## 723 'email','phone','reviews'
## 724 'email','phone','facebook','reviews','jumio','offline_government_id','government_id'
## 725 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 726 'email','phone','reviews','jumio','offline_government_id','government_id'
## 727 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 728 'email','phone','work_email'
## 729 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 730 'phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 731 'phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 732 'phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 733 'email','phone','jumio','offline_government_id','government_id'
## 734 'email','phone','google','reviews'
## 735 'email','phone'
## 736 'email','phone','reviews','jumio','government_id'
## 737 'email','phone','jumio','government_id'
## 738 'email','phone','reviews','jumio','offline_government_id'
## 739 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 740 'email','phone'
## 741 'email','phone'
## 742 'email','phone','jumio','offline_government_id','government_id'
## 743 'email','phone','reviews','work_email'
## 744 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 745 'email','phone','facebook','reviews','manual_offline','jumio','offline_government_id','government_id','work_email'
## 746 'email','phone','offline_government_id','government_id','work_email'
## 747 'email','phone','reviews','jumio','government_id'
## 748 'email','phone','reviews','jumio','government_id','work_email'
## 749 'email','phone','reviews','jumio','government_id','work_email'
## 750 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 751 'phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 752 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 753 'email','phone','reviews','jumio','government_id'
## 754 'email','phone','reviews','jumio','government_id'
## 755 'email','phone','reviews','jumio'
## 756 'email','phone','reviews'
## 757 'email','phone','facebook','reviews','offline_government_id','selfie','government_id'
## 758 'email','phone','reviews','jumio'
## 759 'email','phone','reviews','jumio','government_id','work_email'
## 760 'email','phone','reviews','jumio'
## 761 'email','phone','reviews','jumio'
## 762 'phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 763 'email','phone','reviews'
## 764 'email','phone','reviews','jumio','offline_government_id','government_id'
## 765 'email','phone','reviews','manual_offline'
## 766 'email','phone','reviews','jumio','offline_government_id'
## 767 'email','phone','reviews'
## 768 'email','phone','reviews','offline_government_id'
## 769 'email','phone','reviews','work_email'
## 770 'email','phone','reviews','jumio'
## 771 'email','phone','reviews','work_email'
## 772 'email','phone','reviews','jumio','offline_government_id','work_email'
## 773 'email','phone','reviews','jumio'
## 774 'email','phone','reviews','jumio','government_id'
## 775 'email','phone','reviews','jumio','government_id'
## 776 'email','phone','reviews'
## 777 'email','phone','reviews','offline_government_id'
## 778 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 779 'email','phone','reviews'
## 780 'email','phone','reviews','jumio','offline_government_id','government_id'
## 781 'email','phone','reviews','offline_government_id'
## 782 'email','phone','reviews','jumio'
## 783 'email','phone'
## 784 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 785 'email','phone','reviews','jumio'
## 786 'email','phone','reviews','jumio'
## 787 'email','phone'
## 788 'email','phone','reviews','jumio','government_id'
## 789 'email','phone'
## 790 'email','phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 791 'phone'
## 792 'email','phone','google','reviews'
## 793 'email','phone','jumio','offline_government_id'
## 794 'email','phone','reviews','jumio','offline_government_id','government_id'
## 795 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 796 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 797 'phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 798 'email','phone','reviews','work_email'
## 799 'email','phone'
## 800 'email','phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 801 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 802 'email','phone'
## 803 'email','phone','reviews'
## 804 'email','phone','offline_government_id','selfie','government_id','identity_manual'
## 805 'email','phone','offline_government_id','selfie','government_id','identity_manual'
## 806 'email','phone','facebook','reviews','jumio','offline_government_id','government_id'
## 807 'email','phone','offline_government_id','selfie','government_id','identity_manual'
## 808 'email','phone'
## 809 'email','phone','offline_government_id','selfie','government_id','identity_manual'
## 810 'email','phone','reviews','jumio'
## 811 'email','phone','reviews'
## 812 'phone'
## 813 'phone'
## 814 'email','phone','reviews','manual_offline','work_email'
## 815 'email','phone','facebook','reviews','manual_offline','jumio','offline_government_id','government_id','work_email'
## 816 'email','phone','reviews','jumio','government_id'
## 817 'email','phone','reviews','offline_government_id'
## 818 'email','phone','reviews','manual_offline','jumio','government_id'
## 819 'email','phone','reviews','jumio','offline_government_id','government_id'
## 820 'email','phone','reviews','jumio','government_id','work_email'
## 821 'email','phone','reviews','jumio'
## 822 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual','work_email'
## 823 'email','phone','reviews','weibo','jumio','government_id'
## 824 'phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 825 'email','phone','reviews','work_email'
## 826 'email','phone','reviews','work_email'
## 827 'email','phone','reviews','jumio','government_id'
## 828 'email','phone','reviews'
## 829 'email','phone','facebook','reviews','manual_offline','jumio','offline_government_id','government_id'
## 830 'email','phone','reviews'
## 831 'phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 832 'email','phone','offline_government_id','government_id','work_email'
## 833 'email','phone','reviews','jumio'
## 834 'phone','reviews'
## 835 'email','phone','reviews'
## 836 'email','phone','reviews'
## 837 'email','phone','reviews'
## 838 'email','phone','identity_manual'
## 839 'email','phone','reviews','jumio'
## 840 'email','phone','reviews','manual_offline'
## 841 'email','phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 842 'email','phone','reviews','jumio'
## 843 'phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 844 'email','phone','reviews','jumio','government_id'
## 845 'email','phone','reviews','jumio','offline_government_id'
## 846 'email','phone','reviews','jumio','government_id'
## 847 'email','phone','reviews','jumio'
## 848 'email','phone','reviews','jumio','offline_government_id','government_id'
## 849 'email','phone','google'
## 850 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 851 'email','phone','reviews','jumio','offline_government_id','work_email'
## 852 'email','phone','reviews','work_email'
## 853 'email','phone','google','reviews','jumio','offline_government_id','government_id'
## 854 'email','phone','reviews','jumio','offline_government_id','government_id'
## 855 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 856 'email','phone','reviews','jumio'
## 857 'email','phone','reviews'
## 858 'email','phone','reviews','offline_government_id'
## 859 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 860 'email','phone'
## 861 'email','phone','jumio','selfie','government_id','identity_manual'
## 862 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 863 'email','phone','reviews','jumio'
## 864 'email','phone','zhima_selfie'
## 865 'phone','facebook'
## 866 'email','phone','reviews','jumio'
## 867 'email','phone','reviews','jumio','government_id'
## 868 'email','phone','reviews','jumio'
## 869 'email','phone','reviews','jumio'
## 870 'email','phone','reviews'
## 871 'email','phone','work_email'
## 872 'email','phone','reviews','jumio','government_id'
## 873 'email','phone'
## 874 'email','phone','work_email'
## 875 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 876 'phone'
## 877 'phone'
## 878 'email','phone','jumio','offline_government_id','government_id'
## 879 'email','phone','reviews','jumio','offline_government_id','government_id'
## 880 'phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 881 'phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 882 'email','phone','reviews','jumio','government_id'
## 883 'email','phone','reviews','jumio','offline_government_id','government_id','work_email'
## 884 'email','phone','reviews','jumio'
## 885 'phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 886 'email','phone','jumio','offline_government_id','selfie','government_id','zhima_selfie'
## 887 'phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 888 'phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 889 'email','phone','work_email'
## 890 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 891 'email','phone','jumio','offline_government_id','government_id'
## 892 'email','phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 893 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 894 'email','phone'
## 895 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 896 None
## 897 'email','phone','offline_government_id','selfie','government_id','identity_manual'
## 898 'email','phone','jumio','offline_government_id','government_id'
## 899 'email','phone'
## 900 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 901 'email','phone','reviews','work_email'
## 902 'email','phone'
## 903 'email','phone','jumio','offline_government_id','government_id'
## 904 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 905 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 906 'email','phone','facebook','reviews','manual_offline','jumio','offline_government_id','government_id','work_email'
## 907 'email','phone','reviews','jumio','government_id'
## 908 'email','phone','reviews'
## 909 'email','phone','facebook','reviews','jumio'
## 910 'phone','reviews','jumio','government_id','work_email'
## 911 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 912 'email','phone','reviews','jumio'
## 913 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual','work_email'
## 914 'email','phone','reviews','weibo','jumio','government_id'
## 915 'email','phone','reviews','weibo','jumio','government_id'
## 916 'email','phone','reviews','jumio','offline_government_id','government_id'
## 917 'email','phone','reviews','jumio','government_id'
## 918 'email','phone','reviews','jumio','government_id'
## 919 'email','phone','reviews','jumio','government_id'
## 920 'phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 921 'phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 922 'email','phone','reviews'
## 923 'email','phone','reviews','jumio','government_id'
## 924 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 925 'email','phone','reviews','jumio','offline_government_id','government_id'
## 926 'email','phone','reviews','jumio'
## 927 'email','phone','reviews'
## 928 'email','phone','google','reviews','jumio','offline_government_id','government_id'
## 929 'email','phone','reviews','weibo','jumio','government_id'
## 930 'email','phone','reviews','jumio','government_id'
## 931 'phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 932 'email','phone','reviews','jumio','government_id'
## 933 'email','phone','reviews'
## 934 'email','phone','reviews','weibo','jumio','government_id'
## 935 'email','phone','reviews','jumio'
## 936 'email','phone','reviews','jumio','offline_government_id','government_id'
## 937 'email','phone','reviews','jumio','offline_government_id','government_id'
## 938 'email','phone','jumio','selfie','government_id','identity_manual'
## 939 'email','phone','reviews','offline_government_id'
## 940 'email','phone','reviews','jumio','offline_government_id','government_id','work_email'
## 941 'email','phone','identity_manual'
## 942 'email','phone','identity_manual'
## 943 'email','phone','reviews','jumio'
## 944 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 945 'email','phone','reviews'
## 946 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 947 'email','phone','reviews','work_email'
## 948 'email','phone'
## 949 'phone'
## 950 'email','phone','reviews','jumio','government_id'
## 951 'email','phone','reviews','jumio'
## 952 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 953 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 954 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 955 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 956 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 957 'email','phone','manual_online','manual_offline'
## 958 'email','phone','reviews'
## 959 'email','phone','reviews'
## 960 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 961 'email','phone'
## 962 'email','phone','reviews','jumio'
## 963 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 964 'email','phone','reviews','jumio'
## 965 'email','phone','offline_government_id','government_id'
## 966 'email','phone','facebook','jumio','offline_government_id','selfie','government_id','identity_manual'
## 967 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 968 'email','phone','reviews','jumio'
## 969 'email','phone','reviews','jumio'
## 970 'email','phone','reviews','jumio'
## 971 'email','phone'
## 972 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 973 'email','phone','offline_government_id','government_id'
## 974 'email','phone','google','offline_government_id','selfie','government_id','identity_manual'
## 975 'email','phone'
## 976 'email','phone'
## 977 'email','phone','offline_government_id','government_id'
## 978 'email','phone','reviews','jumio'
## 979 'email','phone','offline_government_id','government_id'
## 980 'email','phone','jumio','offline_government_id','selfie','government_id','zhima_selfie'
## 981 'email','phone','reviews','jumio'
## 982 'email','phone','reviews','offline_government_id'
## 983 'email','phone','reviews','jumio'
## 984 'email','phone','reviews','jumio'
## 985 'email','phone','jumio','offline_government_id','government_id'
## 986 'email','phone','reviews','jumio'
## 987 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 988 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual','work_email'
## 989 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 990 'email','phone','google','reviews'
## 991 'email','phone','jumio','offline_government_id'
## 992 'email','phone','reviews','manual_offline','jumio','government_id'
## 993 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual','work_email'
## 994 'email','phone','offline_government_id','selfie','government_id','identity_manual'
## 995 'email','phone','jumio','offline_government_id'
## 996 'phone','facebook'
## 997 'email','phone'
## 998 'email','phone','facebook','reviews','jumio','government_id'
## 999 'email','phone','reviews','jumio','government_id','work_email'
## 1000 'email','phone','jumio','offline_government_id','government_id'
## 1001 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1002 'email','phone'
## 1003 'phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1004 'email','phone'
## 1005 'phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1006 'email','phone','jumio','offline_government_id','government_id'
## 1007 'email','phone','jumio','offline_government_id','government_id'
## 1008 'email','phone','reviews','jumio','government_id'
## 1009 'email','phone','reviews','jumio','government_id'
## 1010 'email','phone'
## 1011 'email','phone','google','jumio','offline_government_id','selfie','government_id','identity_manual','work_email'
## 1012 'email','phone','reviews'
## 1013 'email','phone','reviews'
## 1014 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1015 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1016 'email','phone','reviews','jumio'
## 1017 'email','phone','facebook','reviews','jumio','offline_government_id','selfie','government_id','identity_manual','work_email'
## 1018 'email','phone','reviews','jumio'
## 1019 'email','phone','reviews','jumio'
## 1020 'email','phone','google','reviews','jumio','work_email'
## 1021 'email','phone','reviews','jumio'
## 1022 'email','phone','google'
## 1023 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1024 'phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1025 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1026 'email','phone'
## 1027 'email','phone','jumio','government_id'
## 1028 'email','phone','reviews','jumio','offline_government_id','selfie','government_id'
## 1029 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1030 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1031 'email','phone','reviews','jumio','government_id','work_email'
## 1032 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','work_email'
## 1033 'email','phone','reviews','jumio','government_id','work_email'
## 1034 'email','phone','reviews','jumio','government_id'
## 1035 'email','phone','jumio','selfie','government_id','identity_manual'
## 1036 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1037 'email','phone','reviews'
## 1038 'email','phone','reviews','jumio','government_id'
## 1039 'email','phone','reviews'
## 1040 'email','phone','reviews','jumio','government_id'
## 1041
## 1042 'email','phone','reviews','jumio','offline_government_id','government_id'
## 1043 'email','phone','reviews','jumio','offline_government_id','government_id'
## 1044 'email','phone','reviews','manual_offline','jumio','government_id','work_email'
## 1045 'email','phone','reviews'
## 1046 'email','phone','reviews'
## 1047 'email','phone','reviews','jumio'
## 1048 'phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 1049 'email','phone','reviews'
## 1050 'email','phone','reviews','jumio','government_id','work_email'
## 1051 'email','phone','reviews','jumio','offline_government_id','government_id'
## 1052 'email','phone','reviews','work_email'
## 1053 'email','phone','reviews'
## 1054 'email','phone','reviews'
## 1055 'email','phone','reviews','jumio','offline_government_id','government_id'
## 1056 'email','phone','reviews','jumio','government_id'
## 1057 'email','phone','reviews','jumio'
## 1058 'email','phone','reviews','jumio','government_id'
## 1059 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1060 'email','phone','reviews'
## 1061 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1062 'email','phone','reviews','jumio'
## 1063 'email','phone','reviews','jumio'
## 1064 'email','phone','reviews','weibo','jumio','government_id'
## 1065 'email','phone','reviews'
## 1066 'email','phone','reviews','jumio','government_id'
## 1067 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1068 'email','phone','reviews','jumio','offline_government_id','government_id'
## 1069 'email','phone','reviews','jumio','government_id'
## 1070 'email','phone','offline_government_id','government_id','work_email'
## 1071 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1072 'email','phone','reviews'
## 1073 'email','phone','reviews','jumio','offline_government_id','government_id','work_email'
## 1074 'phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1075 'email','phone','reviews'
## 1076 'email','phone','reviews'
## 1077 'email','phone','reviews'
## 1078 'email','phone','reviews','jumio','offline_government_id','government_id'
## 1079 'email','phone','reviews','jumio','offline_government_id','government_id'
## 1080 'email','phone','reviews','jumio'
## 1081 'email','phone','reviews'
## 1082 'email','phone','reviews','jumio','selfie','government_id','identity_manual','work_email'
## 1083 'email','phone','reviews','jumio','government_id'
## 1084 'email','phone','facebook','reviews','jumio','government_id'
## 1085 'email','phone','reviews','jumio','offline_government_id','government_id'
## 1086 'email','phone','reviews','jumio'
## 1087 'email','phone','facebook','reviews'
## 1088 'email','phone','reviews','manual_offline'
## 1089 'email','phone','reviews','weibo','jumio','government_id'
## 1090 'phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1091 'phone','facebook','reviews','offline_government_id','government_id'
## 1092 'email','phone','reviews','jumio','government_id'
## 1093 'phone','reviews'
## 1094 'email','phone','facebook','reviews','offline_government_id','selfie','government_id','identity_manual'
## 1095 'email','phone','reviews','jumio','government_id'
## 1096 'phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1097 'email','phone','reviews','jumio','offline_government_id','government_id'
## 1098 'email','phone','reviews','jumio','government_id'
## 1099 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1100 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1101 'email','phone','reviews','jumio','offline_government_id','government_id'
## 1102 'email','phone','reviews','jumio','offline_government_id','government_id'
## 1103 'email','phone','reviews','work_email'
## 1104 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1105 'email','phone','reviews','work_email'
## 1106 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 1107 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 1108 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 1109 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 1110 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 1111 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 1112 'email','phone','reviews','jumio','government_id'
## 1113 'email','phone','google','reviews','jumio','offline_government_id','government_id'
## 1114 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1115 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 1116 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 1117 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 1118 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1119 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual','work_email'
## 1120 'phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1121 'email','phone','reviews','jumio'
## 1122 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1123 'email','phone','reviews','jumio','government_id','work_email'
## 1124 'email','phone','reviews'
## 1125 'email','phone'
## 1126 'phone'
## 1127 'email','phone','reviews','jumio'
## 1128 'email','phone','reviews','jumio','government_id'
## 1129 'email','phone'
## 1130 'email','phone','work_email'
## 1131 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 1132 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 1133 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1134 'email','phone','reviews'
## 1135 'email','phone','reviews','jumio'
## 1136 'email','phone','reviews','jumio'
## 1137 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1138 'email','phone','reviews','jumio','government_id'
## 1139 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual','work_email'
## 1140 'email','phone','reviews','jumio','government_id'
## 1141 'phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1142 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1143 'email','phone','reviews','jumio'
## 1144 'email','phone','reviews','jumio'
## 1145 'email','phone','reviews','jumio'
## 1146 'email','phone','reviews','jumio','offline_government_id','government_id'
## 1147 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1148 'email','phone','reviews','jumio'
## 1149 'email','phone','reviews','jumio'
## 1150 'email','phone','reviews','jumio'
## 1151 'email','phone','reviews','jumio'
## 1152 'email','phone','reviews','work_email'
## 1153 'email','phone','reviews','jumio'
## 1154 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1155 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1156 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1157 'email','phone','reviews','jumio','government_id'
## 1158 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1159 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1160 'email','phone','reviews','jumio'
## 1161 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1162 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1163 'email','phone','reviews','jumio'
## 1164 'email','phone'
## 1165 'email','phone','reviews','jumio'
## 1166 'email','phone','google','offline_government_id','selfie','government_id','identity_manual'
## 1167 'email','phone','google','offline_government_id','selfie','government_id','identity_manual'
## 1168 'email','phone'
## 1169 'email','phone','offline_government_id','government_id'
## 1170 'email','phone','reviews','jumio','government_id'
## 1171 'email','phone','reviews','jumio','offline_government_id','government_id'
## 1172 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1173 'email','phone','reviews','jumio'
## 1174 'email','phone','reviews','jumio'
## 1175 'email','phone','reviews'
## 1176 'email','phone','reviews'
## 1177 'email','phone','offline_government_id','government_id'
## 1178 'email','phone','reviews','jumio','government_id'
## 1179 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual','work_email'
## 1180 'email','phone','reviews'
## 1181 'email','phone','work_email'
## 1182 'email','phone','reviews','jumio'
## 1183 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 1184 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1185 'email','phone','reviews','jumio'
## 1186 'email','phone','offline_government_id','selfie','government_id','identity_manual'
## 1187 'email','phone','reviews','jumio'
## 1188 'email','phone','reviews','jumio'
## 1189 'email','phone','jumio','offline_government_id'
## 1190 'email','phone'
## 1191 'email','phone','reviews'
## 1192 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual','work_email'
## 1193 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1194 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1195 'email','phone','reviews','jumio','government_id'
## 1196 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1197 'email','phone'
## 1198 'email','phone','reviews','jumio'
## 1199 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual','work_email'
## 1200 'email','phone','reviews','jumio'
## 1201 'phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1202 'email','phone','reviews','jumio','government_id'
## 1203 'email','phone','reviews','jumio','government_id'
## 1204 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1205 'email','phone','reviews'
## 1206 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual','work_email'
## 1207 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1208 'email','phone','reviews','work_email'
## 1209 'email','phone','reviews','work_email'
## 1210 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1211 'phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1212 'phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1213 'email','phone','reviews','work_email'
## 1214 'email','phone','reviews'
## 1215 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1216 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1217 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1218 'email','phone','reviews','jumio','offline_government_id','government_id'
## 1219 'email','phone','reviews','work_email'
## 1220 'email','phone'
## 1221 'email','phone'
## 1222 'email','phone','reviews'
## 1223 'email','phone'
## 1224 'email','phone','facebook','jumio','offline_government_id','government_id'
## 1225 'email','phone'
## 1226 'email','phone','reviews','jumio'
## 1227 'email','phone'
## 1228 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1229 'email','phone','reviews','jumio'
## 1230 'email','phone','manual_online','manual_offline'
## 1231 'email','phone','reviews'
## 1232 'email','phone','reviews'
## 1233 'email','phone','reviews','weibo','jumio','government_id'
## 1234 'email','phone','reviews','weibo','jumio','government_id'
## 1235 'email','phone','work_email'
## 1236 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1237 'email','phone','reviews','jumio','offline_government_id'
## 1238 'email','phone','offline_government_id','selfie','government_id','identity_manual'
## 1239 'email','phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 1240 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1241 'email','phone','reviews','jumio'
## 1242 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1243 'email','phone','google','jumio','offline_government_id','selfie','government_id','identity_manual','work_email'
## 1244 'phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1245 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1246 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1247 'email','phone'
## 1248 'email','phone','reviews','jumio'
## 1249 'email','phone'
## 1250 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1251 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1252 'email','phone','reviews'
## 1253 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1254 'email','phone','facebook','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1255 'email','phone','reviews','jumio','government_id'
## 1256 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1257 'email','phone','offline_government_id','selfie','government_id','identity_manual'
## 1258 'email','phone','jumio','offline_government_id','government_id'
## 1259 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1260 'email','phone','offline_government_id','selfie','government_id','identity_manual'
## 1261 'email','phone','jumio','offline_government_id','selfie','government_id','zhima_selfie'
## 1262 'email','phone','jumio','offline_government_id','selfie','government_id','zhima_selfie'
## 1263 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1264 'phone','reviews','jumio','offline_government_id','government_id'
## 1265 'email','phone','reviews','work_email'
## 1266 'email','phone','reviews','jumio','selfie','government_id','identity_manual','work_email'
## 1267 'email','phone','reviews','work_email'
## 1268 'email','phone','reviews','work_email'
## 1269 'email','phone'
## 1270 'email','phone','reviews','jumio'
## 1271 'email','phone','google','reviews'
## 1272 'email','phone'
## 1273 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1274 'email','phone','reviews'
## 1275 'email','phone','reviews','jumio','government_id','work_email'
## 1276 'email','phone','reviews','jumio','government_id'
## 1277 'email','phone','facebook','reviews','offline_government_id','selfie','government_id','identity_manual'
## 1278 'email','phone','reviews','jumio','government_id'
## 1279 'email','phone'
## 1280 'email','phone','reviews'
## 1281 'email','phone','reviews'
## 1282 'email','phone','reviews','jumio','government_id'
## 1283 'email','phone','reviews'
## 1284 'email','phone','reviews','jumio'
## 1285 'email','phone','reviews','jumio','government_id','work_email'
## 1286 'email','phone','google','reviews','jumio','offline_government_id','government_id','work_email'
## 1287 'email','phone','google','reviews','jumio','offline_government_id','government_id'
## 1288 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1289 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1290 'email','phone','reviews','jumio'
## 1291 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1292 'email','phone','reviews','offline_government_id'
## 1293 'email','phone','reviews','weibo','jumio','government_id'
## 1294 'email','phone','reviews','weibo','jumio','government_id'
## 1295 'email','phone','reviews','weibo','jumio','government_id'
## 1296 'email','phone','reviews','weibo','jumio','government_id'
## 1297 'email','phone','reviews','jumio','offline_government_id','government_id'
## 1298 'phone','reviews'
## 1299 'email','phone','reviews'
## 1300 'email','phone','reviews','work_email'
## 1301 'email','phone','reviews','work_email'
## 1302 'email','phone','reviews','work_email'
## 1303 'email','phone','reviews','work_email'
## 1304 'email','phone','reviews','jumio','government_id'
## 1305 'email','phone','reviews'
## 1306 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1307 'email','phone','google','reviews','jumio','selfie','government_id','identity_manual'
## 1308 'email','phone','reviews','jumio','offline_government_id','government_id'
## 1309 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1310 'email','phone','reviews','jumio','government_id'
## 1311 'email','phone','reviews','jumio','government_id'
## 1312 'email','phone','reviews','jumio','government_id'
## 1313 'email','phone','reviews','weibo','jumio','selfie','government_id','identity_manual','work_email'
## 1314 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual','work_email'
## 1315 'email','phone'
## 1316 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1317 'email','phone','reviews','jumio','government_id','work_email'
## 1318 'email','phone','reviews'
## 1319 'email','phone','reviews','weibo','jumio','government_id'
## 1320 'email','phone','reviews','jumio','government_id'
## 1321 'email','phone','reviews'
## 1322 'email','phone','reviews','jumio','government_id'
## 1323 'email','phone','facebook','reviews','jumio','government_id'
## 1324 'email','phone','reviews','jumio','government_id'
## 1325 'email','phone','reviews','jumio','government_id'
## 1326 'phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1327 'email','phone','reviews','jumio'
## 1328 'phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1329 'email','phone','reviews','jumio','government_id'
## 1330 'email','phone','reviews'
## 1331 'email','phone','reviews'
## 1332 'email','phone','reviews'
## 1333 'email','phone','reviews','jumio','government_id'
## 1334 'email','phone','reviews','jumio','government_id'
## 1335 'email','phone','google','reviews','jumio','selfie','government_id','identity_manual'
## 1336 'email','phone','reviews'
## 1337 'email','phone','reviews','jumio','government_id'
## 1338 'email','phone','reviews','jumio','government_id'
## 1339 'email','phone','reviews','work_email'
## 1340 'email','phone','reviews','work_email'
## 1341 'email','phone','reviews','jumio','government_id'
## 1342 'email','phone','reviews','work_email'
## 1343 'email','phone','reviews','jumio','government_id'
## 1344 'email','phone','reviews','jumio','government_id'
## 1345 'email','phone','reviews','jumio','government_id'
## 1346 'email','phone','reviews','manual_offline'
## 1347 'email','phone','reviews','manual_offline'
## 1348 'phone','facebook','reviews','offline_government_id','government_id'
## 1349 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1350 'phone','facebook','reviews','offline_government_id','government_id'
## 1351 'email','phone','reviews','jumio','government_id'
## 1352 'phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1353 'email','phone','reviews'
## 1354 'email','phone','reviews'
## 1355 'email','phone','reviews'
## 1356 'email','phone','reviews'
## 1357 'email','phone','reviews','jumio','government_id'
## 1358 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1359 'email','phone','reviews','offline_government_id','selfie','government_id','identity_manual'
## 1360 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1361 'phone','jumio','offline_government_id','government_id'
## 1362 'email','phone','reviews'
## 1363 'email','phone','reviews'
## 1364 'email','phone','reviews','jumio','government_id'
## 1365 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1366 'email','phone','reviews'
## 1367 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1368 'email','phone','reviews','jumio','government_id'
## 1369 'email','phone','reviews','jumio','government_id'
## 1370 'email','phone','reviews','jumio','government_id'
## 1371 'email','phone','reviews','jumio'
## 1372 'phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1373 'email','phone','reviews','work_email'
## 1374 'email','phone','reviews','work_email'
## 1375 'phone','jumio','offline_government_id','government_id'
## 1376 'email','phone','reviews','jumio'
## 1377 'email','phone','google','reviews','jumio','offline_government_id','government_id'
## 1378 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1379 'email','phone','reviews','jumio','offline_government_id','government_id'
## 1380 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 1381 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 1382 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 1383 'email','phone','reviews','jumio','government_id'
## 1384 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1385 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1386 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1387 'email','phone','reviews','jumio','government_id'
## 1388 'email','phone','work_email'
## 1389 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1390 'email','phone','reviews','jumio','government_id'
## 1391 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1392 'email','phone','reviews'
## 1393 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 1394 'email','phone','reviews','jumio','government_id'
## 1395 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1396 'phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1397 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1398 'email','phone','reviews','jumio','government_id'
## 1399 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1400 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1401 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1402 'email','phone','reviews','jumio','government_id'
## 1403 'email','phone','reviews','jumio','government_id','work_email'
## 1404 'phone','facebook','offline_government_id','government_id'
## 1405 'email','phone','reviews','jumio','government_id'
## 1406 'email','phone','jumio','selfie','government_id','identity_manual'
## 1407 'email','phone','jumio','selfie','government_id','identity_manual'
## 1408 'email','phone','reviews','jumio'
## 1409 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1410 'email','phone','reviews','jumio','offline_government_id','government_id'
## 1411 'email','phone','reviews','jumio','government_id'
## 1412 'email','phone','work_email'
## 1413 'email','phone','work_email'
## 1414 'email','phone','reviews'
## 1415 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 1416 'email','phone','reviews','jumio','government_id'
## 1417 'email','phone','reviews'
## 1418 'email','phone','reviews'
## 1419 'email','phone','reviews','jumio'
## 1420 'email','phone','reviews'
## 1421 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual','work_email'
## 1422 'email','phone','reviews','jumio'
## 1423 'email','phone','reviews','jumio'
## 1424 'email','phone','reviews','jumio','government_id'
## 1425 'email','phone','reviews','jumio'
## 1426 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1427 'email','phone','reviews','jumio','government_id'
## 1428 'email','phone','reviews','jumio'
## 1429 'email','phone','facebook','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1430 'email','phone','reviews','jumio'
## 1431 'email','phone','reviews','jumio'
## 1432 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1433 'email','phone'
## 1434 'email','phone','reviews','jumio','government_id'
## 1435 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1436 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1437 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1438 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1439 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1440 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1441 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1442 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1443 'email','phone','reviews','jumio','government_id'
## 1444 'email','phone','reviews','jumio'
## 1445 'email','phone','reviews','jumio','government_id'
## 1446 'phone','jumio','offline_government_id','government_id'
## 1447 'phone','jumio','offline_government_id','government_id'
## 1448 'email','phone','facebook','reviews','jumio','government_id'
## 1449 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1450 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1451 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1452 'phone','google','reviews','jumio','government_id'
## 1453 'email','phone','reviews','jumio','government_id'
## 1454 'email','phone','offline_government_id','government_id'
## 1455 None
## 1456 'email','phone'
## 1457 'email','phone','reviews','jumio'
## 1458 'email','phone','reviews','jumio'
## 1459 'email','phone','reviews','jumio'
## 1460 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1461 'email','phone'
## 1462 'email','phone','reviews','jumio','government_id'
## 1463 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1464 'email','phone','reviews','jumio','government_id'
## 1465 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1466 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1467 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1468 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1469 'email','phone'
## 1470 'email','phone','reviews','jumio'
## 1471 'email','phone','reviews','jumio','government_id'
## 1472 'email','phone','reviews','jumio','government_id'
## 1473 'email','phone','reviews','jumio'
## 1474 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual','zhima_selfie'
## 1475 'email','phone','work_email'
## 1476 'email','phone','offline_government_id','selfie','government_id','identity_manual'
## 1477 'email','phone','reviews','jumio','government_id'
## 1478 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1479 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1480 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1481 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1482 'phone'
## 1483 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1484 'email','reviews'
## 1485 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1486 'email','phone','reviews','jumio','government_id'
## 1487 'email','phone','offline_government_id','government_id'
## 1488 'email','phone'
## 1489 'email','phone','reviews','jumio','government_id'
## 1490 'email','phone'
## 1491 'email','phone'
## 1492 'email','phone'
## 1493 'email','phone','offline_government_id','government_id'
## 1494 'email','phone','offline_government_id','government_id'
## 1495 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1496 'phone'
## 1497 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1498 'email','phone','offline_government_id','government_id'
## 1499 'email','phone','reviews'
## 1500 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1501 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1502 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1503 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1504 'email','phone','google','reviews','jumio','offline_government_id','government_id'
## 1505 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1506 'email','phone','reviews','jumio'
## 1507 'email','phone'
## 1508 'email','phone','reviews'
## 1509 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1510 'email','phone','reviews','jumio'
## 1511 'email','phone','reviews','jumio','offline_government_id','government_id'
## 1512 'email','phone','reviews'
## 1513 'email','phone','reviews'
## 1514 'email','phone','work_email'
## 1515 'email','phone','offline_government_id','government_id'
## 1516 'email','phone','jumio','offline_government_id','selfie','government_id'
## 1517 'email','phone','reviews','jumio'
## 1518 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual','work_email'
## 1519 'email','phone','reviews','jumio'
## 1520 'email','phone','reviews','jumio','government_id'
## 1521 'phone','offline_government_id','government_id'
## 1522 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 1523 'email','phone','offline_government_id','selfie','government_id','identity_manual','work_email'
## 1524 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1525 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 1526 'email','phone','reviews','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1527 'email','phone','reviews','work_email'
## 1528 'email','phone','reviews','jumio'
## 1529 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 1530 'email','phone','work_email'
## 1531 'email','phone','jumio','offline_government_id'
## 1532 'email','phone','reviews','jumio','offline_government_id','government_id'
## 1533 'email','phone','reviews','jumio','government_id'
## 1534 'email','phone','jumio','offline_government_id','government_id'
## 1535 'email','phone','reviews','jumio','government_id'
## 1536 'email','phone','jumio','offline_government_id','government_id'
## 1537 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual','work_email'
## 1538 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## hv_email hv_phone hv_facebook hv_reviews hv_manual_offline hv_manual_jumio
## 1 1 1 0 0 0 0
## 2 1 1 0 0 0 1
## 3 1 1 0 0 0 0
## 4 1 1 0 0 0 0
## 5 1 1 0 0 0 1
## 6 1 1 0 1 0 0
## 7 1 1 0 0 0 0
## 8 1 1 0 1 0 1
## 9 1 1 1 1 0 1
## 10 1 1 0 1 0 0
## 11 1 1 0 0 0 1
## 12 0 1 0 0 0 0
## 13 1 1 1 1 0 1
## 14 1 1 0 0 0 0
## 15 1 1 0 1 0 1
## 16 0 1 0 1 0 0
## 17 1 1 0 0 0 0
## 18 1 1 0 1 0 1
## 19 1 1 0 1 0 1
## 20 1 1 0 1 0 1
## 21 1 1 0 1 0 1
## 22 1 1 1 1 0 1
## 23 1 1 0 1 0 1
## 24 0 1 0 0 0 1
## 25 1 1 0 1 0 0
## 26 1 1 0 1 0 1
## 27 1 1 0 0 0 1
## 28 1 1 0 1 0 1
## 29 1 1 0 0 0 1
## 30 1 1 0 1 0 1
## 31 1 1 0 1 0 0
## 32 1 1 0 0 0 0
## 33 1 1 0 0 0 0
## 34 1 1 0 1 0 1
## 35 1 1 0 0 0 0
## 36 1 1 0 1 0 1
## 37 1 1 0 0 0 1
## 38 1 1 0 0 0 0
## 39 1 1 0 1 0 1
## 40 1 1 0 0 0 0
## 41 1 1 0 1 0 1
## 42 1 1 0 1 0 1
## 43 1 1 0 1 0 0
## 44 1 1 1 1 0 1
## 45 1 1 0 1 0 0
## 46 1 1 0 0 0 0
## 47 1 1 0 1 0 0
## 48 1 1 0 1 0 1
## 49 1 1 0 0 0 0
## 50 1 1 0 0 0 0
## 51 1 1 0 0 0 1
## 52 1 1 0 0 0 0
## 53 1 1 0 1 0 0
## 54 1 1 1 1 0 1
## 55 1 1 0 1 0 1
## 56 1 1 0 0 0 0
## 57 1 1 1 1 0 1
## 58 1 1 0 1 0 1
## 59 1 1 0 1 0 1
## 60 1 1 0 1 0 1
## 61 1 1 0 0 0 0
## 62 1 1 0 0 0 0
## 63 1 1 1 1 0 1
## 64 1 1 1 1 0 1
## 65 1 1 0 1 0 0
## 66 1 1 0 1 0 1
## 67 1 1 0 1 0 0
## 68 1 1 0 1 0 1
## 69 1 1 0 0 0 1
## 70 0 1 0 1 0 0
## 71 1 1 0 1 0 0
## 72 1 1 0 0 0 0
## 73 1 1 1 1 0 1
## 74 1 1 0 0 0 0
## 75 1 1 0 1 0 0
## 76 1 1 0 1 0 0
## 77 1 1 0 0 0 0
## 78 1 1 0 0 0 1
## 79 1 1 0 1 0 0
## 80 1 1 0 0 0 0
## 81 1 1 0 0 0 0
## 82 1 1 0 0 0 0
## 83 1 1 0 1 0 1
## 84 1 1 0 1 0 0
## 85 1 1 0 0 0 0
## 86 1 1 0 0 0 0
## 87 1 1 0 1 0 0
## 88 1 1 0 1 0 0
## 89 1 1 0 0 0 0
## 90 1 1 0 1 0 0
## 91 1 1 0 1 0 1
## 92 1 1 1 1 0 1
## 93 1 1 0 1 0 0
## 94 0 1 0 1 0 1
## 95 1 1 0 0 0 1
## 96 1 1 0 0 0 0
## 97 1 1 0 0 0 0
## 98 1 1 0 0 0 0
## 99 1 1 0 0 0 1
## 100 1 1 0 1 0 1
## 101 1 1 0 0 0 1
## 102 1 1 0 1 0 0
## 103 1 1 1 1 0 1
## 104 1 1 0 1 0 0
## 105 1 1 0 0 0 1
## 106 1 1 0 0 0 0
## 107 1 1 1 1 0 1
## 108 1 1 0 0 0 0
## 109 1 1 1 1 0 1
## 110 1 1 0 1 0 0
## 111 1 1 0 1 0 1
## 112 1 1 0 1 0 0
## 113 1 1 0 1 0 1
## 114 1 1 0 1 0 0
## 115 1 1 0 1 0 0
## 116 1 1 0 1 0 0
## 117 1 1 0 1 0 0
## 118 0 0 0 0 0 0
## 119 1 1 0 0 0 0
## 120 1 1 0 0 0 1
## 121 1 1 0 1 0 1
## 122 1 1 0 0 0 0
## 123 1 1 0 0 0 1
## 124 1 1 0 0 0 1
## 125 1 1 0 1 0 1
## 126 1 1 0 1 0 0
## 127 1 1 0 1 0 1
## 128 1 1 1 1 0 1
## 129 1 1 0 0 0 1
## 130 1 1 0 0 0 0
## 131 1 1 1 1 0 1
## 132 1 1 1 1 0 1
## 133 1 1 1 1 0 1
## 134 1 1 0 1 1 1
## 135 1 1 0 0 0 0
## 136 1 1 0 0 0 1
## 137 1 1 0 0 0 1
## 138 1 1 1 1 0 1
## 139 1 1 0 1 0 1
## 140 1 1 0 1 0 1
## 141 1 1 0 1 0 1
## 142 1 1 0 1 0 1
## 143 1 1 0 0 0 0
## 144 1 1 0 1 0 1
## 145 1 1 0 0 0 0
## 146 1 1 0 1 0 1
## 147 1 1 0 1 0 0
## 148 1 1 0 1 0 1
## 149 1 1 0 1 0 0
## 150 1 1 1 0 0 0
## 151 1 1 0 0 0 0
## 152 1 1 0 1 0 1
## 153 1 1 1 0 0 0
## 154 1 1 0 1 0 1
## 155 1 1 0 1 0 0
## 156 1 1 0 0 0 0
## 157 1 1 0 1 0 1
## 158 1 1 0 0 0 1
## 159 1 1 1 1 0 1
## 160 1 1 1 1 0 1
## 161 1 1 0 1 0 0
## 162 1 1 0 1 0 1
## 163 1 1 0 0 0 1
## 164 0 1 0 1 0 0
## 165 1 1 0 1 0 1
## 166 1 1 0 1 0 1
## 167 1 1 0 1 0 1
## 168 1 1 0 0 0 0
## 169 1 1 1 1 0 1
## 170 1 1 0 1 0 1
## 171 1 1 0 1 0 1
## 172 1 1 0 1 0 0
## 173 1 1 0 0 0 0
## 174 1 1 0 0 0 0
## 175 1 1 0 1 0 1
## 176 1 1 0 1 0 1
## 177 1 1 0 1 0 1
## 178 1 1 0 1 0 1
## 179 1 1 0 1 0 0
## 180 1 1 0 1 0 1
## 181 1 1 0 1 0 1
## 182 1 1 0 1 0 1
## 183 0 1 0 1 0 1
## 184 1 1 0 1 0 0
## 185 1 1 1 1 0 1
## 186 1 1 0 1 0 0
## 187 1 1 0 0 0 1
## 188 1 1 1 1 0 1
## 189 1 1 0 1 0 1
## 190 1 1 0 1 0 1
## 191 1 1 0 1 0 1
## 192 1 1 0 1 0 1
## 193 1 1 0 0 0 0
## 194 1 1 0 0 0 0
## 195 1 1 0 0 0 0
## 196 1 1 0 0 0 0
## 197 1 1 1 1 0 1
## 198 1 1 0 1 0 1
## 199 1 1 0 1 0 0
## 200 0 1 0 1 0 0
## 201 1 1 0 1 0 1
## 202 1 1 0 1 0 0
## 203 1 1 0 0 0 0
## 204 1 1 0 0 0 0
## 205 1 1 0 1 0 1
## 206 1 1 0 1 0 1
## 207 1 1 0 1 0 1
## 208 1 1 0 0 0 1
## 209 0 1 0 0 0 0
## 210 1 1 0 1 0 0
## 211 1 1 0 1 0 1
## 212 1 1 0 1 0 0
## 213 1 1 0 1 0 1
## 214 1 1 0 1 0 0
## 215 1 1 0 0 0 1
## 216 1 1 0 1 0 1
## 217 0 1 0 0 0 1
## 218 1 1 0 0 0 1
## 219 1 1 0 1 0 1
## 220 1 1 0 1 0 0
## 221 1 1 0 0 0 0
## 222 1 1 0 0 0 0
## 223 1 1 0 1 0 1
## 224 1 1 0 1 0 1
## 225 1 1 1 1 0 1
## 226 1 1 0 1 0 1
## 227 1 1 0 0 0 0
## 228 1 1 0 1 1 0
## 229 1 1 0 0 0 0
## 230 1 1 0 0 0 1
## 231 1 1 0 1 0 1
## 232 1 1 0 0 0 0
## 233 1 1 0 1 0 0
## 234 1 1 0 1 0 1
## 235 1 1 0 1 0 1
## 236 1 1 0 0 0 1
## 237 1 1 0 0 0 0
## 238 1 1 0 0 0 0
## 239 1 1 1 1 0 1
## 240 0 0 0 0 0 0
## 241 1 1 0 1 0 1
## 242 1 1 0 1 0 1
## 243 1 1 0 1 0 1
## 244 1 1 0 1 0 0
## 245 1 1 0 1 0 0
## 246 1 1 0 1 0 1
## 247 1 1 0 0 0 0
## 248 1 1 0 0 0 0
## 249 1 1 0 1 0 1
## 250 1 1 0 1 0 0
## 251 1 1 0 1 0 1
## 252 1 1 0 1 0 1
## 253 1 1 0 1 0 0
## 254 1 1 0 1 0 0
## 255 0 1 0 0 0 1
## 256 1 1 0 1 0 0
## 257 1 1 0 1 0 0
## 258 0 1 0 1 0 1
## 259 1 1 0 0 0 0
## 260 1 1 0 0 0 1
## 261 1 1 0 0 0 1
## 262 1 1 0 0 0 0
## 263 1 1 0 1 1 0
## 264 1 1 0 1 1 1
## 265 1 1 0 1 0 1
## 266 1 1 0 1 0 1
## 267 1 1 0 1 0 1
## 268 1 1 0 1 0 1
## 269 1 1 0 1 0 1
## 270 1 1 0 1 0 1
## 271 1 1 0 0 0 1
## 272 1 1 0 0 0 1
## 273 1 1 0 0 0 0
## 274 1 1 0 1 0 0
## 275 1 1 1 1 0 0
## 276 1 1 0 1 0 1
## 277 1 1 1 1 0 0
## 278 1 1 0 1 0 1
## 279 1 1 0 1 0 1
## 280 1 1 0 1 0 0
## 281 1 1 0 0 0 1
## 282 0 1 0 1 0 1
## 283 1 1 0 1 0 0
## 284 1 1 0 1 0 1
## 285 1 1 0 0 0 0
## 286 1 1 0 1 0 1
## 287 1 1 0 1 0 1
## 288 1 1 0 0 0 1
## 289 1 1 0 0 0 0
## 290 1 1 0 0 0 0
## 291 0 1 0 1 0 0
## 292 1 1 0 1 0 1
## 293 1 1 0 1 0 0
## 294 1 1 0 1 0 0
## 295 1 1 0 1 0 1
## 296 1 1 0 1 0 1
## 297 1 1 0 1 0 0
## 298 1 1 0 1 0 1
## 299 1 1 0 0 0 0
## 300 1 1 1 1 0 1
## 301 1 1 0 0 0 0
## 302 1 1 0 1 0 1
## 303 1 1 1 1 0 0
## 304 1 1 0 0 0 0
## 305 1 1 0 1 0 1
## 306 1 1 0 1 0 1
## 307 1 1 0 1 0 0
## 308 1 1 0 1 0 0
## 309 1 1 0 1 0 1
## 310 1 1 0 1 0 1
## 311 1 1 0 1 0 0
## 312 1 1 0 0 1 0
## 313 1 1 0 1 0 1
## 314 1 1 0 0 0 0
## 315 1 1 0 1 0 1
## 316 0 1 1 0 0 0
## 317 1 1 0 1 0 0
## 318 1 1 0 1 0 1
## 319 1 1 0 1 0 0
## 320 1 1 0 0 0 1
## 321 1 1 0 0 0 0
## 322 1 1 0 1 0 0
## 323 1 1 0 1 0 0
## 324 1 1 1 1 0 1
## 325 1 1 0 1 0 1
## 326 1 1 0 1 0 1
## 327 1 1 0 0 0 0
## 328 1 1 0 0 0 1
## 329 0 1 0 1 0 1
## 330 1 1 0 0 0 0
## 331 1 1 0 1 1 0
## 332 1 1 0 0 0 0
## 333 1 1 0 1 0 1
## 334 1 1 0 1 1 0
## 335 1 1 0 0 0 0
## 336 1 1 0 0 0 0
## 337 1 1 0 0 0 0
## 338 1 1 0 0 0 0
## 339 1 1 0 1 0 1
## 340 1 1 1 0 0 1
## 341 1 1 0 0 0 0
## 342 1 1 0 1 0 1
## 343 1 1 0 1 0 1
## 344 1 1 0 1 0 0
## 345 1 1 0 1 0 0
## 346 1 1 0 1 0 0
## 347 1 1 0 0 0 0
## 348 1 1 0 0 0 0
## 349 1 1 0 0 0 0
## 350 0 1 0 1 0 1
## 351 0 1 0 1 0 1
## 352 1 1 0 0 0 1
## 353 1 1 1 1 0 0
## 354 1 1 0 1 0 1
## 355 1 1 0 0 0 0
## 356 1 1 0 1 0 1
## 357 1 1 0 1 0 1
## 358 1 1 0 1 0 0
## 359 1 1 0 1 0 1
## 360 1 1 0 0 0 0
## 361 1 1 0 1 0 0
## 362 1 1 0 1 0 1
## 363 1 1 0 0 0 0
## 364 1 1 0 0 0 1
## 365 1 1 0 1 0 0
## 366 1 1 0 0 0 0
## 367 1 1 0 0 0 1
## 368 1 1 0 0 0 1
## 369 1 1 0 1 0 1
## 370 1 1 0 1 0 1
## 371 0 1 0 1 0 0
## 372 1 1 0 0 0 1
## 373 1 1 0 1 0 1
## 374 1 1 0 0 0 0
## 375 1 1 0 1 0 0
## 376 1 1 1 1 0 0
## 377 1 1 0 1 0 1
## 378 1 1 0 1 0 0
## 379 1 1 0 1 0 0
## 380 1 1 0 0 0 0
## 381 1 1 0 1 0 1
## 382 1 1 0 0 0 0
## 383 1 1 0 0 0 0
## 384 1 1 0 0 0 1
## 385 0 1 0 1 0 1
## 386 1 1 0 0 0 1
## 387 0 0 0 0 0 0
## 388 1 1 0 0 0 1
## 389 1 1 0 1 0 1
## 390 1 1 1 1 0 0
## 391 1 1 0 1 0 1
## 392 1 1 0 0 0 0
## 393 1 1 0 1 0 0
## 394 0 1 0 1 0 0
## 395 1 1 0 1 0 0
## 396 1 1 0 1 0 1
## 397 1 1 0 1 0 1
## 398 1 1 0 1 0 1
## 399 1 1 0 1 0 1
## 400 0 1 0 0 0 1
## 401 1 1 0 1 0 1
## 402 1 1 0 1 0 0
## 403 1 1 0 1 0 0
## 404 1 1 0 0 0 0
## 405 1 1 0 0 0 0
## 406 1 1 0 1 0 0
## 407 1 1 0 1 0 0
## 408 1 1 0 0 0 0
## 409 1 1 1 1 0 1
## 410 1 1 0 0 0 1
## 411 0 1 0 1 0 1
## 412 1 1 0 1 0 1
## 413 1 1 0 0 0 0
## 414 1 1 0 0 0 0
## 415 1 1 0 1 0 1
## 416 1 1 0 1 0 1
## 417 1 1 0 0 0 0
## 418 1 1 0 1 0 1
## 419 1 1 0 1 0 0
## 420 1 1 0 1 0 1
## 421 1 1 0 1 0 1
## 422 1 1 0 1 0 1
## 423 1 1 0 0 0 0
## 424 1 1 0 1 0 1
## 425 1 1 0 1 0 1
## 426 0 1 0 0 0 1
## 427 1 1 0 1 0 0
## 428 1 1 0 1 0 0
## 429 1 1 0 1 0 0
## 430 1 1 0 1 0 0
## 431 1 1 0 0 0 0
## 432 1 1 0 1 0 1
## 433 1 1 0 1 0 0
## 434 1 1 0 1 0 0
## 435 0 1 1 0 0 0
## 436 1 1 0 0 0 0
## 437 1 1 0 1 0 1
## 438 1 1 0 0 0 1
## 439 1 1 0 0 0 0
## 440 1 1 0 0 0 1
## 441 1 1 0 1 0 0
## 442 1 1 0 1 0 1
## 443 1 1 0 1 0 1
## 444 1 1 1 1 0 0
## 445 1 1 0 1 0 0
## 446 1 1 0 1 0 0
## 447 1 1 0 1 0 1
## 448 1 1 0 1 0 1
## 449 1 1 0 1 0 0
## 450 1 1 0 1 0 0
## 451 1 1 1 0 0 0
## 452 0 1 0 0 0 1
## 453 1 1 0 0 0 0
## 454 1 1 0 0 0 0
## 455 1 1 0 1 0 1
## 456 1 1 0 1 0 0
## 457 1 1 0 0 0 0
## 458 0 1 0 0 0 0
## 459 1 1 0 1 0 1
## 460 1 1 0 1 0 1
## 461 1 1 0 1 0 0
## 462 0 1 0 0 0 0
## 463 1 1 0 1 0 1
## 464 1 1 0 0 0 0
## 465 1 1 0 0 0 0
## 466 1 1 0 1 0 1
## 467 1 1 0 1 0 0
## 468 1 1 0 1 0 1
## 469 1 1 1 1 0 0
## 470 1 1 0 1 0 1
## 471 1 1 0 1 0 0
## 472 1 1 0 1 0 1
## 473 1 1 0 1 0 0
## 474 1 1 0 1 0 1
## 475 1 1 0 1 0 0
## 476 1 1 0 1 1 0
## 477 1 1 0 1 0 1
## 478 1 1 0 1 0 0
## 479 1 1 0 1 0 1
## 480 1 1 0 1 0 1
## 481 1 1 0 1 0 0
## 482 1 1 0 0 0 0
## 483 1 1 0 0 0 0
## 484 1 1 0 1 0 0
## 485 1 1 0 0 0 0
## 486 1 1 0 1 0 0
## 487 1 1 0 0 0 0
## 488 1 1 0 0 0 0
## 489 1 1 0 0 0 0
## 490 1 1 0 1 0 0
## 491 1 1 0 0 0 0
## 492 1 1 0 1 0 0
## 493 1 1 0 0 0 0
## 494 1 1 0 0 0 1
## 495 1 1 0 1 0 0
## 496 1 1 0 1 0 1
## 497 1 1 0 0 0 0
## 498 1 1 0 1 0 1
## 499 1 1 0 1 0 1
## 500 1 1 0 0 0 0
## 501 1 1 0 1 0 1
## 502 1 1 0 1 0 1
## 503 1 1 0 1 0 1
## 504 1 1 0 1 1 1
## 505 1 1 0 1 0 0
## 506 1 1 0 1 0 1
## 507 1 1 0 0 0 0
## 508 1 1 0 1 0 0
## 509 1 1 0 1 0 0
## 510 1 1 0 1 0 1
## 511 1 1 0 1 0 1
## 512 1 1 0 1 0 0
## 513 1 1 0 1 0 1
## 514 1 1 0 0 0 0
## 515 1 1 0 0 0 0
## 516 1 1 0 1 0 0
## 517 1 1 0 0 0 0
## 518 1 1 0 0 0 0
## 519 1 1 0 1 0 1
## 520 1 1 0 1 0 0
## 521 1 1 0 0 0 1
## 522 1 1 0 1 0 0
## 523 1 1 0 0 0 0
## 524 1 1 0 0 0 0
## 525 0 1 0 1 0 1
## 526 0 1 0 1 0 1
## 527 1 1 0 0 0 1
## 528 1 1 0 0 0 0
## 529 1 1 0 1 0 0
## 530 1 1 0 1 0 0
## 531 1 1 0 1 0 0
## 532 1 1 0 1 0 0
## 533 1 1 0 1 0 0
## 534 1 1 0 1 0 0
## 535 1 1 0 1 0 0
## 536 1 1 0 1 0 0
## 537 1 1 0 1 0 1
## 538 1 1 0 1 0 1
## 539 1 1 0 1 0 1
## 540 1 1 0 1 0 1
## 541 1 1 0 1 0 0
## 542 1 1 0 1 0 0
## 543 1 1 0 1 1 0
## 544 1 1 0 1 0 1
## 545 1 1 0 1 0 0
## 546 1 1 0 1 0 1
## 547 1 1 0 1 0 1
## 548 1 1 1 1 0 0
## 549 1 1 0 1 0 0
## 550 1 1 0 1 0 1
## 551 1 1 0 1 0 1
## 552 1 1 0 1 0 1
## 553 1 1 0 1 0 1
## 554 1 1 0 1 0 0
## 555 1 1 0 0 0 0
## 556 1 1 0 0 0 0
## 557 1 1 0 1 0 1
## 558 0 1 0 0 0 0
## 559 1 1 0 0 0 1
## 560 1 1 0 0 0 1
## 561 1 1 0 0 0 1
## 562 1 1 0 0 0 0
## 563 1 1 0 0 0 1
## 564 1 1 0 1 1 0
## 565 1 1 0 1 0 1
## 566 1 1 0 1 0 1
## 567 1 1 0 1 0 1
## 568 1 1 0 1 0 1
## 569 1 1 0 1 0 1
## 570 1 1 0 0 0 0
## 571 1 1 0 1 0 0
## 572 1 1 0 0 0 0
## 573 1 1 0 1 0 1
## 574 1 1 0 1 0 1
## 575 1 1 0 1 0 0
## 576 1 1 0 1 0 1
## 577 1 1 0 0 0 0
## 578 1 1 0 1 0 0
## 579 1 1 0 1 0 0
## 580 1 1 1 1 0 1
## 581 1 1 1 0 0 0
## 582 1 1 0 1 0 1
## 583 1 1 0 0 0 0
## 584 1 1 0 0 0 0
## 585 1 1 0 0 0 1
## 586 1 1 0 0 0 0
## 587 1 1 0 0 0 1
## 588 1 1 0 1 0 1
## 589 1 1 0 1 0 1
## 590 1 1 0 0 0 1
## 591 1 1 0 0 0 0
## 592 1 1 0 1 0 1
## 593 1 1 0 1 0 1
## 594 1 1 0 1 0 1
## 595 1 1 0 1 0 1
## 596 1 1 0 1 0 0
## 597 1 1 0 1 0 1
## 598 1 1 0 1 0 1
## 599 1 1 1 1 0 0
## 600 1 1 1 1 0 0
## 601 1 1 0 1 0 1
## 602 1 1 0 0 0 0
## 603 1 1 0 1 0 1
## 604 1 1 0 1 1 0
## 605 1 1 0 1 0 1
## 606 1 1 0 1 0 0
## 607 1 1 0 1 0 1
## 608 1 1 0 0 0 1
## 609 1 1 0 1 0 0
## 610 1 1 0 1 0 0
## 611 1 1 0 1 0 0
## 612 1 1 0 0 1 0
## 613 1 1 0 0 0 0
## 614 1 1 0 1 0 1
## 615 1 1 0 0 0 0
## 616 1 1 0 0 0 1
## 617 1 1 1 0 0 0
## 618 0 0 0 0 0 0
## 619 1 1 0 0 0 0
## 620 1 1 0 0 0 1
## 621 1 1 0 0 0 0
## 622 0 1 0 0 0 0
## 623 1 1 0 1 0 1
## 624 1 1 0 0 0 0
## 625 1 1 0 1 0 1
## 626 1 1 0 0 0 0
## 627 1 1 1 1 0 0
## 628 1 1 0 1 0 1
## 629 1 1 0 1 0 0
## 630 1 1 0 1 0 1
## 631 1 1 0 1 0 0
## 632 1 1 0 1 0 1
## 633 1 1 0 1 0 1
## 634 1 1 0 1 0 1
## 635 1 1 0 1 0 1
## 636 1 1 0 1 0 0
## 637 1 1 0 1 0 0
## 638 1 1 0 1 0 1
## 639 1 1 0 1 0 1
## 640 1 1 0 1 0 1
## 641 1 1 0 1 0 1
## 642 1 1 0 1 0 1
## 643 1 1 0 1 0 1
## 644 0 1 0 0 0 1
## 645 1 1 0 1 0 0
## 646 1 1 0 1 0 1
## 647 1 1 0 1 0 1
## 648 1 1 0 1 0 1
## 649 1 1 0 0 0 0
## 650 1 1 0 0 0 0
## 651 1 1 0 1 0 1
## 652 1 1 0 1 0 1
## 653 1 1 0 0 0 1
## 654 1 1 0 1 0 1
## 655 1 1 0 0 0 0
## 656 1 1 0 1 0 1
## 657 1 1 0 0 0 1
## 658 1 1 0 0 0 0
## 659 1 1 0 1 0 1
## 660 1 1 0 0 0 0
## 661 1 1 0 0 0 1
## 662 1 1 0 1 0 1
## 663 1 1 0 0 0 0
## 664 1 1 0 0 0 0
## 665 1 1 0 1 0 1
## 666 1 1 0 1 0 1
## 667 1 1 0 1 0 1
## 668 1 1 0 0 0 0
## 669 1 1 0 1 0 0
## 670 1 1 0 0 0 1
## 671 1 1 0 0 0 1
## 672 1 1 0 0 0 1
## 673 1 1 0 1 0 1
## 674 1 1 0 1 0 0
## 675 1 1 0 0 0 1
## 676 1 1 0 0 0 0
## 677 1 1 0 0 0 1
## 678 0 1 0 0 0 0
## 679 1 1 0 0 0 1
## 680 1 1 0 1 0 0
## 681 1 1 0 1 0 1
## 682 1 1 0 1 0 0
## 683 1 1 0 1 0 1
## 684 1 1 0 1 0 1
## 685 1 1 0 1 0 1
## 686 1 1 0 1 0 1
## 687 1 1 0 0 0 0
## 688 1 1 0 1 0 1
## 689 1 1 0 1 0 1
## 690 1 1 0 1 0 1
## 691 1 1 0 1 0 1
## 692 1 1 0 1 0 1
## 693 1 1 0 1 0 0
## 694 1 1 0 0 0 0
## 695 1 1 0 1 0 1
## 696 1 1 0 0 0 0
## 697 1 1 0 1 0 0
## 698 1 1 0 1 0 1
## 699 1 1 1 1 1 1
## 700 1 1 0 1 0 0
## 701 0 1 1 0 0 0
## 702 1 1 0 1 0 1
## 703 1 1 0 1 0 1
## 704 1 1 0 1 0 1
## 705 1 1 0 1 0 0
## 706 1 1 0 1 1 0
## 707 1 1 0 1 0 1
## 708 1 1 0 1 0 1
## 709 1 1 0 1 0 0
## 710 1 1 0 1 0 1
## 711 1 1 0 0 0 0
## 712 1 1 0 0 0 0
## 713 1 1 0 1 0 1
## 714 1 1 0 0 0 0
## 715 1 1 0 1 0 1
## 716 1 1 0 1 0 0
## 717 1 1 0 0 0 0
## 718 1 1 0 1 0 1
## 719 0 0 0 0 0 0
## 720 1 1 0 0 0 0
## 721 1 1 0 0 0 0
## 722 1 1 0 0 0 0
## 723 1 1 0 1 0 0
## 724 1 1 1 1 0 1
## 725 1 1 0 0 0 0
## 726 1 1 0 1 0 1
## 727 1 1 0 1 0 1
## 728 1 1 0 0 0 0
## 729 1 1 0 1 0 1
## 730 0 1 0 1 0 1
## 731 0 1 0 1 0 1
## 732 0 1 0 1 0 1
## 733 1 1 0 0 0 1
## 734 1 1 0 1 0 0
## 735 1 1 0 0 0 0
## 736 1 1 0 1 0 1
## 737 1 1 0 0 0 1
## 738 1 1 0 1 0 1
## 739 1 1 0 0 0 1
## 740 1 1 0 0 0 0
## 741 1 1 0 0 0 0
## 742 1 1 0 0 0 1
## 743 1 1 0 1 0 0
## 744 1 1 0 1 0 1
## 745 1 1 1 1 1 1
## 746 1 1 0 0 0 0
## 747 1 1 0 1 0 1
## 748 1 1 0 1 0 1
## 749 1 1 0 1 0 1
## 750 1 1 0 1 0 1
## 751 0 1 0 1 0 0
## 752 1 1 0 1 0 1
## 753 1 1 0 1 0 1
## 754 1 1 0 1 0 1
## 755 1 1 0 1 0 1
## 756 1 1 0 1 0 0
## 757 1 1 1 1 0 0
## 758 1 1 0 1 0 1
## 759 1 1 0 1 0 1
## 760 1 1 0 1 0 1
## 761 1 1 0 1 0 1
## 762 0 1 0 1 0 1
## 763 1 1 0 1 0 0
## 764 1 1 0 1 0 1
## 765 1 1 0 1 1 0
## 766 1 1 0 1 0 1
## 767 1 1 0 1 0 0
## 768 1 1 0 1 0 0
## 769 1 1 0 1 0 0
## 770 1 1 0 1 0 1
## 771 1 1 0 1 0 0
## 772 1 1 0 1 0 1
## 773 1 1 0 1 0 1
## 774 1 1 0 1 0 1
## 775 1 1 0 1 0 1
## 776 1 1 0 1 0 0
## 777 1 1 0 1 0 0
## 778 1 1 0 0 0 1
## 779 1 1 0 1 0 0
## 780 1 1 0 1 0 1
## 781 1 1 0 1 0 0
## 782 1 1 0 1 0 1
## 783 1 1 0 0 0 0
## 784 1 1 0 0 0 1
## 785 1 1 0 1 0 1
## 786 1 1 0 1 0 1
## 787 1 1 0 0 0 0
## 788 1 1 0 1 0 1
## 789 1 1 0 0 0 0
## 790 1 1 0 1 0 0
## 791 0 1 0 0 0 0
## 792 1 1 0 1 0 0
## 793 1 1 0 0 0 1
## 794 1 1 0 1 0 1
## 795 1 1 0 1 0 1
## 796 1 1 0 1 0 1
## 797 0 1 0 1 0 1
## 798 1 1 0 1 0 0
## 799 1 1 0 0 0 0
## 800 1 1 0 1 0 0
## 801 1 1 0 1 0 1
## 802 1 1 0 0 0 0
## 803 1 1 0 1 0 0
## 804 1 1 0 0 0 0
## 805 1 1 0 0 0 0
## 806 1 1 1 1 0 1
## 807 1 1 0 0 0 0
## 808 1 1 0 0 0 0
## 809 1 1 0 0 0 0
## 810 1 1 0 1 0 1
## 811 1 1 0 1 0 0
## 812 0 1 0 0 0 0
## 813 0 1 0 0 0 0
## 814 1 1 0 1 1 0
## 815 1 1 1 1 1 1
## 816 1 1 0 1 0 1
## 817 1 1 0 1 0 0
## 818 1 1 0 1 1 1
## 819 1 1 0 1 0 1
## 820 1 1 0 1 0 1
## 821 1 1 0 1 0 1
## 822 1 1 0 1 0 1
## 823 1 1 0 1 0 1
## 824 0 1 0 1 0 0
## 825 1 1 0 1 0 0
## 826 1 1 0 1 0 0
## 827 1 1 0 1 0 1
## 828 1 1 0 1 0 0
## 829 1 1 1 1 1 1
## 830 1 1 0 1 0 0
## 831 0 1 0 1 0 0
## 832 1 1 0 0 0 0
## 833 1 1 0 1 0 1
## 834 0 1 0 1 0 0
## 835 1 1 0 1 0 0
## 836 1 1 0 1 0 0
## 837 1 1 0 1 0 0
## 838 1 1 0 0 0 0
## 839 1 1 0 1 0 1
## 840 1 1 0 1 1 0
## 841 1 1 0 1 0 0
## 842 1 1 0 1 0 1
## 843 0 1 0 1 0 1
## 844 1 1 0 1 0 1
## 845 1 1 0 1 0 1
## 846 1 1 0 1 0 1
## 847 1 1 0 1 0 1
## 848 1 1 0 1 0 1
## 849 1 1 0 0 0 0
## 850 1 1 0 1 0 1
## 851 1 1 0 1 0 1
## 852 1 1 0 1 0 0
## 853 1 1 0 1 0 1
## 854 1 1 0 1 0 1
## 855 1 1 0 0 0 0
## 856 1 1 0 1 0 1
## 857 1 1 0 1 0 0
## 858 1 1 0 1 0 0
## 859 1 1 0 1 0 1
## 860 1 1 0 0 0 0
## 861 1 1 0 0 0 1
## 862 1 1 0 0 0 0
## 863 1 1 0 1 0 1
## 864 1 1 0 0 0 0
## 865 0 1 1 0 0 0
## 866 1 1 0 1 0 1
## 867 1 1 0 1 0 1
## 868 1 1 0 1 0 1
## 869 1 1 0 1 0 1
## 870 1 1 0 1 0 0
## 871 1 1 0 0 0 0
## 872 1 1 0 1 0 1
## 873 1 1 0 0 0 0
## 874 1 1 0 0 0 0
## 875 1 1 0 1 0 1
## 876 0 1 0 0 0 0
## 877 0 1 0 0 0 0
## 878 1 1 0 0 0 1
## 879 1 1 0 1 0 1
## 880 0 1 0 0 0 1
## 881 0 1 0 1 0 1
## 882 1 1 0 1 0 1
## 883 1 1 0 1 0 1
## 884 1 1 0 1 0 1
## 885 0 1 0 0 0 1
## 886 1 1 0 0 0 1
## 887 0 1 0 1 0 1
## 888 0 1 0 1 0 1
## 889 1 1 0 0 0 0
## 890 1 1 0 1 0 1
## 891 1 1 0 0 0 1
## 892 1 1 0 1 0 0
## 893 1 1 0 0 0 0
## 894 1 1 0 0 0 0
## 895 1 1 0 0 0 1
## 896 0 0 0 0 0 0
## 897 1 1 0 0 0 0
## 898 1 1 0 0 0 1
## 899 1 1 0 0 0 0
## 900 1 1 0 0 0 1
## 901 1 1 0 1 0 0
## 902 1 1 0 0 0 0
## 903 1 1 0 0 0 1
## 904 1 1 0 1 0 1
## 905 1 1 0 1 0 1
## 906 1 1 1 1 1 1
## 907 1 1 0 1 0 1
## 908 1 1 0 1 0 0
## 909 1 1 1 1 0 1
## 910 1 1 0 1 0 1
## 911 1 1 0 1 0 1
## 912 1 1 0 1 0 1
## 913 1 1 0 1 0 1
## 914 1 1 0 1 0 1
## 915 1 1 0 1 0 1
## 916 1 1 0 1 0 1
## 917 1 1 0 1 0 1
## 918 1 1 0 1 0 1
## 919 1 1 0 1 0 1
## 920 0 1 0 1 0 0
## 921 0 1 0 1 0 0
## 922 1 1 0 1 0 0
## 923 1 1 0 1 0 1
## 924 1 1 0 1 0 1
## 925 1 1 0 1 0 1
## 926 1 1 0 1 0 1
## 927 1 1 0 1 0 0
## 928 1 1 0 1 0 1
## 929 1 1 0 1 0 1
## 930 1 1 0 1 0 1
## 931 0 1 0 1 0 1
## 932 1 1 0 1 0 1
## 933 1 1 0 1 0 0
## 934 1 1 0 1 0 1
## 935 1 1 0 1 0 1
## 936 1 1 0 1 0 1
## 937 1 1 0 1 0 1
## 938 1 1 0 0 0 1
## 939 1 1 0 1 0 0
## 940 1 1 0 1 0 1
## 941 1 1 0 0 0 0
## 942 1 1 0 0 0 0
## 943 1 1 0 1 0 1
## 944 1 1 0 1 0 1
## 945 1 1 0 1 0 0
## 946 1 1 0 1 0 1
## 947 1 1 0 1 0 0
## 948 1 1 0 0 0 0
## 949 0 1 0 0 0 0
## 950 1 1 0 1 0 1
## 951 1 1 0 1 0 1
## 952 1 1 0 0 0 0
## 953 1 1 0 0 0 0
## 954 1 1 0 0 0 0
## 955 1 1 0 0 0 0
## 956 1 1 0 0 0 0
## 957 1 1 0 0 1 0
## 958 1 1 0 1 0 0
## 959 1 1 0 1 0 0
## 960 1 1 0 0 0 1
## 961 1 1 0 0 0 0
## 962 1 1 0 1 0 1
## 963 1 1 0 0 0 1
## 964 1 1 0 1 0 1
## 965 1 1 0 0 0 0
## 966 1 1 1 0 0 1
## 967 1 1 0 0 0 1
## 968 1 1 0 1 0 1
## 969 1 1 0 1 0 1
## 970 1 1 0 1 0 1
## 971 1 1 0 0 0 0
## 972 1 1 0 0 0 1
## 973 1 1 0 0 0 0
## 974 1 1 0 0 0 0
## 975 1 1 0 0 0 0
## 976 1 1 0 0 0 0
## 977 1 1 0 0 0 0
## 978 1 1 0 1 0 1
## 979 1 1 0 0 0 0
## 980 1 1 0 0 0 1
## 981 1 1 0 1 0 1
## 982 1 1 0 1 0 0
## 983 1 1 0 1 0 1
## 984 1 1 0 1 0 1
## 985 1 1 0 0 0 1
## 986 1 1 0 1 0 1
## 987 1 1 0 0 0 0
## 988 1 1 0 0 0 1
## 989 1 1 0 1 0 1
## 990 1 1 0 1 0 0
## 991 1 1 0 0 0 1
## 992 1 1 0 1 1 1
## 993 1 1 0 0 0 1
## 994 1 1 0 0 0 0
## 995 1 1 0 0 0 1
## 996 0 1 1 0 0 0
## 997 1 1 0 0 0 0
## 998 1 1 1 1 0 1
## 999 1 1 0 1 0 1
## 1000 1 1 0 0 0 1
## 1001 1 1 0 1 0 1
## 1002 1 1 0 0 0 0
## 1003 0 1 0 1 0 1
## 1004 1 1 0 0 0 0
## 1005 0 1 0 1 0 1
## 1006 1 1 0 0 0 1
## 1007 1 1 0 0 0 1
## 1008 1 1 0 1 0 1
## 1009 1 1 0 1 0 1
## 1010 1 1 0 0 0 0
## 1011 1 1 0 0 0 1
## 1012 1 1 0 1 0 0
## 1013 1 1 0 1 0 0
## 1014 1 1 0 0 0 1
## 1015 1 1 0 0 0 1
## 1016 1 1 0 1 0 1
## 1017 1 1 1 1 0 1
## 1018 1 1 0 1 0 1
## 1019 1 1 0 1 0 1
## 1020 1 1 0 1 0 1
## 1021 1 1 0 1 0 1
## 1022 1 1 0 0 0 0
## 1023 1 1 0 0 0 1
## 1024 0 1 0 1 0 1
## 1025 1 1 0 1 0 1
## 1026 1 1 0 0 0 0
## 1027 1 1 0 0 0 1
## 1028 1 1 0 1 0 1
## 1029 1 1 0 1 0 1
## 1030 1 1 0 1 0 1
## 1031 1 1 0 1 0 1
## 1032 1 1 0 1 0 1
## 1033 1 1 0 1 0 1
## 1034 1 1 0 1 0 1
## 1035 1 1 0 0 0 1
## 1036 1 1 0 1 0 1
## 1037 1 1 0 1 0 0
## 1038 1 1 0 1 0 1
## 1039 1 1 0 1 0 0
## 1040 1 1 0 1 0 1
## 1041 0 0 0 0 0 0
## 1042 1 1 0 1 0 1
## 1043 1 1 0 1 0 1
## 1044 1 1 0 1 1 1
## 1045 1 1 0 1 0 0
## 1046 1 1 0 1 0 0
## 1047 1 1 0 1 0 1
## 1048 0 1 0 1 0 0
## 1049 1 1 0 1 0 0
## 1050 1 1 0 1 0 1
## 1051 1 1 0 1 0 1
## 1052 1 1 0 1 0 0
## 1053 1 1 0 1 0 0
## 1054 1 1 0 1 0 0
## 1055 1 1 0 1 0 1
## 1056 1 1 0 1 0 1
## 1057 1 1 0 1 0 1
## 1058 1 1 0 1 0 1
## 1059 1 1 0 1 0 1
## 1060 1 1 0 1 0 0
## 1061 1 1 0 1 0 1
## 1062 1 1 0 1 0 1
## 1063 1 1 0 1 0 1
## 1064 1 1 0 1 0 1
## 1065 1 1 0 1 0 0
## 1066 1 1 0 1 0 1
## 1067 1 1 0 1 0 1
## 1068 1 1 0 1 0 1
## 1069 1 1 0 1 0 1
## 1070 1 1 0 0 0 0
## 1071 1 1 0 1 0 1
## 1072 1 1 0 1 0 0
## 1073 1 1 0 1 0 1
## 1074 0 1 0 1 0 1
## 1075 1 1 0 1 0 0
## 1076 1 1 0 1 0 0
## 1077 1 1 0 1 0 0
## 1078 1 1 0 1 0 1
## 1079 1 1 0 1 0 1
## 1080 1 1 0 1 0 1
## 1081 1 1 0 1 0 0
## 1082 1 1 0 1 0 1
## 1083 1 1 0 1 0 1
## 1084 1 1 1 1 0 1
## 1085 1 1 0 1 0 1
## 1086 1 1 0 1 0 1
## 1087 1 1 1 1 0 0
## 1088 1 1 0 1 1 0
## 1089 1 1 0 1 0 1
## 1090 0 1 0 1 0 1
## 1091 0 1 1 1 0 0
## 1092 1 1 0 1 0 1
## 1093 0 1 0 1 0 0
## 1094 1 1 1 1 0 0
## 1095 1 1 0 1 0 1
## 1096 0 1 0 1 0 1
## 1097 1 1 0 1 0 1
## 1098 1 1 0 1 0 1
## 1099 1 1 0 1 0 1
## 1100 1 1 0 1 0 1
## 1101 1 1 0 1 0 1
## 1102 1 1 0 1 0 1
## 1103 1 1 0 1 0 0
## 1104 1 1 0 1 0 1
## 1105 1 1 0 1 0 0
## 1106 1 1 0 0 0 0
## 1107 1 1 0 0 0 0
## 1108 1 1 0 0 0 0
## 1109 1 1 0 0 0 0
## 1110 1 1 0 0 0 0
## 1111 1 1 0 0 0 0
## 1112 1 1 0 1 0 1
## 1113 1 1 0 1 0 1
## 1114 1 1 0 1 0 1
## 1115 1 1 0 0 0 0
## 1116 1 1 0 0 0 0
## 1117 1 1 0 0 0 0
## 1118 1 1 0 0 0 1
## 1119 1 1 0 1 0 1
## 1120 0 1 0 0 0 1
## 1121 1 1 0 1 0 1
## 1122 1 1 0 0 0 1
## 1123 1 1 0 1 0 1
## 1124 1 1 0 1 0 0
## 1125 1 1 0 0 0 0
## 1126 0 1 0 0 0 0
## 1127 1 1 0 1 0 1
## 1128 1 1 0 1 0 1
## 1129 1 1 0 0 0 0
## 1130 1 1 0 0 0 0
## 1131 1 1 0 0 0 0
## 1132 1 1 0 0 0 0
## 1133 1 1 0 1 0 1
## 1134 1 1 0 1 0 0
## 1135 1 1 0 1 0 1
## 1136 1 1 0 1 0 1
## 1137 1 1 0 0 0 1
## 1138 1 1 0 1 0 1
## 1139 1 1 0 0 0 1
## 1140 1 1 0 1 0 1
## 1141 0 1 0 0 0 1
## 1142 1 1 0 1 0 1
## 1143 1 1 0 1 0 1
## 1144 1 1 0 1 0 1
## 1145 1 1 0 1 0 1
## 1146 1 1 0 1 0 1
## 1147 1 1 0 0 0 1
## 1148 1 1 0 1 0 1
## 1149 1 1 0 1 0 1
## 1150 1 1 0 1 0 1
## 1151 1 1 0 1 0 1
## 1152 1 1 0 1 0 0
## 1153 1 1 0 1 0 1
## 1154 1 1 0 0 0 1
## 1155 1 1 0 0 0 1
## 1156 1 1 0 0 0 1
## 1157 1 1 0 1 0 1
## 1158 1 1 0 1 0 1
## 1159 1 1 0 1 0 1
## 1160 1 1 0 1 0 1
## 1161 1 1 0 1 0 1
## 1162 1 1 0 0 0 1
## 1163 1 1 0 1 0 1
## 1164 1 1 0 0 0 0
## 1165 1 1 0 1 0 1
## 1166 1 1 0 0 0 0
## 1167 1 1 0 0 0 0
## 1168 1 1 0 0 0 0
## 1169 1 1 0 0 0 0
## 1170 1 1 0 1 0 1
## 1171 1 1 0 1 0 1
## 1172 1 1 0 1 0 1
## 1173 1 1 0 1 0 1
## 1174 1 1 0 1 0 1
## 1175 1 1 0 1 0 0
## 1176 1 1 0 1 0 0
## 1177 1 1 0 0 0 0
## 1178 1 1 0 1 0 1
## 1179 1 1 0 0 0 1
## 1180 1 1 0 1 0 0
## 1181 1 1 0 0 0 0
## 1182 1 1 0 1 0 1
## 1183 1 1 0 0 0 0
## 1184 1 1 0 1 0 1
## 1185 1 1 0 1 0 1
## 1186 1 1 0 0 0 0
## 1187 1 1 0 1 0 1
## 1188 1 1 0 1 0 1
## 1189 1 1 0 0 0 1
## 1190 1 1 0 0 0 0
## 1191 1 1 0 1 0 0
## 1192 1 1 0 0 0 1
## 1193 1 1 0 1 0 1
## 1194 1 1 0 0 0 1
## 1195 1 1 0 1 0 1
## 1196 1 1 0 1 0 1
## 1197 1 1 0 0 0 0
## 1198 1 1 0 1 0 1
## 1199 1 1 0 0 0 1
## 1200 1 1 0 1 0 1
## 1201 0 1 0 0 0 1
## 1202 1 1 0 1 0 1
## 1203 1 1 0 1 0 1
## 1204 1 1 0 1 0 1
## 1205 1 1 0 1 0 0
## 1206 1 1 0 0 0 1
## 1207 1 1 0 1 0 1
## 1208 1 1 0 1 0 0
## 1209 1 1 0 1 0 0
## 1210 1 1 0 0 0 1
## 1211 0 1 0 1 0 1
## 1212 0 1 0 1 0 1
## 1213 1 1 0 1 0 0
## 1214 1 1 0 1 0 0
## 1215 1 1 0 0 0 1
## 1216 1 1 0 1 0 1
## 1217 1 1 0 1 0 1
## 1218 1 1 0 1 0 1
## 1219 1 1 0 1 0 0
## 1220 1 1 0 0 0 0
## 1221 1 1 0 0 0 0
## 1222 1 1 0 1 0 0
## 1223 1 1 0 0 0 0
## 1224 1 1 1 0 0 1
## 1225 1 1 0 0 0 0
## 1226 1 1 0 1 0 1
## 1227 1 1 0 0 0 0
## 1228 1 1 0 1 0 1
## 1229 1 1 0 1 0 1
## 1230 1 1 0 0 1 0
## 1231 1 1 0 1 0 0
## 1232 1 1 0 1 0 0
## 1233 1 1 0 1 0 1
## 1234 1 1 0 1 0 1
## 1235 1 1 0 0 0 0
## 1236 1 1 0 1 0 1
## 1237 1 1 0 1 0 1
## 1238 1 1 0 0 0 0
## 1239 1 1 0 1 0 0
## 1240 1 1 0 0 0 1
## 1241 1 1 0 1 0 1
## 1242 1 1 0 1 0 1
## 1243 1 1 0 0 0 1
## 1244 0 1 0 1 0 1
## 1245 1 1 0 0 0 1
## 1246 1 1 0 0 0 1
## 1247 1 1 0 0 0 0
## 1248 1 1 0 1 0 1
## 1249 1 1 0 0 0 0
## 1250 1 1 0 1 0 1
## 1251 1 1 0 0 0 1
## 1252 1 1 0 1 0 0
## 1253 1 1 0 0 0 1
## 1254 1 1 1 1 0 1
## 1255 1 1 0 1 0 1
## 1256 1 1 0 0 0 1
## 1257 1 1 0 0 0 0
## 1258 1 1 0 0 0 1
## 1259 1 1 0 0 0 1
## 1260 1 1 0 0 0 0
## 1261 1 1 0 0 0 1
## 1262 1 1 0 0 0 1
## 1263 1 1 0 0 0 1
## 1264 0 1 0 1 0 1
## 1265 1 1 0 1 0 0
## 1266 1 1 0 1 0 1
## 1267 1 1 0 1 0 0
## 1268 1 1 0 1 0 0
## 1269 1 1 0 0 0 0
## 1270 1 1 0 1 0 1
## 1271 1 1 0 1 0 0
## 1272 1 1 0 0 0 0
## 1273 1 1 0 0 0 1
## 1274 1 1 0 1 0 0
## 1275 1 1 0 1 0 1
## 1276 1 1 0 1 0 1
## 1277 1 1 1 1 0 0
## 1278 1 1 0 1 0 1
## 1279 1 1 0 0 0 0
## 1280 1 1 0 1 0 0
## 1281 1 1 0 1 0 0
## 1282 1 1 0 1 0 1
## 1283 1 1 0 1 0 0
## 1284 1 1 0 1 0 1
## 1285 1 1 0 1 0 1
## 1286 1 1 0 1 0 1
## 1287 1 1 0 1 0 1
## 1288 1 1 0 1 0 1
## 1289 1 1 0 1 0 1
## 1290 1 1 0 1 0 1
## 1291 1 1 0 0 0 1
## 1292 1 1 0 1 0 0
## 1293 1 1 0 1 0 1
## 1294 1 1 0 1 0 1
## 1295 1 1 0 1 0 1
## 1296 1 1 0 1 0 1
## 1297 1 1 0 1 0 1
## 1298 0 1 0 1 0 0
## 1299 1 1 0 1 0 0
## 1300 1 1 0 1 0 0
## 1301 1 1 0 1 0 0
## 1302 1 1 0 1 0 0
## 1303 1 1 0 1 0 0
## 1304 1 1 0 1 0 1
## 1305 1 1 0 1 0 0
## 1306 1 1 0 1 0 1
## 1307 1 1 0 1 0 1
## 1308 1 1 0 1 0 1
## 1309 1 1 0 1 0 1
## 1310 1 1 0 1 0 1
## 1311 1 1 0 1 0 1
## 1312 1 1 0 1 0 1
## 1313 1 1 0 1 0 1
## 1314 1 1 0 1 0 1
## 1315 1 1 0 0 0 0
## 1316 1 1 0 1 0 1
## 1317 1 1 0 1 0 1
## 1318 1 1 0 1 0 0
## 1319 1 1 0 1 0 1
## 1320 1 1 0 1 0 1
## 1321 1 1 0 1 0 0
## 1322 1 1 0 1 0 1
## 1323 1 1 1 1 0 1
## 1324 1 1 0 1 0 1
## 1325 1 1 0 1 0 1
## 1326 0 1 0 1 0 1
## 1327 1 1 0 1 0 1
## 1328 0 1 0 1 0 1
## 1329 1 1 0 1 0 1
## 1330 1 1 0 1 0 0
## 1331 1 1 0 1 0 0
## 1332 1 1 0 1 0 0
## 1333 1 1 0 1 0 1
## 1334 1 1 0 1 0 1
## 1335 1 1 0 1 0 1
## 1336 1 1 0 1 0 0
## 1337 1 1 0 1 0 1
## 1338 1 1 0 1 0 1
## 1339 1 1 0 1 0 0
## 1340 1 1 0 1 0 0
## 1341 1 1 0 1 0 1
## 1342 1 1 0 1 0 0
## 1343 1 1 0 1 0 1
## 1344 1 1 0 1 0 1
## 1345 1 1 0 1 0 1
## 1346 1 1 0 1 1 0
## 1347 1 1 0 1 1 0
## 1348 0 1 1 1 0 0
## 1349 1 1 0 1 0 1
## 1350 0 1 1 1 0 0
## 1351 1 1 0 1 0 1
## 1352 0 1 0 1 0 1
## 1353 1 1 0 1 0 0
## 1354 1 1 0 1 0 0
## 1355 1 1 0 1 0 0
## 1356 1 1 0 1 0 0
## 1357 1 1 0 1 0 1
## 1358 1 1 0 1 0 1
## 1359 1 1 0 1 0 0
## 1360 1 1 0 1 0 1
## 1361 0 1 0 0 0 1
## 1362 1 1 0 1 0 0
## 1363 1 1 0 1 0 0
## 1364 1 1 0 1 0 1
## 1365 1 1 0 1 0 1
## 1366 1 1 0 1 0 0
## 1367 1 1 0 1 0 1
## 1368 1 1 0 1 0 1
## 1369 1 1 0 1 0 1
## 1370 1 1 0 1 0 1
## 1371 1 1 0 1 0 1
## 1372 0 1 0 0 0 1
## 1373 1 1 0 1 0 0
## 1374 1 1 0 1 0 0
## 1375 0 1 0 0 0 1
## 1376 1 1 0 1 0 1
## 1377 1 1 0 1 0 1
## 1378 1 1 0 0 0 1
## 1379 1 1 0 1 0 1
## 1380 1 1 0 0 0 0
## 1381 1 1 0 0 0 0
## 1382 1 1 0 0 0 0
## 1383 1 1 0 1 0 1
## 1384 1 1 0 1 0 1
## 1385 1 1 0 1 0 1
## 1386 1 1 0 0 0 1
## 1387 1 1 0 1 0 1
## 1388 1 1 0 0 0 0
## 1389 1 1 0 1 0 1
## 1390 1 1 0 1 0 1
## 1391 1 1 0 1 0 1
## 1392 1 1 0 1 0 0
## 1393 1 1 0 0 0 0
## 1394 1 1 0 1 0 1
## 1395 1 1 0 1 0 1
## 1396 0 1 0 0 0 1
## 1397 1 1 0 0 0 1
## 1398 1 1 0 1 0 1
## 1399 1 1 0 0 0 1
## 1400 1 1 0 1 0 1
## 1401 1 1 0 1 0 1
## 1402 1 1 0 1 0 1
## 1403 1 1 0 1 0 1
## 1404 0 1 1 0 0 0
## 1405 1 1 0 1 0 1
## 1406 1 1 0 0 0 1
## 1407 1 1 0 0 0 1
## 1408 1 1 0 1 0 1
## 1409 1 1 0 0 0 1
## 1410 1 1 0 1 0 1
## 1411 1 1 0 1 0 1
## 1412 1 1 0 0 0 0
## 1413 1 1 0 0 0 0
## 1414 1 1 0 1 0 0
## 1415 1 1 0 0 0 0
## 1416 1 1 0 1 0 1
## 1417 1 1 0 1 0 0
## 1418 1 1 0 1 0 0
## 1419 1 1 0 1 0 1
## 1420 1 1 0 1 0 0
## 1421 1 1 0 1 0 1
## 1422 1 1 0 1 0 1
## 1423 1 1 0 1 0 1
## 1424 1 1 0 1 0 1
## 1425 1 1 0 1 0 1
## 1426 1 1 0 1 0 1
## 1427 1 1 0 1 0 1
## 1428 1 1 0 1 0 1
## 1429 1 1 1 1 0 1
## 1430 1 1 0 1 0 1
## 1431 1 1 0 1 0 1
## 1432 1 1 0 0 0 1
## 1433 1 1 0 0 0 0
## 1434 1 1 0 1 0 1
## 1435 1 1 0 0 0 1
## 1436 1 1 0 0 0 1
## 1437 1 1 0 1 0 1
## 1438 1 1 0 0 0 1
## 1439 1 1 0 0 0 1
## 1440 1 1 0 0 0 1
## 1441 1 1 0 0 0 1
## 1442 1 1 0 0 0 1
## 1443 1 1 0 1 0 1
## 1444 1 1 0 1 0 1
## 1445 1 1 0 1 0 1
## 1446 0 1 0 0 0 1
## 1447 0 1 0 0 0 1
## 1448 1 1 1 1 0 1
## 1449 1 1 0 1 0 1
## 1450 1 1 0 1 0 1
## 1451 1 1 0 0 0 1
## 1452 0 1 0 1 0 1
## 1453 1 1 0 1 0 1
## 1454 1 1 0 0 0 0
## 1455 0 0 0 0 0 0
## 1456 1 1 0 0 0 0
## 1457 1 1 0 1 0 1
## 1458 1 1 0 1 0 1
## 1459 1 1 0 1 0 1
## 1460 1 1 0 0 0 1
## 1461 1 1 0 0 0 0
## 1462 1 1 0 1 0 1
## 1463 1 1 0 0 0 1
## 1464 1 1 0 1 0 1
## 1465 1 1 0 1 0 1
## 1466 1 1 0 0 0 1
## 1467 1 1 0 0 0 1
## 1468 1 1 0 0 0 1
## 1469 1 1 0 0 0 0
## 1470 1 1 0 1 0 1
## 1471 1 1 0 1 0 1
## 1472 1 1 0 1 0 1
## 1473 1 1 0 1 0 1
## 1474 1 1 0 1 0 1
## 1475 1 1 0 0 0 0
## 1476 1 1 0 0 0 0
## 1477 1 1 0 1 0 1
## 1478 1 1 0 1 0 1
## 1479 1 1 0 0 0 1
## 1480 1 1 0 1 0 1
## 1481 1 1 0 1 0 1
## 1482 0 1 0 0 0 0
## 1483 1 1 0 1 0 1
## 1484 1 0 0 1 0 0
## 1485 1 1 0 0 0 1
## 1486 1 1 0 1 0 1
## 1487 1 1 0 0 0 0
## 1488 1 1 0 0 0 0
## 1489 1 1 0 1 0 1
## 1490 1 1 0 0 0 0
## 1491 1 1 0 0 0 0
## 1492 1 1 0 0 0 0
## 1493 1 1 0 0 0 0
## 1494 1 1 0 0 0 0
## 1495 1 1 0 1 0 1
## 1496 0 1 0 0 0 0
## 1497 1 1 0 0 0 1
## 1498 1 1 0 0 0 0
## 1499 1 1 0 1 0 0
## 1500 1 1 0 1 0 1
## 1501 1 1 0 1 0 1
## 1502 1 1 0 0 0 1
## 1503 1 1 0 0 0 1
## 1504 1 1 0 1 0 1
## 1505 1 1 0 0 0 1
## 1506 1 1 0 1 0 1
## 1507 1 1 0 0 0 0
## 1508 1 1 0 1 0 0
## 1509 1 1 0 0 0 1
## 1510 1 1 0 1 0 1
## 1511 1 1 0 1 0 1
## 1512 1 1 0 1 0 0
## 1513 1 1 0 1 0 0
## 1514 1 1 0 0 0 0
## 1515 1 1 0 0 0 0
## 1516 1 1 0 0 0 1
## 1517 1 1 0 1 0 1
## 1518 1 1 0 0 0 1
## 1519 1 1 0 1 0 1
## 1520 1 1 0 1 0 1
## 1521 0 1 0 0 0 0
## 1522 1 1 0 0 0 0
## 1523 1 1 0 0 0 0
## 1524 1 1 0 1 0 1
## 1525 1 1 0 1 0 1
## 1526 1 1 0 1 0 1
## 1527 1 1 0 1 0 0
## 1528 1 1 0 1 0 1
## 1529 1 1 0 0 0 1
## 1530 1 1 0 0 0 0
## 1531 1 1 0 0 0 1
## 1532 1 1 0 1 0 1
## 1533 1 1 0 1 0 1
## 1534 1 1 0 0 0 1
## 1535 1 1 0 1 0 1
## 1536 1 1 0 0 0 1
## 1537 1 1 0 0 0 1
## 1538 1 1 0 0 0 1
## hv_manual_off_gov hv_manual_gov hv_manual_work_email no_of_vf
## 1 0 0 0 2
## 2 1 1 0 7
## 3 0 0 0 2
## 4 1 1 0 6
## 5 1 1 0 7
## 6 0 0 0 3
## 7 1 1 1 7
## 8 0 0 0 4
## 9 0 1 0 6
## 10 0 0 1 4
## 11 1 1 0 5
## 12 1 1 0 5
## 13 0 1 0 7
## 14 0 0 0 2
## 15 1 1 0 6
## 16 1 1 0 4
## 17 0 0 0 2
## 18 0 1 1 7
## 19 0 0 0 4
## 20 0 0 0 4
## 21 1 1 0 6
## 22 1 1 0 7
## 23 1 1 0 8
## 24 1 1 0 6
## 25 1 1 0 7
## 26 0 1 0 5
## 27 1 1 0 7
## 28 0 1 1 7
## 29 1 1 0 7
## 30 0 0 0 4
## 31 1 1 0 7
## 32 1 1 0 6
## 33 1 1 0 6
## 34 1 1 0 9
## 35 0 0 0 2
## 36 0 0 0 4
## 37 1 1 0 7
## 38 1 1 0 5
## 39 1 1 0 5
## 40 0 0 0 2
## 41 1 1 0 9
## 42 0 0 0 4
## 43 1 1 0 7
## 44 0 1 0 7
## 45 1 1 0 6
## 46 1 1 0 6
## 47 1 1 0 6
## 48 1 1 0 9
## 49 1 1 0 3
## 50 0 0 0 2
## 51 1 1 0 7
## 52 0 0 0 2
## 53 1 1 0 7
## 54 0 1 0 7
## 55 0 0 0 4
## 56 1 1 0 3
## 57 0 1 0 7
## 58 1 1 0 8
## 59 1 1 0 7
## 60 1 1 0 5
## 61 1 1 0 4
## 62 1 1 0 3
## 63 0 1 0 7
## 64 0 1 0 6
## 65 1 1 0 7
## 66 0 1 0 7
## 67 0 0 1 4
## 68 1 1 0 6
## 69 0 1 0 4
## 70 0 0 0 2
## 71 1 1 0 7
## 72 1 1 0 6
## 73 1 1 1 10
## 74 1 1 0 3
## 75 1 1 0 7
## 76 1 1 0 6
## 77 1 1 0 6
## 78 0 1 0 4
## 79 1 1 1 6
## 80 1 1 0 3
## 81 1 1 0 3
## 82 1 1 0 3
## 83 0 1 0 5
## 84 0 0 0 3
## 85 0 0 1 3
## 86 0 0 0 2
## 87 1 1 0 6
## 88 1 1 0 6
## 89 1 1 0 6
## 90 0 0 0 3
## 91 0 1 0 5
## 92 1 1 0 7
## 93 1 1 0 7
## 94 1 1 0 5
## 95 0 1 0 4
## 96 1 1 0 3
## 97 1 1 0 3
## 98 1 1 0 3
## 99 1 1 0 7
## 100 1 1 0 6
## 101 1 1 0 5
## 102 1 1 0 7
## 103 1 1 0 7
## 104 1 1 0 7
## 105 1 1 0 7
## 106 1 1 0 3
## 107 1 1 1 10
## 108 1 1 0 3
## 109 0 1 0 7
## 110 1 1 0 7
## 111 0 0 0 4
## 112 0 0 0 3
## 113 1 1 0 7
## 114 0 0 0 3
## 115 0 0 0 3
## 116 1 1 0 7
## 117 1 1 0 7
## 118 0 0 0 1
## 119 0 0 1 3
## 120 1 1 0 7
## 121 0 1 0 7
## 122 1 1 0 3
## 123 0 1 0 4
## 124 1 1 0 7
## 125 1 1 0 7
## 126 1 1 0 7
## 127 1 1 0 7
## 128 1 1 1 11
## 129 0 1 0 4
## 130 1 1 0 3
## 131 0 1 0 7
## 132 0 1 0 7
## 133 0 1 0 6
## 134 1 1 0 7
## 135 1 1 0 6
## 136 1 1 0 7
## 137 1 1 0 7
## 138 1 1 0 9
## 139 0 1 0 6
## 140 1 1 0 7
## 141 0 0 0 4
## 142 0 1 0 5
## 143 1 1 1 7
## 144 1 1 0 8
## 145 0 0 0 2
## 146 0 1 0 7
## 147 1 1 0 7
## 148 1 1 0 6
## 149 0 0 1 4
## 150 1 1 0 5
## 151 0 0 1 3
## 152 1 1 0 6
## 153 0 0 0 3
## 154 1 1 0 8
## 155 1 1 0 7
## 156 0 0 0 2
## 157 0 0 0 4
## 158 1 1 0 7
## 159 1 1 0 9
## 160 0 1 0 6
## 161 0 0 1 4
## 162 1 1 0 5
## 163 0 1 0 4
## 164 0 0 0 2
## 165 0 1 0 7
## 166 0 0 0 4
## 167 0 0 0 4
## 168 1 1 0 7
## 169 0 1 0 6
## 170 0 1 0 5
## 171 0 1 0 5
## 172 0 0 0 3
## 173 0 0 0 2
## 174 0 0 0 2
## 175 0 0 0 4
## 176 0 0 0 4
## 177 0 0 0 4
## 178 0 1 0 7
## 179 1 1 0 6
## 180 1 1 1 7
## 181 0 0 0 4
## 182 0 1 0 5
## 183 1 1 0 5
## 184 1 1 0 6
## 185 1 1 1 10
## 186 1 1 0 7
## 187 1 1 0 7
## 188 0 1 0 6
## 189 0 1 0 6
## 190 1 1 0 6
## 191 0 0 0 4
## 192 1 1 0 6
## 193 0 0 1 3
## 194 0 0 0 2
## 195 1 1 0 6
## 196 0 0 0 2
## 197 0 1 0 6
## 198 0 1 0 5
## 199 1 1 0 6
## 200 1 1 0 6
## 201 1 1 1 8
## 202 1 1 0 6
## 203 1 1 0 6
## 204 0 0 1 3
## 205 0 1 0 6
## 206 0 0 0 4
## 207 0 0 0 4
## 208 1 1 0 7
## 209 1 1 0 5
## 210 0 0 0 3
## 211 0 0 0 4
## 212 0 0 1 4
## 213 0 1 0 7
## 214 1 1 0 7
## 215 1 1 0 7
## 216 0 1 0 6
## 217 1 1 0 3
## 218 1 1 0 7
## 219 1 1 0 6
## 220 0 0 0 4
## 221 0 0 0 2
## 222 0 0 0 2
## 223 0 0 0 4
## 224 1 1 1 8
## 225 1 1 1 10
## 226 0 1 0 5
## 227 0 0 0 2
## 228 1 1 0 9
## 229 0 0 0 2
## 230 1 1 0 7
## 231 0 1 0 7
## 232 0 0 0 2
## 233 1 1 0 6
## 234 1 1 1 8
## 235 1 1 1 8
## 236 1 1 0 7
## 237 0 0 0 2
## 238 1 1 1 5
## 239 0 0 0 5
## 240 0 0 0 1
## 241 0 1 0 6
## 242 0 1 0 7
## 243 0 1 0 6
## 244 1 1 0 7
## 245 0 0 0 3
## 246 0 1 0 7
## 247 0 0 1 3
## 248 0 0 0 2
## 249 1 1 0 6
## 250 0 0 0 3
## 251 1 1 0 8
## 252 1 1 1 9
## 253 1 1 0 7
## 254 0 0 0 3
## 255 1 1 0 6
## 256 1 1 0 7
## 257 0 0 0 3
## 258 1 1 0 5
## 259 0 0 1 3
## 260 1 1 0 7
## 261 1 1 0 7
## 262 0 0 1 3
## 263 0 0 1 5
## 264 1 1 0 8
## 265 0 1 0 7
## 266 0 0 0 4
## 267 1 1 0 6
## 268 1 1 0 6
## 269 1 1 0 6
## 270 0 0 0 4
## 271 1 1 0 5
## 272 1 1 1 9
## 273 1 1 1 5
## 274 0 0 1 4
## 275 1 1 0 8
## 276 0 0 0 4
## 277 1 1 0 8
## 278 0 0 0 4
## 279 1 1 0 8
## 280 0 0 1 5
## 281 0 1 0 4
## 282 1 1 0 5
## 283 0 0 0 3
## 284 1 1 0 6
## 285 0 0 1 3
## 286 0 1 0 6
## 287 0 1 0 7
## 288 1 1 0 7
## 289 0 0 0 2
## 290 0 0 0 2
## 291 0 0 0 2
## 292 0 0 0 4
## 293 0 0 0 3
## 294 1 1 0 7
## 295 0 0 0 4
## 296 1 1 0 8
## 297 0 0 1 4
## 298 0 0 0 4
## 299 0 0 1 3
## 300 1 1 1 10
## 301 0 0 1 3
## 302 1 1 1 9
## 303 1 1 0 7
## 304 1 1 1 5
## 305 0 0 0 4
## 306 0 0 0 4
## 307 0 0 1 4
## 308 0 0 0 3
## 309 1 1 1 9
## 310 1 1 0 8
## 311 1 1 0 6
## 312 0 0 0 4
## 313 0 1 0 7
## 314 0 0 0 2
## 315 0 0 0 4
## 316 0 0 0 2
## 317 0 0 0 3
## 318 1 1 0 8
## 319 0 0 0 3
## 320 1 1 1 9
## 321 1 1 1 5
## 322 1 1 0 4
## 323 1 1 0 7
## 324 1 1 0 7
## 325 0 1 0 5
## 326 0 1 0 7
## 327 0 0 0 2
## 328 1 1 1 9
## 329 1 1 0 7
## 330 1 1 0 6
## 331 0 0 1 5
## 332 1 1 1 5
## 333 0 0 0 4
## 334 0 0 0 5
## 335 1 1 1 7
## 336 0 0 0 2
## 337 0 0 0 2
## 338 1 1 1 7
## 339 1 1 0 6
## 340 1 1 0 6
## 341 0 0 0 2
## 342 0 1 0 7
## 343 0 0 0 4
## 344 0 0 0 3
## 345 0 0 0 3
## 346 0 0 0 3
## 347 0 0 0 2
## 348 0 0 1 3
## 349 0 0 1 3
## 350 1 1 0 7
## 351 1 1 0 7
## 352 1 1 0 7
## 353 1 1 0 7
## 354 0 1 0 7
## 355 1 1 1 5
## 356 0 1 0 7
## 357 0 0 0 4
## 358 0 0 1 4
## 359 0 1 0 8
## 360 0 0 0 3
## 361 1 1 0 7
## 362 0 0 0 4
## 363 1 1 1 7
## 364 0 1 0 4
## 365 0 0 0 3
## 366 0 0 0 2
## 367 1 1 0 7
## 368 0 1 0 4
## 369 0 0 0 4
## 370 0 0 0 4
## 371 1 1 0 6
## 372 1 1 0 7
## 373 1 1 0 8
## 374 1 1 1 5
## 375 1 1 0 6
## 376 1 1 0 6
## 377 1 1 0 8
## 378 0 0 1 4
## 379 0 0 0 3
## 380 0 0 0 2
## 381 0 0 0 4
## 382 0 0 0 2
## 383 0 0 0 2
## 384 1 1 0 5
## 385 1 1 0 5
## 386 1 1 0 7
## 387 0 0 0 1
## 388 1 1 0 7
## 389 1 1 0 5
## 390 1 1 0 7
## 391 0 1 0 7
## 392 1 1 1 5
## 393 0 0 0 3
## 394 1 1 0 6
## 395 0 0 0 3
## 396 1 1 0 8
## 397 0 1 0 5
## 398 1 1 1 7
## 399 1 1 0 6
## 400 1 1 0 6
## 401 0 1 0 7
## 402 0 0 1 4
## 403 0 0 0 3
## 404 1 1 0 7
## 405 0 0 0 2
## 406 0 0 1 4
## 407 1 1 0 4
## 408 0 0 1 3
## 409 0 0 1 6
## 410 1 1 0 5
## 411 1 1 0 7
## 412 1 1 0 6
## 413 1 1 1 5
## 414 1 1 1 5
## 415 0 0 0 4
## 416 0 0 0 4
## 417 1 1 1 5
## 418 0 0 0 4
## 419 0 0 0 3
## 420 0 1 0 5
## 421 0 1 0 5
## 422 0 0 0 4
## 423 1 1 1 5
## 424 0 0 0 4
## 425 1 1 0 8
## 426 1 1 0 6
## 427 1 1 0 7
## 428 0 0 1 4
## 429 0 0 1 4
## 430 1 1 0 7
## 431 0 0 1 3
## 432 0 1 0 6
## 433 0 0 0 3
## 434 0 0 0 3
## 435 0 0 0 2
## 436 0 0 0 2
## 437 1 1 0 5
## 438 1 1 0 7
## 439 0 0 1 3
## 440 1 1 0 7
## 441 1 1 0 4
## 442 0 1 0 5
## 443 0 0 0 4
## 444 1 1 0 8
## 445 0 0 0 3
## 446 0 0 0 3
## 447 1 1 0 8
## 448 1 1 1 6
## 449 0 0 0 3
## 450 0 0 0 3
## 451 1 1 0 5
## 452 1 1 0 6
## 453 0 0 0 2
## 454 0 0 0 2
## 455 1 1 0 6
## 456 0 0 0 3
## 457 1 1 0 5
## 458 1 1 0 5
## 459 0 1 0 7
## 460 0 1 0 7
## 461 0 0 0 3
## 462 0 0 0 1
## 463 0 1 0 6
## 464 1 1 1 6
## 465 0 0 0 2
## 466 1 1 0 7
## 467 0 0 0 3
## 468 1 1 0 5
## 469 1 1 0 8
## 470 1 1 0 6
## 471 1 1 0 4
## 472 0 0 0 4
## 473 0 0 0 3
## 474 0 0 0 4
## 475 0 0 0 4
## 476 0 0 0 4
## 477 1 1 0 5
## 478 0 0 1 4
## 479 0 0 0 4
## 480 1 1 1 8
## 481 1 1 0 4
## 482 1 1 1 7
## 483 0 0 1 3
## 484 0 0 1 4
## 485 0 0 0 2
## 486 0 0 0 3
## 487 0 0 0 2
## 488 0 0 0 2
## 489 0 0 1 3
## 490 1 1 0 7
## 491 0 0 1 3
## 492 0 0 1 4
## 493 0 0 0 2
## 494 1 1 0 7
## 495 0 0 1 4
## 496 1 1 0 8
## 497 0 0 0 2
## 498 1 1 0 8
## 499 1 1 0 7
## 500 1 1 1 5
## 501 0 0 0 4
## 502 0 0 0 4
## 503 0 1 0 7
## 504 0 0 0 5
## 505 1 1 0 7
## 506 1 1 0 6
## 507 0 0 0 3
## 508 0 0 0 3
## 509 0 0 0 3
## 510 1 1 1 6
## 511 1 1 0 8
## 512 0 0 0 3
## 513 1 1 1 8
## 514 1 1 0 5
## 515 0 0 0 2
## 516 0 0 0 3
## 517 0 0 0 2
## 518 0 0 0 2
## 519 0 1 0 5
## 520 0 0 0 3
## 521 0 1 0 4
## 522 0 0 1 4
## 523 0 0 1 3
## 524 0 0 1 3
## 525 1 1 0 7
## 526 1 1 0 7
## 527 1 1 0 7
## 528 0 0 0 2
## 529 1 1 0 4
## 530 0 0 0 3
## 531 1 1 0 4
## 532 0 0 0 3
## 533 1 1 0 4
## 534 0 0 0 3
## 535 1 1 0 4
## 536 1 1 0 7
## 537 0 0 0 4
## 538 0 1 0 7
## 539 1 1 0 6
## 540 0 1 0 5
## 541 0 0 0 3
## 542 0 0 0 3
## 543 0 0 0 5
## 544 0 0 1 6
## 545 0 0 0 3
## 546 0 0 0 4
## 547 1 1 0 8
## 548 1 1 0 6
## 549 0 0 1 4
## 550 1 1 1 6
## 551 0 0 0 4
## 552 0 0 0 4
## 553 0 0 0 4
## 554 1 1 0 4
## 555 0 0 0 2
## 556 0 0 0 2
## 557 1 1 0 6
## 558 0 0 0 1
## 559 1 1 0 5
## 560 1 1 0 7
## 561 1 1 0 7
## 562 1 1 0 6
## 563 1 1 0 7
## 564 0 0 1 5
## 565 1 1 0 8
## 566 0 0 0 4
## 567 1 1 0 6
## 568 0 0 0 4
## 569 1 1 0 6
## 570 1 1 1 5
## 571 0 0 0 3
## 572 1 1 1 5
## 573 1 1 0 8
## 574 1 1 0 5
## 575 0 0 1 4
## 576 1 1 0 9
## 577 1 1 1 7
## 578 0 0 0 3
## 579 0 0 0 3
## 580 1 1 0 7
## 581 0 0 0 3
## 582 0 0 0 4
## 583 1 1 0 7
## 584 1 1 0 6
## 585 1 1 0 4
## 586 0 0 1 3
## 587 1 1 0 7
## 588 1 1 0 7
## 589 0 0 1 5
## 590 1 1 0 7
## 591 0 0 0 2
## 592 0 0 0 4
## 593 0 0 0 4
## 594 0 0 0 4
## 595 1 1 0 8
## 596 0 0 0 3
## 597 0 0 0 4
## 598 0 0 0 4
## 599 1 1 0 7
## 600 1 1 0 7
## 601 1 1 0 6
## 602 0 0 0 3
## 603 1 1 0 6
## 604 0 0 0 4
## 605 1 1 0 5
## 606 0 0 1 4
## 607 0 0 0 4
## 608 1 1 1 8
## 609 1 1 0 4
## 610 0 0 0 3
## 611 0 0 0 3
## 612 0 0 0 4
## 613 0 0 1 3
## 614 0 0 0 4
## 615 0 0 0 2
## 616 1 1 0 5
## 617 1 1 0 5
## 618 0 0 0 1
## 619 0 0 0 2
## 620 1 1 0 7
## 621 0 0 1 3
## 622 1 1 0 5
## 623 1 1 0 8
## 624 1 1 0 6
## 625 1 1 0 8
## 626 0 0 1 3
## 627 0 0 0 4
## 628 1 1 0 9
## 629 1 1 0 4
## 630 0 0 0 4
## 631 1 1 0 4
## 632 0 1 1 6
## 633 0 1 1 6
## 634 0 1 0 7
## 635 0 1 0 5
## 636 0 0 0 3
## 637 0 0 0 4
## 638 0 1 0 6
## 639 0 1 0 5
## 640 0 1 1 6
## 641 1 1 0 9
## 642 1 1 1 6
## 643 1 1 0 5
## 644 1 1 0 6
## 645 0 0 1 4
## 646 0 0 0 4
## 647 0 0 0 4
## 648 1 1 0 6
## 649 1 1 0 6
## 650 1 1 1 7
## 651 0 0 0 4
## 652 1 1 0 6
## 653 0 1 0 4
## 654 0 0 0 4
## 655 0 0 0 2
## 656 0 0 0 4
## 657 1 1 0 7
## 658 0 0 0 2
## 659 0 0 0 4
## 660 0 0 0 2
## 661 1 1 0 7
## 662 0 0 0 4
## 663 0 0 0 2
## 664 0 0 0 2
## 665 1 1 0 8
## 666 0 1 0 7
## 667 0 0 0 4
## 668 1 1 0 5
## 669 1 1 0 4
## 670 1 1 0 5
## 671 1 1 0 7
## 672 1 1 0 7
## 673 1 1 0 5
## 674 0 0 0 3
## 675 1 1 0 5
## 676 0 0 0 2
## 677 1 1 0 7
## 678 0 0 0 1
## 679 1 1 0 7
## 680 0 0 0 3
## 681 0 0 0 4
## 682 0 0 0 3
## 683 0 0 0 4
## 684 1 1 0 5
## 685 1 1 0 8
## 686 0 1 0 5
## 687 1 1 1 5
## 688 1 1 0 8
## 689 0 0 0 4
## 690 0 1 0 6
## 691 0 1 0 5
## 692 1 1 0 8
## 693 0 0 0 3
## 694 1 1 0 4
## 695 0 1 0 6
## 696 0 0 0 2
## 697 0 0 0 3
## 698 0 0 0 4
## 699 1 1 1 9
## 700 0 0 0 3
## 701 0 0 0 2
## 702 1 1 1 9
## 703 1 1 0 6
## 704 0 1 0 5
## 705 1 1 0 7
## 706 0 0 0 4
## 707 1 1 1 6
## 708 0 0 0 4
## 709 0 0 1 4
## 710 0 0 0 4
## 711 1 1 1 7
## 712 0 0 1 3
## 713 0 0 0 4
## 714 1 1 1 7
## 715 0 0 0 4
## 716 0 0 0 3
## 717 0 0 0 2
## 718 1 1 0 8
## 719 0 0 0 1
## 720 0 0 0 2
## 721 0 0 0 2
## 722 0 0 0 2
## 723 0 0 0 3
## 724 1 1 0 7
## 725 1 1 1 7
## 726 1 1 0 6
## 727 1 1 0 8
## 728 0 0 1 3
## 729 1 1 0 8
## 730 1 1 0 7
## 731 1 1 0 7
## 732 1 1 0 7
## 733 1 1 0 5
## 734 0 0 0 4
## 735 0 0 0 2
## 736 0 1 0 5
## 737 0 1 0 4
## 738 1 1 0 5
## 739 1 1 0 7
## 740 0 0 0 2
## 741 0 0 0 2
## 742 1 1 0 5
## 743 0 0 1 4
## 744 1 1 0 8
## 745 1 1 1 9
## 746 1 1 1 5
## 747 0 1 0 5
## 748 0 1 1 6
## 749 0 1 1 6
## 750 0 1 0 7
## 751 1 1 0 6
## 752 1 1 0 8
## 753 0 1 0 5
## 754 0 1 0 5
## 755 0 0 0 4
## 756 0 0 0 3
## 757 1 1 0 7
## 758 0 0 0 4
## 759 0 1 1 6
## 760 0 0 0 4
## 761 0 0 0 4
## 762 1 1 0 7
## 763 0 0 0 3
## 764 1 1 0 6
## 765 0 0 0 4
## 766 1 1 0 5
## 767 0 0 0 3
## 768 1 1 0 4
## 769 0 0 1 4
## 770 0 0 0 4
## 771 0 0 1 4
## 772 1 1 1 6
## 773 0 0 0 4
## 774 0 1 0 5
## 775 0 1 0 5
## 776 0 0 0 3
## 777 1 1 0 4
## 778 1 1 0 7
## 779 0 0 0 3
## 780 1 1 0 6
## 781 1 1 0 4
## 782 0 0 0 4
## 783 0 0 0 2
## 784 1 1 0 7
## 785 0 0 0 4
## 786 0 0 0 4
## 787 0 0 0 2
## 788 0 1 0 5
## 789 0 0 0 2
## 790 1 1 0 7
## 791 0 0 0 1
## 792 0 0 0 4
## 793 1 1 0 4
## 794 1 1 0 6
## 795 0 1 0 7
## 796 1 1 0 8
## 797 1 1 0 7
## 798 0 0 1 4
## 799 0 0 0 2
## 800 1 1 0 7
## 801 1 1 0 8
## 802 0 0 0 2
## 803 0 0 0 3
## 804 1 1 0 6
## 805 1 1 0 6
## 806 1 1 0 7
## 807 1 1 0 6
## 808 0 0 0 2
## 809 1 1 0 6
## 810 0 0 0 4
## 811 0 0 0 3
## 812 0 0 0 1
## 813 0 0 0 1
## 814 0 0 1 5
## 815 1 1 1 9
## 816 0 1 0 5
## 817 1 1 0 4
## 818 0 1 0 6
## 819 1 1 0 6
## 820 0 1 1 6
## 821 0 0 0 4
## 822 1 1 1 9
## 823 0 1 0 6
## 824 1 1 0 6
## 825 0 0 1 4
## 826 0 0 1 4
## 827 0 1 0 5
## 828 0 0 0 3
## 829 1 1 0 8
## 830 0 0 0 3
## 831 1 1 0 6
## 832 1 1 1 5
## 833 0 0 0 4
## 834 0 0 0 2
## 835 0 0 0 3
## 836 0 0 0 3
## 837 0 0 0 3
## 838 0 0 0 3
## 839 0 0 0 4
## 840 0 0 0 4
## 841 1 1 0 7
## 842 0 0 0 4
## 843 1 1 0 7
## 844 0 1 0 5
## 845 1 1 0 5
## 846 0 1 0 5
## 847 0 0 0 4
## 848 1 1 0 6
## 849 0 0 0 3
## 850 1 1 0 8
## 851 1 1 1 6
## 852 0 0 1 4
## 853 1 1 0 7
## 854 1 1 0 6
## 855 1 1 1 7
## 856 0 0 0 4
## 857 0 0 0 3
## 858 1 1 0 4
## 859 0 1 0 7
## 860 0 0 0 2
## 861 0 1 0 6
## 862 1 1 1 7
## 863 0 0 0 4
## 864 0 0 0 3
## 865 0 0 0 2
## 866 0 0 0 4
## 867 0 1 0 5
## 868 0 0 0 4
## 869 0 0 0 4
## 870 0 0 0 3
## 871 0 0 1 3
## 872 0 1 0 5
## 873 0 0 0 2
## 874 0 0 1 3
## 875 0 1 0 7
## 876 0 0 0 1
## 877 0 0 0 1
## 878 1 1 0 5
## 879 1 1 0 6
## 880 1 1 0 6
## 881 1 1 0 7
## 882 0 1 0 5
## 883 1 1 1 7
## 884 0 0 0 4
## 885 1 1 0 6
## 886 1 1 0 7
## 887 1 1 0 7
## 888 1 1 0 7
## 889 0 0 1 3
## 890 0 1 0 7
## 891 1 1 0 5
## 892 1 1 0 7
## 893 1 1 1 7
## 894 0 0 0 2
## 895 1 1 0 7
## 896 0 0 0 1
## 897 1 1 0 6
## 898 1 1 0 5
## 899 0 0 0 2
## 900 1 1 0 7
## 901 0 0 1 4
## 902 0 0 0 2
## 903 1 1 0 5
## 904 1 1 0 8
## 905 1 1 0 8
## 906 1 1 1 9
## 907 0 1 0 5
## 908 0 0 0 3
## 909 0 0 0 5
## 910 0 1 1 5
## 911 1 1 0 8
## 912 0 0 0 4
## 913 1 1 1 9
## 914 0 1 0 6
## 915 0 1 0 6
## 916 1 1 0 6
## 917 0 1 0 5
## 918 0 1 0 5
## 919 0 1 0 5
## 920 1 1 0 6
## 921 1 1 0 6
## 922 0 0 0 3
## 923 0 1 0 5
## 924 1 1 0 8
## 925 1 1 0 6
## 926 0 0 0 4
## 927 0 0 0 3
## 928 1 1 0 7
## 929 0 1 0 6
## 930 0 1 0 5
## 931 1 1 0 7
## 932 0 1 0 5
## 933 0 0 0 3
## 934 0 1 0 6
## 935 0 0 0 4
## 936 1 1 0 6
## 937 1 1 0 6
## 938 0 1 0 6
## 939 1 1 0 4
## 940 1 1 1 7
## 941 0 0 0 3
## 942 0 0 0 3
## 943 0 0 0 4
## 944 1 1 0 8
## 945 0 0 0 3
## 946 1 1 0 8
## 947 0 0 1 4
## 948 0 0 0 2
## 949 0 0 0 1
## 950 0 1 0 5
## 951 0 0 0 4
## 952 1 1 1 7
## 953 1 1 1 7
## 954 1 1 1 7
## 955 1 1 1 7
## 956 1 1 1 7
## 957 0 0 0 4
## 958 0 0 0 3
## 959 0 0 0 3
## 960 1 1 0 7
## 961 0 0 0 2
## 962 0 0 0 4
## 963 1 1 0 7
## 964 0 0 0 4
## 965 1 1 0 4
## 966 1 1 0 8
## 967 1 1 0 7
## 968 0 0 0 4
## 969 0 0 0 4
## 970 0 0 0 4
## 971 0 0 0 2
## 972 1 1 0 7
## 973 1 1 0 4
## 974 1 1 0 7
## 975 0 0 0 2
## 976 0 0 0 2
## 977 1 1 0 4
## 978 0 0 0 4
## 979 1 1 0 4
## 980 1 1 0 7
## 981 0 0 0 4
## 982 1 1 0 4
## 983 0 0 0 4
## 984 0 0 0 4
## 985 1 1 0 5
## 986 0 0 0 4
## 987 1 1 1 7
## 988 1 1 1 8
## 989 0 1 0 7
## 990 0 0 0 4
## 991 1 1 0 4
## 992 0 1 0 6
## 993 1 1 1 8
## 994 1 1 0 6
## 995 1 1 0 4
## 996 0 0 0 2
## 997 0 0 0 2
## 998 0 1 0 6
## 999 0 1 1 6
## 1000 1 1 0 5
## 1001 1 1 0 8
## 1002 0 0 0 2
## 1003 1 1 0 7
## 1004 0 0 0 2
## 1005 1 1 0 7
## 1006 1 1 0 5
## 1007 1 1 0 5
## 1008 0 1 0 5
## 1009 0 1 0 5
## 1010 0 0 0 2
## 1011 1 1 1 9
## 1012 0 0 0 3
## 1013 0 0 0 3
## 1014 1 1 0 7
## 1015 1 1 0 7
## 1016 0 0 0 4
## 1017 1 1 1 10
## 1018 0 0 0 4
## 1019 0 0 0 4
## 1020 0 0 1 6
## 1021 0 0 0 4
## 1022 0 0 0 3
## 1023 1 1 0 7
## 1024 1 1 0 7
## 1025 0 1 0 7
## 1026 0 0 0 2
## 1027 0 1 0 4
## 1028 1 1 0 7
## 1029 1 1 0 8
## 1030 1 1 0 8
## 1031 0 1 1 6
## 1032 1 1 1 8
## 1033 0 1 1 6
## 1034 0 1 0 5
## 1035 0 1 0 6
## 1036 1 1 0 8
## 1037 0 0 0 3
## 1038 0 1 0 5
## 1039 0 0 0 3
## 1040 0 1 0 5
## 1041 0 0 0 0
## 1042 1 1 0 6
## 1043 1 1 0 6
## 1044 0 1 1 7
## 1045 0 0 0 3
## 1046 0 0 0 3
## 1047 0 0 0 4
## 1048 1 1 0 6
## 1049 0 0 0 3
## 1050 0 1 1 6
## 1051 1 1 0 6
## 1052 0 0 1 4
## 1053 0 0 0 3
## 1054 0 0 0 3
## 1055 1 1 0 6
## 1056 0 1 0 5
## 1057 0 0 0 4
## 1058 0 1 0 5
## 1059 1 1 0 8
## 1060 0 0 0 3
## 1061 0 1 0 7
## 1062 0 0 0 4
## 1063 0 0 0 4
## 1064 0 1 0 6
## 1065 0 0 0 3
## 1066 0 1 0 5
## 1067 1 1 0 8
## 1068 1 1 0 6
## 1069 0 1 0 5
## 1070 1 1 1 5
## 1071 1 1 0 8
## 1072 0 0 0 3
## 1073 1 1 1 7
## 1074 1 1 0 7
## 1075 0 0 0 3
## 1076 0 0 0 3
## 1077 0 0 0 3
## 1078 1 1 0 6
## 1079 1 1 0 6
## 1080 0 0 0 4
## 1081 0 0 0 3
## 1082 0 1 1 8
## 1083 0 1 0 5
## 1084 0 1 0 6
## 1085 1 1 0 6
## 1086 0 0 0 4
## 1087 0 0 0 4
## 1088 0 0 0 4
## 1089 0 1 0 6
## 1090 1 1 0 7
## 1091 1 1 0 5
## 1092 0 1 0 5
## 1093 0 0 0 2
## 1094 1 1 0 8
## 1095 0 1 0 5
## 1096 1 1 0 7
## 1097 1 1 0 6
## 1098 0 1 0 5
## 1099 0 1 0 7
## 1100 0 1 0 7
## 1101 1 1 0 6
## 1102 1 1 0 6
## 1103 0 0 1 4
## 1104 1 1 0 8
## 1105 0 0 1 4
## 1106 1 1 1 7
## 1107 1 1 1 7
## 1108 1 1 1 7
## 1109 1 1 1 7
## 1110 1 1 1 7
## 1111 1 1 1 7
## 1112 0 1 0 5
## 1113 1 1 0 7
## 1114 1 1 0 8
## 1115 1 1 1 7
## 1116 1 1 1 7
## 1117 1 1 1 7
## 1118 1 1 0 7
## 1119 1 1 1 9
## 1120 1 1 0 6
## 1121 0 0 0 4
## 1122 1 1 0 7
## 1123 0 1 1 6
## 1124 0 0 0 3
## 1125 0 0 0 2
## 1126 0 0 0 1
## 1127 0 0 0 4
## 1128 0 1 0 5
## 1129 0 0 0 2
## 1130 0 0 1 3
## 1131 1 1 1 7
## 1132 1 1 1 7
## 1133 0 1 0 7
## 1134 0 0 0 3
## 1135 0 0 0 4
## 1136 0 0 0 4
## 1137 1 1 0 7
## 1138 0 1 0 5
## 1139 1 1 1 8
## 1140 0 1 0 5
## 1141 1 1 0 6
## 1142 0 1 0 7
## 1143 0 0 0 4
## 1144 0 0 0 4
## 1145 0 0 0 4
## 1146 1 1 0 6
## 1147 1 1 0 7
## 1148 0 0 0 4
## 1149 0 0 0 4
## 1150 0 0 0 4
## 1151 0 0 0 4
## 1152 0 0 1 4
## 1153 0 0 0 4
## 1154 1 1 0 7
## 1155 1 1 0 7
## 1156 1 1 0 7
## 1157 0 1 0 5
## 1158 0 1 0 7
## 1159 0 1 0 7
## 1160 0 0 0 4
## 1161 0 1 0 7
## 1162 1 1 0 7
## 1163 0 0 0 4
## 1164 0 0 0 2
## 1165 0 0 0 4
## 1166 1 1 0 7
## 1167 1 1 0 7
## 1168 0 0 0 2
## 1169 1 1 0 4
## 1170 0 1 0 5
## 1171 1 1 0 6
## 1172 1 1 0 8
## 1173 0 0 0 4
## 1174 0 0 0 4
## 1175 0 0 0 3
## 1176 0 0 0 3
## 1177 1 1 0 4
## 1178 0 1 0 5
## 1179 1 1 1 8
## 1180 0 0 0 3
## 1181 0 0 1 3
## 1182 0 0 0 4
## 1183 1 1 1 7
## 1184 0 1 0 7
## 1185 0 0 0 4
## 1186 1 1 0 6
## 1187 0 0 0 4
## 1188 0 0 0 4
## 1189 1 1 0 4
## 1190 0 0 0 2
## 1191 0 0 0 3
## 1192 1 1 1 8
## 1193 1 1 0 8
## 1194 1 1 0 7
## 1195 0 1 0 5
## 1196 0 1 0 7
## 1197 0 0 0 2
## 1198 0 0 0 4
## 1199 1 1 1 8
## 1200 0 0 0 4
## 1201 1 1 0 6
## 1202 0 1 0 5
## 1203 0 1 0 5
## 1204 1 1 0 8
## 1205 0 0 0 3
## 1206 1 1 1 8
## 1207 1 1 0 8
## 1208 0 0 1 4
## 1209 0 0 1 4
## 1210 1 1 0 7
## 1211 1 1 0 7
## 1212 1 1 0 7
## 1213 0 0 1 4
## 1214 0 0 0 3
## 1215 1 1 0 7
## 1216 1 1 0 8
## 1217 1 1 0 8
## 1218 1 1 0 6
## 1219 0 0 1 4
## 1220 0 0 0 2
## 1221 0 0 0 2
## 1222 0 0 0 3
## 1223 0 0 0 2
## 1224 1 1 0 6
## 1225 0 0 0 2
## 1226 0 0 0 4
## 1227 0 0 0 2
## 1228 1 1 0 8
## 1229 0 0 0 4
## 1230 0 0 0 4
## 1231 0 0 0 3
## 1232 0 0 0 3
## 1233 0 1 0 6
## 1234 0 1 0 6
## 1235 0 0 1 3
## 1236 1 1 0 8
## 1237 1 1 0 5
## 1238 1 1 0 6
## 1239 1 1 0 7
## 1240 1 1 0 7
## 1241 0 0 0 4
## 1242 1 1 0 8
## 1243 1 1 1 9
## 1244 1 1 0 7
## 1245 1 1 0 7
## 1246 1 1 0 7
## 1247 0 0 0 2
## 1248 0 0 0 4
## 1249 0 0 0 2
## 1250 1 1 0 8
## 1251 1 1 0 7
## 1252 0 0 0 3
## 1253 1 1 0 7
## 1254 1 1 0 9
## 1255 0 1 0 5
## 1256 1 1 0 7
## 1257 1 1 0 6
## 1258 1 1 0 5
## 1259 1 1 0 7
## 1260 1 1 0 6
## 1261 1 1 0 7
## 1262 1 1 0 7
## 1263 1 1 0 7
## 1264 1 1 0 5
## 1265 0 0 1 4
## 1266 0 1 1 8
## 1267 0 0 1 4
## 1268 0 0 1 4
## 1269 0 0 0 2
## 1270 0 0 0 4
## 1271 0 0 0 4
## 1272 0 0 0 2
## 1273 1 1 0 7
## 1274 0 0 0 3
## 1275 0 1 1 6
## 1276 0 1 0 5
## 1277 1 1 0 8
## 1278 0 1 0 5
## 1279 0 0 0 2
## 1280 0 0 0 3
## 1281 0 0 0 3
## 1282 0 1 0 5
## 1283 0 0 0 3
## 1284 0 0 0 4
## 1285 0 1 1 6
## 1286 1 1 1 8
## 1287 1 1 0 7
## 1288 1 1 0 8
## 1289 1 1 0 8
## 1290 0 0 0 4
## 1291 1 1 0 7
## 1292 1 1 0 4
## 1293 0 1 0 6
## 1294 0 1 0 6
## 1295 0 1 0 6
## 1296 0 1 0 6
## 1297 1 1 0 6
## 1298 0 0 0 2
## 1299 0 0 0 3
## 1300 0 0 1 4
## 1301 0 0 1 4
## 1302 0 0 1 4
## 1303 0 0 1 4
## 1304 0 1 0 5
## 1305 0 0 0 3
## 1306 0 1 0 7
## 1307 0 1 0 8
## 1308 1 1 0 6
## 1309 1 1 0 8
## 1310 0 1 0 5
## 1311 0 1 0 5
## 1312 0 1 0 5
## 1313 0 1 1 9
## 1314 1 1 1 9
## 1315 0 0 0 2
## 1316 0 1 0 7
## 1317 0 1 1 6
## 1318 0 0 0 3
## 1319 0 1 0 6
## 1320 0 1 0 5
## 1321 0 0 0 3
## 1322 0 1 0 5
## 1323 0 1 0 6
## 1324 0 1 0 5
## 1325 0 1 0 5
## 1326 1 1 0 7
## 1327 0 0 0 4
## 1328 1 1 0 7
## 1329 0 1 0 5
## 1330 0 0 0 3
## 1331 0 0 0 3
## 1332 0 0 0 3
## 1333 0 1 0 5
## 1334 0 1 0 5
## 1335 0 1 0 8
## 1336 0 0 0 3
## 1337 0 1 0 5
## 1338 0 1 0 5
## 1339 0 0 1 4
## 1340 0 0 1 4
## 1341 0 1 0 5
## 1342 0 0 1 4
## 1343 0 1 0 5
## 1344 0 1 0 5
## 1345 0 1 0 5
## 1346 0 0 0 4
## 1347 0 0 0 4
## 1348 1 1 0 5
## 1349 0 1 0 7
## 1350 1 1 0 5
## 1351 0 1 0 5
## 1352 1 1 0 7
## 1353 0 0 0 3
## 1354 0 0 0 3
## 1355 0 0 0 3
## 1356 0 0 0 3
## 1357 0 1 0 5
## 1358 1 1 0 8
## 1359 1 1 0 7
## 1360 0 1 0 7
## 1361 1 1 0 4
## 1362 0 0 0 3
## 1363 0 0 0 3
## 1364 0 1 0 5
## 1365 0 1 0 7
## 1366 0 0 0 3
## 1367 1 1 0 8
## 1368 0 1 0 5
## 1369 0 1 0 5
## 1370 0 1 0 5
## 1371 0 0 0 4
## 1372 1 1 0 6
## 1373 0 0 1 4
## 1374 0 0 1 4
## 1375 1 1 0 4
## 1376 0 0 0 4
## 1377 1 1 0 7
## 1378 1 1 0 7
## 1379 1 1 0 6
## 1380 1 1 1 7
## 1381 1 1 1 7
## 1382 1 1 1 7
## 1383 0 1 0 5
## 1384 1 1 0 8
## 1385 1 1 0 8
## 1386 1 1 0 7
## 1387 0 1 0 5
## 1388 0 0 1 3
## 1389 1 1 0 8
## 1390 0 1 0 5
## 1391 0 1 0 7
## 1392 0 0 0 3
## 1393 1 1 1 7
## 1394 0 1 0 5
## 1395 1 1 0 8
## 1396 1 1 0 6
## 1397 1 1 0 7
## 1398 0 1 0 5
## 1399 1 1 0 7
## 1400 1 1 0 8
## 1401 0 1 0 7
## 1402 0 1 0 5
## 1403 0 1 1 6
## 1404 1 1 0 4
## 1405 0 1 0 5
## 1406 0 1 0 6
## 1407 0 1 0 6
## 1408 0 0 0 4
## 1409 1 1 0 7
## 1410 1 1 0 6
## 1411 0 1 0 5
## 1412 0 0 1 3
## 1413 0 0 1 3
## 1414 0 0 0 3
## 1415 1 1 1 7
## 1416 0 1 0 5
## 1417 0 0 0 3
## 1418 0 0 0 3
## 1419 0 0 0 4
## 1420 0 0 0 3
## 1421 1 1 1 9
## 1422 0 0 0 4
## 1423 0 0 0 4
## 1424 0 1 0 5
## 1425 0 0 0 4
## 1426 0 1 0 7
## 1427 0 1 0 5
## 1428 0 0 0 4
## 1429 1 1 0 9
## 1430 0 0 0 4
## 1431 0 0 0 4
## 1432 1 1 0 7
## 1433 0 0 0 2
## 1434 0 1 0 5
## 1435 1 1 0 7
## 1436 1 1 0 7
## 1437 0 1 0 7
## 1438 1 1 0 7
## 1439 1 1 0 7
## 1440 1 1 0 7
## 1441 1 1 0 7
## 1442 1 1 0 7
## 1443 0 1 0 5
## 1444 0 0 0 4
## 1445 0 1 0 5
## 1446 1 1 0 4
## 1447 1 1 0 4
## 1448 0 1 0 6
## 1449 1 1 0 8
## 1450 1 1 0 8
## 1451 1 1 0 7
## 1452 0 1 0 5
## 1453 0 1 0 5
## 1454 1 1 0 4
## 1455 0 0 0 1
## 1456 0 0 0 2
## 1457 0 0 0 4
## 1458 0 0 0 4
## 1459 0 0 0 4
## 1460 1 1 0 7
## 1461 0 0 0 2
## 1462 0 1 0 5
## 1463 1 1 0 7
## 1464 0 1 0 5
## 1465 0 1 0 7
## 1466 1 1 0 7
## 1467 1 1 0 7
## 1468 1 1 0 7
## 1469 0 0 0 2
## 1470 0 0 0 4
## 1471 0 1 0 5
## 1472 0 1 0 5
## 1473 0 0 0 4
## 1474 1 1 0 9
## 1475 0 0 1 3
## 1476 1 1 0 6
## 1477 0 1 0 5
## 1478 0 1 0 7
## 1479 1 1 0 7
## 1480 0 1 0 7
## 1481 0 1 0 7
## 1482 0 0 0 1
## 1483 1 1 0 8
## 1484 0 0 0 2
## 1485 1 1 0 7
## 1486 0 1 0 5
## 1487 1 1 0 4
## 1488 0 0 0 2
## 1489 0 1 0 5
## 1490 0 0 0 2
## 1491 0 0 0 2
## 1492 0 0 0 2
## 1493 1 1 0 4
## 1494 1 1 0 4
## 1495 1 1 0 8
## 1496 0 0 0 1
## 1497 1 1 0 7
## 1498 1 1 0 4
## 1499 0 0 0 3
## 1500 1 1 0 8
## 1501 0 1 0 7
## 1502 1 1 0 7
## 1503 1 1 0 7
## 1504 1 1 0 7
## 1505 1 1 0 7
## 1506 0 0 0 4
## 1507 0 0 0 2
## 1508 0 0 0 3
## 1509 1 1 0 7
## 1510 0 0 0 4
## 1511 1 1 0 6
## 1512 0 0 0 3
## 1513 0 0 0 3
## 1514 0 0 1 3
## 1515 1 1 0 4
## 1516 1 1 0 6
## 1517 0 0 0 4
## 1518 1 1 1 8
## 1519 0 0 0 4
## 1520 0 1 0 5
## 1521 1 1 0 3
## 1522 1 1 1 7
## 1523 1 1 1 7
## 1524 0 1 0 7
## 1525 0 1 0 7
## 1526 1 1 0 8
## 1527 0 0 1 4
## 1528 0 0 0 4
## 1529 1 1 0 7
## 1530 0 0 1 3
## 1531 1 1 0 4
## 1532 1 1 0 6
## 1533 0 1 0 5
## 1534 1 1 0 5
## 1535 0 1 0 5
## 1536 1 1 0 5
## 1537 1 1 1 8
## 1538 1 1 0 7
## host_response_hours 1 0 host_response_day host_response_few_days
## 1 NA 1 0 NA NA
## 2 NA 1 0 NA NA
## 3 NA 1 0 NA NA
## 4 NA 1 0 NA NA
## 5 NA 1 0 NA NA
## 6 NA 1 0 NA NA
## 7 NA 1 0 NA NA
## 8 NA 1 0 NA NA
## 9 NA 1 0 NA NA
## 10 NA 1 0 NA NA
## 11 NA 1 0 NA NA
## 12 NA 1 0 NA NA
## 13 NA 1 0 NA NA
## 14 NA 1 0 NA NA
## 15 NA 1 0 NA NA
## 16 NA 1 0 NA NA
## 17 NA 1 0 NA NA
## 18 NA 1 0 NA NA
## 19 NA 1 0 NA NA
## 20 NA 1 0 NA NA
## 21 NA 1 0 NA NA
## 22 NA 1 0 NA NA
## 23 NA 1 0 NA NA
## 24 NA 1 0 NA NA
## 25 NA 1 0 NA NA
## 26 NA 1 0 NA NA
## 27 NA 1 0 NA NA
## 28 NA 1 0 NA NA
## 29 NA 1 0 NA NA
## 30 NA 1 0 NA NA
## 31 NA 1 0 NA NA
## 32 NA 1 0 NA NA
## 33 NA 1 0 NA NA
## 34 NA 1 0 NA NA
## 35 NA 1 0 NA NA
## 36 NA 1 0 NA NA
## 37 NA 1 0 NA NA
## 38 NA 1 0 NA NA
## 39 NA 1 0 NA NA
## 40 NA 1 0 NA NA
## 41 NA 1 0 NA NA
## 42 NA 1 0 NA NA
## 43 NA 1 0 NA NA
## 44 NA 1 0 NA NA
## 45 NA 1 0 NA NA
## 46 NA 1 0 NA NA
## 47 NA 1 0 NA NA
## 48 NA 1 0 NA NA
## 49 NA 1 0 NA NA
## 50 NA 1 0 NA NA
## 51 NA 1 0 NA NA
## 52 NA 1 0 NA NA
## 53 NA 1 0 NA NA
## 54 NA 1 0 NA NA
## 55 NA 1 0 NA NA
## 56 NA 1 0 NA NA
## 57 NA 1 0 NA NA
## 58 NA 1 0 NA NA
## 59 NA 1 0 NA NA
## 60 NA 1 0 NA NA
## 61 NA 1 0 NA NA
## 62 NA 1 0 NA NA
## 63 NA 1 0 NA NA
## 64 NA 1 0 NA NA
## 65 NA 1 0 NA NA
## 66 NA 1 0 NA NA
## 67 NA 1 0 NA NA
## 68 NA 1 0 NA NA
## 69 NA 1 0 NA NA
## 70 NA 1 0 NA NA
## 71 NA 1 0 NA NA
## 72 NA 1 0 NA NA
## 73 NA 1 0 NA NA
## 74 NA 1 0 NA NA
## 75 NA 1 0 NA NA
## 76 NA 1 0 NA NA
## 77 NA 1 0 NA NA
## 78 NA 1 0 NA NA
## 79 NA 1 0 NA NA
## 80 NA 1 0 NA NA
## 81 NA 1 0 NA NA
## 82 NA 1 0 NA NA
## 83 NA 1 0 NA NA
## 84 NA 1 0 NA NA
## 85 NA 1 0 NA NA
## 86 NA 1 0 NA NA
## 87 NA 1 0 NA NA
## 88 NA 1 0 NA NA
## 89 NA 1 0 NA NA
## 90 NA 1 0 NA NA
## 91 NA 1 0 NA NA
## 92 NA 1 0 NA NA
## 93 NA 1 0 NA NA
## 94 NA 1 0 NA NA
## 95 NA 1 0 NA NA
## 96 NA 1 0 NA NA
## 97 NA 1 0 NA NA
## 98 NA 1 0 NA NA
## 99 NA 1 0 NA NA
## 100 NA 1 0 NA NA
## 101 NA 1 0 NA NA
## 102 NA 1 0 NA NA
## 103 NA 1 0 NA NA
## 104 NA 1 0 NA NA
## 105 NA 1 0 NA NA
## 106 NA 1 0 NA NA
## 107 NA 1 0 NA NA
## 108 NA 1 0 NA NA
## 109 NA 1 0 NA NA
## 110 NA 1 0 NA NA
## 111 NA 1 0 NA NA
## 112 NA 1 0 NA NA
## 113 NA 1 0 NA NA
## 114 NA 1 0 NA NA
## 115 NA 1 0 NA NA
## 116 NA 1 0 NA NA
## 117 NA 1 0 NA NA
## 118 NA 1 0 NA NA
## 119 NA 1 0 NA NA
## 120 NA 1 0 NA NA
## 121 NA 1 0 NA NA
## 122 NA 1 0 NA NA
## 123 NA 1 0 NA NA
## 124 NA 1 0 NA NA
## 125 NA 1 0 NA NA
## 126 NA 1 0 NA NA
## 127 NA 1 0 NA NA
## 128 NA 1 0 NA NA
## 129 NA 1 0 NA NA
## 130 NA 1 0 NA NA
## 131 NA 1 0 NA NA
## 132 NA 1 0 NA NA
## 133 NA 1 0 NA NA
## 134 NA 1 0 NA NA
## 135 NA 1 0 NA NA
## 136 NA 1 0 NA NA
## 137 NA 1 0 NA NA
## 138 NA 1 0 NA NA
## 139 NA 1 0 NA NA
## 140 NA 1 0 NA NA
## 141 NA 1 0 NA NA
## 142 NA 1 0 NA NA
## 143 NA 1 0 NA NA
## 144 NA 1 0 NA NA
## 145 NA 1 0 NA NA
## 146 NA 1 0 NA NA
## 147 NA 1 0 NA NA
## 148 NA 1 0 NA NA
## 149 NA 1 0 NA NA
## 150 NA 1 0 NA NA
## 151 NA 1 0 NA NA
## 152 NA 1 0 NA NA
## 153 NA 1 0 NA NA
## 154 NA 1 0 NA NA
## 155 NA 1 0 NA NA
## 156 NA 1 0 NA NA
## 157 NA 1 0 NA NA
## 158 NA 1 0 NA NA
## 159 NA 1 0 NA NA
## 160 NA 1 0 NA NA
## 161 NA 1 0 NA NA
## 162 NA 1 0 NA NA
## 163 NA 1 0 NA NA
## 164 NA 1 0 NA NA
## 165 NA 1 0 NA NA
## 166 NA 1 0 NA NA
## 167 NA 1 0 NA NA
## 168 NA 1 0 NA NA
## 169 NA 1 0 NA NA
## 170 NA 1 0 NA NA
## 171 NA 1 0 NA NA
## 172 NA 1 0 NA NA
## 173 NA 1 0 NA NA
## 174 NA 1 0 NA NA
## 175 NA 1 0 NA NA
## 176 NA 1 0 NA NA
## 177 NA 1 0 NA NA
## 178 NA 1 0 NA NA
## 179 NA 1 0 NA NA
## 180 NA 1 0 NA NA
## 181 NA 1 0 NA NA
## 182 NA 1 0 NA NA
## 183 NA 1 0 NA NA
## 184 NA 1 0 NA NA
## 185 NA 1 0 NA NA
## 186 NA 1 0 NA NA
## 187 NA 1 0 NA NA
## 188 NA 1 0 NA NA
## 189 NA 1 0 NA NA
## 190 NA 1 0 NA NA
## 191 NA 1 0 NA NA
## 192 NA 1 0 NA NA
## 193 NA 1 0 NA NA
## 194 NA 1 0 NA NA
## 195 NA 1 0 NA NA
## 196 NA 1 0 NA NA
## 197 NA 1 0 NA NA
## 198 NA 1 0 NA NA
## 199 NA 1 0 NA NA
## 200 NA 1 0 NA NA
## 201 NA 1 0 NA NA
## 202 NA 1 0 NA NA
## 203 NA 1 0 NA NA
## 204 NA 1 0 NA NA
## 205 NA 1 0 NA NA
## 206 NA 1 0 NA NA
## 207 NA 1 0 NA NA
## 208 NA 1 0 NA NA
## 209 NA 1 0 NA NA
## 210 NA 1 0 NA NA
## 211 NA 1 0 NA NA
## 212 NA 1 0 NA NA
## 213 NA 1 0 NA NA
## 214 NA 1 0 NA NA
## 215 NA 1 0 NA NA
## 216 NA 1 0 NA NA
## 217 NA 1 0 NA NA
## 218 NA 1 0 NA NA
## 219 NA 1 0 NA NA
## 220 NA 1 0 NA NA
## 221 NA 1 0 NA NA
## 222 NA 1 0 NA NA
## 223 NA 1 0 NA NA
## 224 NA 1 0 NA NA
## 225 NA 1 0 NA NA
## 226 NA 1 0 NA NA
## 227 NA 1 0 NA NA
## 228 NA 1 0 NA NA
## 229 NA 1 0 NA NA
## 230 NA 1 0 NA NA
## 231 NA 1 0 NA NA
## 232 NA 1 0 NA NA
## 233 NA 1 0 NA NA
## 234 NA 1 0 NA NA
## 235 NA 1 0 NA NA
## 236 NA 1 0 NA NA
## 237 NA 1 0 NA NA
## 238 NA 1 0 NA NA
## 239 NA 1 0 NA NA
## 240 NA 1 0 NA NA
## 241 NA 1 0 NA NA
## 242 NA 1 0 NA NA
## 243 NA 1 0 NA NA
## 244 NA 1 0 NA NA
## 245 NA 1 0 NA NA
## 246 NA 1 0 NA NA
## 247 NA 1 0 NA NA
## 248 NA 1 0 NA NA
## 249 NA 1 0 NA NA
## 250 NA 1 0 NA NA
## 251 NA 1 0 NA NA
## 252 NA 1 0 NA NA
## 253 NA 1 0 NA NA
## 254 NA 1 0 NA NA
## 255 NA 1 0 NA NA
## 256 NA 1 0 NA NA
## 257 NA 1 0 NA NA
## 258 NA 1 0 NA NA
## 259 NA 1 0 NA NA
## 260 NA 1 0 NA NA
## 261 NA 1 0 NA NA
## 262 NA 1 0 NA NA
## 263 NA 1 0 NA NA
## 264 NA 1 0 NA NA
## 265 NA 1 0 NA NA
## 266 NA 1 0 NA NA
## 267 NA 1 0 NA NA
## 268 NA 1 0 NA NA
## 269 NA 1 0 NA NA
## 270 NA 1 0 NA NA
## 271 NA 1 0 NA NA
## 272 NA 1 0 NA NA
## 273 NA 1 0 NA NA
## 274 NA 1 0 NA NA
## 275 NA 1 0 NA NA
## 276 NA 1 0 NA NA
## 277 NA 1 0 NA NA
## 278 NA 1 0 NA NA
## 279 NA 1 0 NA NA
## 280 NA 1 0 NA NA
## 281 NA 1 0 NA NA
## 282 NA 1 0 NA NA
## 283 NA 1 0 NA NA
## 284 NA 1 0 NA NA
## 285 NA 1 0 NA NA
## 286 NA 1 0 NA NA
## 287 NA 1 0 NA NA
## 288 NA 1 0 NA NA
## 289 NA 1 0 NA NA
## 290 NA 1 0 NA NA
## 291 NA 1 0 NA NA
## 292 NA 1 0 NA NA
## 293 NA 1 0 NA NA
## 294 NA 1 0 NA NA
## 295 NA 1 0 NA NA
## 296 NA 1 0 NA NA
## 297 NA 1 0 NA NA
## 298 NA 1 0 NA NA
## 299 NA 1 0 NA NA
## 300 NA 1 0 NA NA
## 301 NA 1 0 NA NA
## 302 NA 1 0 NA NA
## 303 NA 1 0 NA NA
## 304 NA 1 0 NA NA
## 305 NA 1 0 NA NA
## 306 NA 1 0 NA NA
## 307 NA 1 0 NA NA
## 308 NA 1 0 NA NA
## 309 NA 1 0 NA NA
## 310 NA 1 0 NA NA
## 311 NA 1 0 NA NA
## 312 NA 1 0 NA NA
## 313 NA 1 0 NA NA
## 314 NA 1 0 NA NA
## 315 NA 1 0 NA NA
## 316 NA 1 0 NA NA
## 317 NA 1 0 NA NA
## 318 NA 1 0 NA NA
## 319 NA 1 0 NA NA
## 320 NA 1 0 NA NA
## 321 NA 1 0 NA NA
## 322 NA 1 0 NA NA
## 323 NA 1 0 NA NA
## 324 NA 1 0 NA NA
## 325 NA 1 0 NA NA
## 326 NA 1 0 NA NA
## 327 NA 1 0 NA NA
## 328 NA 1 0 NA NA
## 329 NA 1 0 NA NA
## 330 NA 1 0 NA NA
## 331 NA 1 0 NA NA
## 332 NA 1 0 NA NA
## 333 NA 1 0 NA NA
## 334 NA 1 0 NA NA
## 335 NA 1 0 NA NA
## 336 NA 1 0 NA NA
## 337 NA 1 0 NA NA
## 338 NA 1 0 NA NA
## 339 NA 1 0 NA NA
## 340 NA 1 0 NA NA
## 341 NA 1 0 NA NA
## 342 NA 1 0 NA NA
## 343 NA 1 0 NA NA
## 344 NA 1 0 NA NA
## 345 NA 1 0 NA NA
## 346 NA 1 0 NA NA
## 347 NA 1 0 NA NA
## 348 NA 1 0 NA NA
## 349 NA 1 0 NA NA
## 350 NA 1 0 NA NA
## 351 NA 1 0 NA NA
## 352 NA 1 0 NA NA
## 353 NA 1 0 NA NA
## 354 NA 1 0 NA NA
## 355 NA 1 0 NA NA
## 356 NA 1 0 NA NA
## 357 NA 1 0 NA NA
## 358 NA 1 0 NA NA
## 359 NA 1 0 NA NA
## 360 NA 1 0 NA NA
## 361 NA 1 0 NA NA
## 362 NA 1 0 NA NA
## 363 NA 1 0 NA NA
## 364 NA 1 0 NA NA
## 365 NA 1 0 NA NA
## 366 NA 1 0 NA NA
## 367 NA 1 0 NA NA
## 368 NA 1 0 NA NA
## 369 NA 1 0 NA NA
## 370 NA 1 0 NA NA
## 371 NA 1 0 NA NA
## 372 NA 1 0 NA NA
## 373 NA 1 0 NA NA
## 374 NA 1 0 NA NA
## 375 NA 1 0 NA NA
## 376 NA 1 0 NA NA
## 377 NA 1 0 NA NA
## 378 NA 1 0 NA NA
## 379 NA 1 0 NA NA
## 380 NA 1 0 NA NA
## 381 NA 1 0 NA NA
## 382 NA 1 0 NA NA
## 383 NA 1 0 NA NA
## 384 NA 1 0 NA NA
## 385 NA 1 0 NA NA
## 386 NA 1 0 NA NA
## 387 NA 1 0 NA NA
## 388 NA 1 0 NA NA
## 389 NA 1 0 NA NA
## 390 NA 1 0 NA NA
## 391 NA 1 0 NA NA
## 392 NA 1 0 NA NA
## 393 NA 1 0 NA NA
## 394 NA 1 0 NA NA
## 395 NA 1 0 NA NA
## 396 NA 1 0 NA NA
## 397 NA 1 0 NA NA
## 398 NA 1 0 NA NA
## 399 NA 1 0 NA NA
## 400 NA 1 0 NA NA
## 401 NA 1 0 NA NA
## 402 NA 1 0 NA NA
## 403 NA 1 0 NA NA
## 404 NA 1 0 NA NA
## 405 NA 1 0 NA NA
## 406 NA 1 0 NA NA
## 407 NA 1 0 NA NA
## 408 NA 1 0 NA NA
## 409 NA 1 0 NA NA
## 410 NA 1 0 NA NA
## 411 NA 1 0 NA NA
## 412 NA 1 0 NA NA
## 413 NA 1 0 NA NA
## 414 NA 1 0 NA NA
## 415 NA 1 0 NA NA
## 416 NA 1 0 NA NA
## 417 NA 1 0 NA NA
## 418 NA 1 0 NA NA
## 419 NA 1 0 NA NA
## 420 NA 1 0 NA NA
## 421 NA 1 0 NA NA
## 422 NA 1 0 NA NA
## 423 NA 1 0 NA NA
## 424 NA 1 0 NA NA
## 425 NA 1 0 NA NA
## 426 NA 1 0 NA NA
## 427 NA 1 0 NA NA
## 428 NA 1 0 NA NA
## 429 NA 1 0 NA NA
## 430 NA 1 0 NA NA
## 431 NA 1 0 NA NA
## 432 NA 1 0 NA NA
## 433 NA 1 0 NA NA
## 434 NA 1 0 NA NA
## 435 NA 1 0 NA NA
## 436 NA 1 0 NA NA
## 437 NA 1 0 NA NA
## 438 NA 1 0 NA NA
## 439 NA 1 0 NA NA
## 440 NA 1 0 NA NA
## 441 NA 1 0 NA NA
## 442 NA 1 0 NA NA
## 443 NA 1 0 NA NA
## 444 NA 1 0 NA NA
## 445 NA 1 0 NA NA
## 446 NA 1 0 NA NA
## 447 NA 1 0 NA NA
## 448 NA 1 0 NA NA
## 449 NA 1 0 NA NA
## 450 NA 1 0 NA NA
## 451 NA 1 0 NA NA
## 452 NA 1 0 NA NA
## 453 NA 1 0 NA NA
## 454 NA 1 0 NA NA
## 455 NA 1 0 NA NA
## 456 NA 1 0 NA NA
## 457 NA 1 0 NA NA
## 458 NA 1 0 NA NA
## 459 NA 1 0 NA NA
## 460 NA 1 0 NA NA
## 461 NA 1 0 NA NA
## 462 NA 1 0 NA NA
## 463 NA 1 0 NA NA
## 464 NA 1 0 NA NA
## 465 NA 1 0 NA NA
## 466 NA 1 0 NA NA
## 467 NA 1 0 NA NA
## 468 NA 1 0 NA NA
## 469 NA 1 0 NA NA
## 470 NA 1 0 NA NA
## 471 NA 1 0 NA NA
## 472 NA 1 0 NA NA
## 473 NA 1 0 NA NA
## 474 NA 1 0 NA NA
## 475 NA 1 0 NA NA
## 476 NA 1 0 NA NA
## 477 NA 1 0 NA NA
## 478 NA 1 0 NA NA
## 479 NA 1 0 NA NA
## 480 NA 1 0 NA NA
## 481 NA 1 0 NA NA
## 482 NA 1 0 NA NA
## 483 NA 1 0 NA NA
## 484 NA 1 0 NA NA
## 485 NA 1 0 NA NA
## 486 NA 1 0 NA NA
## 487 NA 1 0 NA NA
## 488 NA 1 0 NA NA
## 489 NA 1 0 NA NA
## 490 NA 1 0 NA NA
## 491 NA 1 0 NA NA
## 492 NA 1 0 NA NA
## 493 NA 1 0 NA NA
## 494 NA 1 0 NA NA
## 495 NA 1 0 NA NA
## 496 NA 1 0 NA NA
## 497 NA 1 0 NA NA
## 498 NA 1 0 NA NA
## 499 NA 1 0 NA NA
## 500 NA 1 0 NA NA
## 501 NA 1 0 NA NA
## 502 NA 1 0 NA NA
## 503 NA 1 0 NA NA
## 504 NA 1 0 NA NA
## 505 NA 1 0 NA NA
## 506 NA 1 0 NA NA
## 507 NA 1 0 NA NA
## 508 NA 1 0 NA NA
## 509 NA 1 0 NA NA
## 510 NA 1 0 NA NA
## 511 NA 1 0 NA NA
## 512 NA 1 0 NA NA
## 513 NA 1 0 NA NA
## 514 NA 1 0 NA NA
## 515 NA 1 0 NA NA
## 516 NA 1 0 NA NA
## 517 NA 1 0 NA NA
## 518 NA 1 0 NA NA
## 519 NA 1 0 NA NA
## 520 NA 1 0 NA NA
## 521 NA 1 0 NA NA
## 522 NA 1 0 NA NA
## 523 NA 1 0 NA NA
## 524 NA 1 0 NA NA
## 525 NA 1 0 NA NA
## 526 NA 1 0 NA NA
## 527 NA 1 0 NA NA
## 528 NA 1 0 NA NA
## 529 NA 1 0 NA NA
## 530 NA 1 0 NA NA
## 531 NA 1 0 NA NA
## 532 NA 1 0 NA NA
## 533 NA 1 0 NA NA
## 534 NA 1 0 NA NA
## 535 NA 1 0 NA NA
## 536 NA 1 0 NA NA
## 537 NA 1 0 NA NA
## 538 NA 1 0 NA NA
## 539 NA 1 0 NA NA
## 540 NA 1 0 NA NA
## 541 NA 1 0 NA NA
## 542 NA 1 0 NA NA
## 543 NA 1 0 NA NA
## 544 NA 1 0 NA NA
## 545 NA 1 0 NA NA
## 546 NA 1 0 NA NA
## 547 NA 1 0 NA NA
## 548 NA 1 0 NA NA
## 549 NA 1 0 NA NA
## 550 NA 1 0 NA NA
## 551 NA 1 0 NA NA
## 552 NA 1 0 NA NA
## 553 NA 1 0 NA NA
## 554 NA 1 0 NA NA
## 555 NA 1 0 NA NA
## 556 NA 1 0 NA NA
## 557 NA 1 0 NA NA
## 558 NA 1 0 NA NA
## 559 NA 1 0 NA NA
## 560 NA 1 0 NA NA
## 561 NA 1 0 NA NA
## 562 NA 1 0 NA NA
## 563 NA 1 0 NA NA
## 564 NA 1 0 NA NA
## 565 NA 1 0 NA NA
## 566 NA 1 0 NA NA
## 567 NA 1 0 NA NA
## 568 NA 1 0 NA NA
## 569 NA 1 0 NA NA
## 570 NA 1 0 NA NA
## 571 NA 1 0 NA NA
## 572 NA 1 0 NA NA
## 573 NA 1 0 NA NA
## 574 NA 1 0 NA NA
## 575 NA 1 0 NA NA
## 576 NA 1 0 NA NA
## 577 NA 1 0 NA NA
## 578 NA 1 0 NA NA
## 579 NA 1 0 NA NA
## 580 NA 1 0 NA NA
## 581 NA 1 0 NA NA
## 582 NA 1 0 NA NA
## 583 NA 1 0 NA NA
## 584 NA 1 0 NA NA
## 585 NA 1 0 NA NA
## 586 NA 1 0 NA NA
## 587 NA 1 0 NA NA
## 588 NA 1 0 NA NA
## 589 NA 1 0 NA NA
## 590 NA 1 0 NA NA
## 591 NA 1 0 NA NA
## 592 NA 1 0 NA NA
## 593 NA 1 0 NA NA
## 594 NA 1 0 NA NA
## 595 NA 1 0 NA NA
## 596 NA 1 0 NA NA
## 597 NA 1 0 NA NA
## 598 NA 1 0 NA NA
## 599 NA 1 0 NA NA
## 600 NA 1 0 NA NA
## 601 NA 1 0 NA NA
## 602 NA 1 0 NA NA
## 603 NA 1 0 NA NA
## 604 NA 1 0 NA NA
## 605 NA 1 0 NA NA
## 606 NA 1 0 NA NA
## 607 NA 1 0 NA NA
## 608 NA 1 0 NA NA
## 609 NA 1 0 NA NA
## 610 NA 1 0 NA NA
## 611 NA 1 0 NA NA
## 612 NA 1 0 NA NA
## 613 NA 1 0 NA NA
## 614 NA 1 0 NA NA
## 615 NA 1 0 NA NA
## 616 NA 1 0 NA NA
## 617 NA 1 0 NA NA
## 618 NA 1 0 NA NA
## 619 NA 1 0 NA NA
## 620 NA 1 0 NA NA
## 621 NA 1 0 NA NA
## 622 NA 1 0 NA NA
## 623 NA 1 0 NA NA
## 624 NA 1 0 NA NA
## 625 NA 1 0 NA NA
## 626 NA 1 0 NA NA
## 627 NA 1 0 NA NA
## 628 NA 1 0 NA NA
## 629 NA 1 0 NA NA
## 630 NA 1 0 NA NA
## 631 NA 1 0 NA NA
## 632 NA 1 0 NA NA
## 633 NA 1 0 NA NA
## 634 NA 1 0 NA NA
## 635 NA 1 0 NA NA
## 636 NA 1 0 NA NA
## 637 NA 1 0 NA NA
## 638 NA 1 0 NA NA
## 639 NA 1 0 NA NA
## 640 NA 1 0 NA NA
## 641 NA 1 0 NA NA
## 642 NA 1 0 NA NA
## 643 NA 1 0 NA NA
## 644 NA 1 0 NA NA
## 645 NA 1 0 NA NA
## 646 NA 1 0 NA NA
## 647 NA 1 0 NA NA
## 648 NA 1 0 NA NA
## 649 NA 1 0 NA NA
## 650 NA 1 0 NA NA
## 651 NA 1 0 NA NA
## 652 NA 1 0 NA NA
## 653 NA 1 0 NA NA
## 654 NA 1 0 NA NA
## 655 NA 1 0 NA NA
## 656 NA 1 0 NA NA
## 657 NA 1 0 NA NA
## 658 NA 1 0 NA NA
## 659 NA 1 0 NA NA
## 660 NA 1 0 NA NA
## 661 NA 1 0 NA NA
## 662 NA 1 0 NA NA
## 663 NA 1 0 NA NA
## 664 NA 1 0 NA NA
## 665 NA 1 0 NA NA
## 666 NA 1 0 NA NA
## 667 NA 1 0 NA NA
## 668 NA 1 0 NA NA
## 669 NA 1 0 NA NA
## 670 NA 1 0 NA NA
## 671 NA 1 0 NA NA
## 672 NA 1 0 NA NA
## 673 NA 1 0 NA NA
## 674 NA 1 0 NA NA
## 675 NA 1 0 NA NA
## 676 NA 1 0 NA NA
## 677 NA 1 0 NA NA
## 678 NA 1 0 NA NA
## 679 NA 1 0 NA NA
## 680 NA 1 0 NA NA
## 681 NA 1 0 NA NA
## 682 NA 1 0 NA NA
## 683 NA 1 0 NA NA
## 684 NA 1 0 NA NA
## 685 NA 1 0 NA NA
## 686 NA 1 0 NA NA
## 687 NA 1 0 NA NA
## 688 NA 1 0 NA NA
## 689 NA 1 0 NA NA
## 690 NA 1 0 NA NA
## 691 NA 1 0 NA NA
## 692 NA 1 0 NA NA
## 693 NA 1 0 NA NA
## 694 NA 1 0 NA NA
## 695 NA 1 0 NA NA
## 696 NA 1 0 NA NA
## 697 NA 1 0 NA NA
## 698 NA 1 0 NA NA
## 699 NA 1 0 NA NA
## 700 NA 1 0 NA NA
## 701 NA 1 0 NA NA
## 702 NA 1 0 NA NA
## 703 NA 1 0 NA NA
## 704 NA 1 0 NA NA
## 705 NA 1 0 NA NA
## 706 NA 1 0 NA NA
## 707 NA 1 0 NA NA
## 708 NA 1 0 NA NA
## 709 NA 1 0 NA NA
## 710 NA 1 0 NA NA
## 711 NA 1 0 NA NA
## 712 NA 1 0 NA NA
## 713 NA 1 0 NA NA
## 714 NA 1 0 NA NA
## 715 NA 1 0 NA NA
## 716 NA 1 0 NA NA
## 717 NA 1 0 NA NA
## 718 NA 1 0 NA NA
## 719 NA 1 0 NA NA
## 720 NA 1 0 NA NA
## 721 NA 1 0 NA NA
## 722 NA 1 0 NA NA
## 723 NA 1 0 NA NA
## 724 NA 1 0 NA NA
## 725 NA 1 0 NA NA
## 726 NA 1 0 NA NA
## 727 NA 1 0 NA NA
## 728 NA 1 0 NA NA
## 729 NA 1 0 NA NA
## 730 NA 1 0 NA NA
## 731 NA 1 0 NA NA
## 732 NA 1 0 NA NA
## 733 NA 1 0 NA NA
## 734 NA 1 0 NA NA
## 735 NA 1 0 NA NA
## 736 NA 1 0 NA NA
## 737 NA 1 0 NA NA
## 738 NA 1 0 NA NA
## 739 NA 1 0 NA NA
## 740 NA 1 0 NA NA
## 741 NA 1 0 NA NA
## 742 NA 1 0 NA NA
## 743 NA 1 0 NA NA
## 744 NA 1 0 NA NA
## 745 NA 1 0 NA NA
## 746 NA 1 0 NA NA
## 747 NA 1 0 NA NA
## 748 NA 1 0 NA NA
## 749 NA 1 0 NA NA
## 750 NA 1 0 NA NA
## 751 NA 1 0 NA NA
## 752 NA 1 0 NA NA
## 753 NA 1 0 NA NA
## 754 NA 1 0 NA NA
## 755 NA 1 0 NA NA
## 756 NA 1 0 NA NA
## 757 NA 1 0 NA NA
## 758 NA 1 0 NA NA
## 759 NA 1 0 NA NA
## 760 NA 1 0 NA NA
## 761 NA 1 0 NA NA
## 762 NA 1 0 NA NA
## 763 NA 1 0 NA NA
## 764 NA 1 0 NA NA
## 765 NA 1 0 NA NA
## 766 NA 1 0 NA NA
## 767 NA 1 0 NA NA
## 768 NA 1 0 NA NA
## 769 NA 1 0 NA NA
## 770 NA 1 0 NA NA
## 771 NA 1 0 NA NA
## 772 NA 1 0 NA NA
## 773 NA 1 0 NA NA
## 774 NA 1 0 NA NA
## 775 NA 1 0 NA NA
## 776 NA 1 0 NA NA
## 777 NA 1 0 NA NA
## 778 NA 1 0 NA NA
## 779 NA 1 0 NA NA
## 780 NA 1 0 NA NA
## 781 NA 1 0 NA NA
## 782 NA 1 0 NA NA
## 783 NA 1 0 NA NA
## 784 NA 1 0 NA NA
## 785 NA 1 0 NA NA
## 786 NA 1 0 NA NA
## 787 NA 1 0 NA NA
## 788 NA 1 0 NA NA
## 789 NA 1 0 NA NA
## 790 NA 1 0 NA NA
## 791 NA 1 0 NA NA
## 792 NA 1 0 NA NA
## 793 NA 1 0 NA NA
## 794 NA 1 0 NA NA
## 795 NA 1 0 NA NA
## 796 NA 1 0 NA NA
## 797 NA 1 0 NA NA
## 798 NA 1 0 NA NA
## 799 NA 1 0 NA NA
## 800 NA 1 0 NA NA
## 801 NA 1 0 NA NA
## 802 NA 1 0 NA NA
## 803 NA 1 0 NA NA
## 804 NA 1 0 NA NA
## 805 NA 1 0 NA NA
## 806 NA 1 0 NA NA
## 807 NA 1 0 NA NA
## 808 NA 1 0 NA NA
## 809 NA 1 0 NA NA
## 810 NA 1 0 NA NA
## 811 NA 1 0 NA NA
## 812 NA 1 0 NA NA
## 813 NA 1 0 NA NA
## 814 NA 1 0 NA NA
## 815 NA 1 0 NA NA
## 816 NA 1 0 NA NA
## 817 NA 1 0 NA NA
## 818 NA 1 0 NA NA
## 819 NA 1 0 NA NA
## 820 NA 1 0 NA NA
## 821 NA 1 0 NA NA
## 822 NA 1 0 NA NA
## 823 NA 1 0 NA NA
## 824 NA 1 0 NA NA
## 825 NA 1 0 NA NA
## 826 NA 1 0 NA NA
## 827 NA 1 0 NA NA
## 828 NA 1 0 NA NA
## 829 NA 1 0 NA NA
## 830 NA 1 0 NA NA
## 831 NA 1 0 NA NA
## 832 NA 1 0 NA NA
## 833 NA 1 0 NA NA
## 834 NA 1 0 NA NA
## 835 NA 1 0 NA NA
## 836 NA 1 0 NA NA
## 837 NA 1 0 NA NA
## 838 NA 1 0 NA NA
## 839 NA 1 0 NA NA
## 840 NA 1 0 NA NA
## 841 NA 1 0 NA NA
## 842 NA 1 0 NA NA
## 843 NA 1 0 NA NA
## 844 NA 1 0 NA NA
## 845 NA 1 0 NA NA
## 846 NA 1 0 NA NA
## 847 NA 1 0 NA NA
## 848 NA 1 0 NA NA
## 849 NA 1 0 NA NA
## 850 NA 1 0 NA NA
## 851 NA 1 0 NA NA
## 852 NA 1 0 NA NA
## 853 NA 1 0 NA NA
## 854 NA 1 0 NA NA
## 855 NA 1 0 NA NA
## 856 NA 1 0 NA NA
## 857 NA 1 0 NA NA
## 858 NA 1 0 NA NA
## 859 NA 1 0 NA NA
## 860 NA 1 0 NA NA
## 861 NA 1 0 NA NA
## 862 NA 1 0 NA NA
## 863 NA 1 0 NA NA
## 864 NA 1 0 NA NA
## 865 NA 1 0 NA NA
## 866 NA 1 0 NA NA
## 867 NA 1 0 NA NA
## 868 NA 1 0 NA NA
## 869 NA 1 0 NA NA
## 870 NA 1 0 NA NA
## 871 NA 1 0 NA NA
## 872 NA 1 0 NA NA
## 873 NA 1 0 NA NA
## 874 NA 1 0 NA NA
## 875 NA 1 0 NA NA
## 876 NA 1 0 NA NA
## 877 NA 1 0 NA NA
## 878 NA 1 0 NA NA
## 879 NA 1 0 NA NA
## 880 NA 1 0 NA NA
## 881 NA 1 0 NA NA
## 882 NA 1 0 NA NA
## 883 NA 1 0 NA NA
## 884 NA 1 0 NA NA
## 885 NA 1 0 NA NA
## 886 NA 1 0 NA NA
## 887 NA 1 0 NA NA
## 888 NA 1 0 NA NA
## 889 NA 1 0 NA NA
## 890 NA 1 0 NA NA
## 891 NA 1 0 NA NA
## 892 NA 1 0 NA NA
## 893 NA 1 0 NA NA
## 894 NA 1 0 NA NA
## 895 NA 1 0 NA NA
## 896 NA 1 0 NA NA
## 897 NA 1 0 NA NA
## 898 NA 1 0 NA NA
## 899 NA 1 0 NA NA
## 900 NA 1 0 NA NA
## 901 NA 1 0 NA NA
## 902 NA 1 0 NA NA
## 903 NA 1 0 NA NA
## 904 NA 1 0 NA NA
## 905 NA 1 0 NA NA
## 906 NA 1 0 NA NA
## 907 NA 1 0 NA NA
## 908 NA 1 0 NA NA
## 909 NA 1 0 NA NA
## 910 NA 1 0 NA NA
## 911 NA 1 0 NA NA
## 912 NA 1 0 NA NA
## 913 NA 1 0 NA NA
## 914 NA 1 0 NA NA
## 915 NA 1 0 NA NA
## 916 NA 1 0 NA NA
## 917 NA 1 0 NA NA
## 918 NA 1 0 NA NA
## 919 NA 1 0 NA NA
## 920 NA 1 0 NA NA
## 921 NA 1 0 NA NA
## 922 NA 1 0 NA NA
## 923 NA 1 0 NA NA
## 924 NA 1 0 NA NA
## 925 NA 1 0 NA NA
## 926 NA 1 0 NA NA
## 927 NA 1 0 NA NA
## 928 NA 1 0 NA NA
## 929 NA 1 0 NA NA
## 930 NA 1 0 NA NA
## 931 NA 1 0 NA NA
## 932 NA 1 0 NA NA
## 933 NA 1 0 NA NA
## 934 NA 1 0 NA NA
## 935 NA 1 0 NA NA
## 936 NA 1 0 NA NA
## 937 NA 1 0 NA NA
## 938 NA 1 0 NA NA
## 939 NA 1 0 NA NA
## 940 NA 1 0 NA NA
## 941 NA 1 0 NA NA
## 942 NA 1 0 NA NA
## 943 NA 1 0 NA NA
## 944 NA 1 0 NA NA
## 945 NA 1 0 NA NA
## 946 NA 1 0 NA NA
## 947 NA 1 0 NA NA
## 948 NA 1 0 NA NA
## 949 NA 1 0 NA NA
## 950 NA 1 0 NA NA
## 951 NA 1 0 NA NA
## 952 NA 1 0 NA NA
## 953 NA 1 0 NA NA
## 954 NA 1 0 NA NA
## 955 NA 1 0 NA NA
## 956 NA 1 0 NA NA
## 957 NA 1 0 NA NA
## 958 NA 1 0 NA NA
## 959 NA 1 0 NA NA
## 960 NA 1 0 NA NA
## 961 NA 1 0 NA NA
## 962 NA 1 0 NA NA
## 963 NA 1 0 NA NA
## 964 NA 1 0 NA NA
## 965 NA 1 0 NA NA
## 966 NA 1 0 NA NA
## 967 NA 1 0 NA NA
## 968 NA 1 0 NA NA
## 969 NA 1 0 NA NA
## 970 NA 1 0 NA NA
## 971 NA 1 0 NA NA
## 972 NA 1 0 NA NA
## 973 NA 1 0 NA NA
## 974 NA 1 0 NA NA
## 975 NA 1 0 NA NA
## 976 NA 1 0 NA NA
## 977 NA 1 0 NA NA
## 978 NA 1 0 NA NA
## 979 NA 1 0 NA NA
## 980 NA 1 0 NA NA
## 981 NA 1 0 NA NA
## 982 NA 1 0 NA NA
## 983 NA 1 0 NA NA
## 984 NA 1 0 NA NA
## 985 NA 1 0 NA NA
## 986 NA 1 0 NA NA
## 987 NA 1 0 NA NA
## 988 NA 1 0 NA NA
## 989 NA 1 0 NA NA
## 990 NA 1 0 NA NA
## 991 NA 1 0 NA NA
## 992 NA 1 0 NA NA
## 993 NA 1 0 NA NA
## 994 NA 1 0 NA NA
## 995 NA 1 0 NA NA
## 996 NA 1 0 NA NA
## 997 NA 1 0 NA NA
## 998 NA 1 0 NA NA
## 999 NA 1 0 NA NA
## 1000 NA 1 0 NA NA
## 1001 NA 1 0 NA NA
## 1002 NA 1 0 NA NA
## 1003 NA 1 0 NA NA
## 1004 NA 1 0 NA NA
## 1005 NA 1 0 NA NA
## 1006 NA 1 0 NA NA
## 1007 NA 1 0 NA NA
## 1008 NA 1 0 NA NA
## 1009 NA 1 0 NA NA
## 1010 NA 1 0 NA NA
## 1011 NA 1 0 NA NA
## 1012 NA 1 0 NA NA
## 1013 NA 1 0 NA NA
## 1014 NA 1 0 NA NA
## 1015 NA 1 0 NA NA
## 1016 NA 1 0 NA NA
## 1017 NA 1 0 NA NA
## 1018 NA 1 0 NA NA
## 1019 NA 1 0 NA NA
## 1020 NA 1 0 NA NA
## 1021 NA 1 0 NA NA
## 1022 NA 1 0 NA NA
## 1023 NA 1 0 NA NA
## 1024 NA 1 0 NA NA
## 1025 NA 1 0 NA NA
## 1026 NA 1 0 NA NA
## 1027 NA 1 0 NA NA
## 1028 NA 1 0 NA NA
## 1029 NA 1 0 NA NA
## 1030 NA 1 0 NA NA
## 1031 NA 1 0 NA NA
## 1032 NA 1 0 NA NA
## 1033 NA 1 0 NA NA
## 1034 NA 1 0 NA NA
## 1035 NA 1 0 NA NA
## 1036 NA 1 0 NA NA
## 1037 NA 1 0 NA NA
## 1038 NA 1 0 NA NA
## 1039 NA 1 0 NA NA
## 1040 NA 1 0 NA NA
## 1041 NA 1 0 NA NA
## 1042 NA 1 0 NA NA
## 1043 NA 1 0 NA NA
## 1044 NA 1 0 NA NA
## 1045 NA 1 0 NA NA
## 1046 NA 1 0 NA NA
## 1047 NA 1 0 NA NA
## 1048 NA 1 0 NA NA
## 1049 NA 1 0 NA NA
## 1050 NA 1 0 NA NA
## 1051 NA 1 0 NA NA
## 1052 NA 1 0 NA NA
## 1053 NA 1 0 NA NA
## 1054 NA 1 0 NA NA
## 1055 NA 1 0 NA NA
## 1056 NA 1 0 NA NA
## 1057 NA 1 0 NA NA
## 1058 NA 1 0 NA NA
## 1059 NA 1 0 NA NA
## 1060 NA 1 0 NA NA
## 1061 NA 1 0 NA NA
## 1062 NA 1 0 NA NA
## 1063 NA 1 0 NA NA
## 1064 NA 1 0 NA NA
## 1065 NA 1 0 NA NA
## 1066 NA 1 0 NA NA
## 1067 NA 1 0 NA NA
## 1068 NA 1 0 NA NA
## 1069 NA 1 0 NA NA
## 1070 NA 1 0 NA NA
## 1071 NA 1 0 NA NA
## 1072 NA 1 0 NA NA
## 1073 NA 1 0 NA NA
## 1074 NA 1 0 NA NA
## 1075 NA 1 0 NA NA
## 1076 NA 1 0 NA NA
## 1077 NA 1 0 NA NA
## 1078 NA 1 0 NA NA
## 1079 NA 1 0 NA NA
## 1080 NA 1 0 NA NA
## 1081 NA 1 0 NA NA
## 1082 NA 1 0 NA NA
## 1083 NA 1 0 NA NA
## 1084 NA 1 0 NA NA
## 1085 NA 1 0 NA NA
## 1086 NA 1 0 NA NA
## 1087 NA 1 0 NA NA
## 1088 NA 1 0 NA NA
## 1089 NA 1 0 NA NA
## 1090 NA 1 0 NA NA
## 1091 NA 1 0 NA NA
## 1092 NA 1 0 NA NA
## 1093 NA 1 0 NA NA
## 1094 NA 1 0 NA NA
## 1095 NA 1 0 NA NA
## 1096 NA 1 0 NA NA
## 1097 NA 1 0 NA NA
## 1098 NA 1 0 NA NA
## 1099 NA 1 0 NA NA
## 1100 NA 1 0 NA NA
## 1101 NA 1 0 NA NA
## 1102 NA 1 0 NA NA
## 1103 NA 1 0 NA NA
## 1104 NA 1 0 NA NA
## 1105 NA 1 0 NA NA
## 1106 NA 1 0 NA NA
## 1107 NA 1 0 NA NA
## 1108 NA 1 0 NA NA
## 1109 NA 1 0 NA NA
## 1110 NA 1 0 NA NA
## 1111 NA 1 0 NA NA
## 1112 NA 1 0 NA NA
## 1113 NA 1 0 NA NA
## 1114 NA 1 0 NA NA
## 1115 NA 1 0 NA NA
## 1116 NA 1 0 NA NA
## 1117 NA 1 0 NA NA
## 1118 NA 1 0 NA NA
## 1119 NA 1 0 NA NA
## 1120 NA 1 0 NA NA
## 1121 NA 1 0 NA NA
## 1122 NA 1 0 NA NA
## 1123 NA 1 0 NA NA
## 1124 NA 1 0 NA NA
## 1125 NA 1 0 NA NA
## 1126 NA 1 0 NA NA
## 1127 NA 1 0 NA NA
## 1128 NA 1 0 NA NA
## 1129 NA 1 0 NA NA
## 1130 NA 1 0 NA NA
## 1131 NA 1 0 NA NA
## 1132 NA 1 0 NA NA
## 1133 NA 1 0 NA NA
## 1134 NA 1 0 NA NA
## 1135 NA 1 0 NA NA
## 1136 NA 1 0 NA NA
## 1137 NA 1 0 NA NA
## 1138 NA 1 0 NA NA
## 1139 NA 1 0 NA NA
## 1140 NA 1 0 NA NA
## 1141 NA 1 0 NA NA
## 1142 NA 1 0 NA NA
## 1143 NA 1 0 NA NA
## 1144 NA 1 0 NA NA
## 1145 NA 1 0 NA NA
## 1146 NA 1 0 NA NA
## 1147 NA 1 0 NA NA
## 1148 NA 1 0 NA NA
## 1149 NA 1 0 NA NA
## 1150 NA 1 0 NA NA
## 1151 NA 1 0 NA NA
## 1152 NA 1 0 NA NA
## 1153 NA 1 0 NA NA
## 1154 NA 1 0 NA NA
## 1155 NA 1 0 NA NA
## 1156 NA 1 0 NA NA
## 1157 NA 1 0 NA NA
## 1158 NA 1 0 NA NA
## 1159 NA 1 0 NA NA
## 1160 NA 1 0 NA NA
## 1161 NA 1 0 NA NA
## 1162 NA 1 0 NA NA
## 1163 NA 1 0 NA NA
## 1164 NA 1 0 NA NA
## 1165 NA 1 0 NA NA
## 1166 NA 1 0 NA NA
## 1167 NA 1 0 NA NA
## 1168 NA 1 0 NA NA
## 1169 NA 1 0 NA NA
## 1170 NA 1 0 NA NA
## 1171 NA 1 0 NA NA
## 1172 NA 1 0 NA NA
## 1173 NA 1 0 NA NA
## 1174 NA 1 0 NA NA
## 1175 NA 1 0 NA NA
## 1176 NA 1 0 NA NA
## 1177 NA 1 0 NA NA
## 1178 NA 1 0 NA NA
## 1179 NA 1 0 NA NA
## 1180 NA 1 0 NA NA
## 1181 NA 1 0 NA NA
## 1182 NA 1 0 NA NA
## 1183 NA 1 0 NA NA
## 1184 NA 1 0 NA NA
## 1185 NA 1 0 NA NA
## 1186 NA 1 0 NA NA
## 1187 NA 1 0 NA NA
## 1188 NA 1 0 NA NA
## 1189 NA 1 0 NA NA
## 1190 NA 1 0 NA NA
## 1191 NA 1 0 NA NA
## 1192 NA 1 0 NA NA
## 1193 NA 1 0 NA NA
## 1194 NA 1 0 NA NA
## 1195 NA 1 0 NA NA
## 1196 NA 1 0 NA NA
## 1197 NA 1 0 NA NA
## 1198 NA 1 0 NA NA
## 1199 NA 1 0 NA NA
## 1200 NA 1 0 NA NA
## 1201 NA 1 0 NA NA
## 1202 NA 1 0 NA NA
## 1203 NA 1 0 NA NA
## 1204 NA 1 0 NA NA
## 1205 NA 1 0 NA NA
## 1206 NA 1 0 NA NA
## 1207 NA 1 0 NA NA
## 1208 NA 1 0 NA NA
## 1209 NA 1 0 NA NA
## 1210 NA 1 0 NA NA
## 1211 NA 1 0 NA NA
## 1212 NA 1 0 NA NA
## 1213 NA 1 0 NA NA
## 1214 NA 1 0 NA NA
## 1215 NA 1 0 NA NA
## 1216 NA 1 0 NA NA
## 1217 NA 1 0 NA NA
## 1218 NA 1 0 NA NA
## 1219 NA 1 0 NA NA
## 1220 NA 1 0 NA NA
## 1221 NA 1 0 NA NA
## 1222 NA 1 0 NA NA
## 1223 NA 1 0 NA NA
## 1224 NA 1 0 NA NA
## 1225 NA 1 0 NA NA
## 1226 NA 1 0 NA NA
## 1227 NA 1 0 NA NA
## 1228 NA 1 0 NA NA
## 1229 NA 1 0 NA NA
## 1230 NA 1 0 NA NA
## 1231 NA 1 0 NA NA
## 1232 NA 1 0 NA NA
## 1233 NA 1 0 NA NA
## 1234 NA 1 0 NA NA
## 1235 NA 1 0 NA NA
## 1236 NA 1 0 NA NA
## 1237 NA 1 0 NA NA
## 1238 NA 1 0 NA NA
## 1239 NA 1 0 NA NA
## 1240 NA 1 0 NA NA
## 1241 NA 1 0 NA NA
## 1242 NA 1 0 NA NA
## 1243 NA 1 0 NA NA
## 1244 NA 1 0 NA NA
## 1245 NA 1 0 NA NA
## 1246 NA 1 0 NA NA
## 1247 NA 1 0 NA NA
## 1248 NA 1 0 NA NA
## 1249 NA 1 0 NA NA
## 1250 NA 1 0 NA NA
## 1251 NA 1 0 NA NA
## 1252 NA 1 0 NA NA
## 1253 NA 1 0 NA NA
## 1254 NA 1 0 NA NA
## 1255 NA 1 0 NA NA
## 1256 NA 1 0 NA NA
## 1257 NA 1 0 NA NA
## 1258 NA 1 0 NA NA
## 1259 NA 1 0 NA NA
## 1260 NA 1 0 NA NA
## 1261 NA 1 0 NA NA
## 1262 NA 1 0 NA NA
## 1263 NA 1 0 NA NA
## 1264 NA 1 0 NA NA
## 1265 NA 1 0 NA NA
## 1266 NA 1 0 NA NA
## 1267 NA 1 0 NA NA
## 1268 NA 1 0 NA NA
## 1269 NA 1 0 NA NA
## 1270 NA 1 0 NA NA
## 1271 NA 1 0 NA NA
## 1272 NA 1 0 NA NA
## 1273 NA 1 0 NA NA
## 1274 NA 1 0 NA NA
## 1275 NA 1 0 NA NA
## 1276 NA 1 0 NA NA
## 1277 NA 1 0 NA NA
## 1278 NA 1 0 NA NA
## 1279 NA 1 0 NA NA
## 1280 NA 1 0 NA NA
## 1281 NA 1 0 NA NA
## 1282 NA 1 0 NA NA
## 1283 NA 1 0 NA NA
## 1284 NA 1 0 NA NA
## 1285 NA 1 0 NA NA
## 1286 NA 1 0 NA NA
## 1287 NA 1 0 NA NA
## 1288 NA 1 0 NA NA
## 1289 NA 1 0 NA NA
## 1290 NA 1 0 NA NA
## 1291 NA 1 0 NA NA
## 1292 NA 1 0 NA NA
## 1293 NA 1 0 NA NA
## 1294 NA 1 0 NA NA
## 1295 NA 1 0 NA NA
## 1296 NA 1 0 NA NA
## 1297 NA 1 0 NA NA
## 1298 NA 1 0 NA NA
## 1299 NA 1 0 NA NA
## 1300 NA 1 0 NA NA
## 1301 NA 1 0 NA NA
## 1302 NA 1 0 NA NA
## 1303 NA 1 0 NA NA
## 1304 NA 1 0 NA NA
## 1305 NA 1 0 NA NA
## 1306 NA 1 0 NA NA
## 1307 NA 1 0 NA NA
## 1308 NA 1 0 NA NA
## 1309 NA 1 0 NA NA
## 1310 NA 1 0 NA NA
## 1311 NA 1 0 NA NA
## 1312 NA 1 0 NA NA
## 1313 NA 1 0 NA NA
## 1314 NA 1 0 NA NA
## 1315 NA 1 0 NA NA
## 1316 NA 1 0 NA NA
## 1317 NA 1 0 NA NA
## 1318 NA 1 0 NA NA
## 1319 NA 1 0 NA NA
## 1320 NA 1 0 NA NA
## 1321 NA 1 0 NA NA
## 1322 NA 1 0 NA NA
## 1323 NA 1 0 NA NA
## 1324 NA 1 0 NA NA
## 1325 NA 1 0 NA NA
## 1326 NA 1 0 NA NA
## 1327 NA 1 0 NA NA
## 1328 NA 1 0 NA NA
## 1329 NA 1 0 NA NA
## 1330 NA 1 0 NA NA
## 1331 NA 1 0 NA NA
## 1332 NA 1 0 NA NA
## 1333 NA 1 0 NA NA
## 1334 NA 1 0 NA NA
## 1335 NA 1 0 NA NA
## 1336 NA 1 0 NA NA
## 1337 NA 1 0 NA NA
## 1338 NA 1 0 NA NA
## 1339 NA 1 0 NA NA
## 1340 NA 1 0 NA NA
## 1341 NA 1 0 NA NA
## 1342 NA 1 0 NA NA
## 1343 NA 1 0 NA NA
## 1344 NA 1 0 NA NA
## 1345 NA 1 0 NA NA
## 1346 NA 1 0 NA NA
## 1347 NA 1 0 NA NA
## 1348 NA 1 0 NA NA
## 1349 NA 1 0 NA NA
## 1350 NA 1 0 NA NA
## 1351 NA 1 0 NA NA
## 1352 NA 1 0 NA NA
## 1353 NA 1 0 NA NA
## 1354 NA 1 0 NA NA
## 1355 NA 1 0 NA NA
## 1356 NA 1 0 NA NA
## 1357 NA 1 0 NA NA
## 1358 NA 1 0 NA NA
## 1359 NA 1 0 NA NA
## 1360 NA 1 0 NA NA
## 1361 NA 1 0 NA NA
## 1362 NA 1 0 NA NA
## 1363 NA 1 0 NA NA
## 1364 NA 1 0 NA NA
## 1365 NA 1 0 NA NA
## 1366 NA 1 0 NA NA
## 1367 NA 1 0 NA NA
## 1368 NA 1 0 NA NA
## 1369 NA 1 0 NA NA
## 1370 NA 1 0 NA NA
## 1371 NA 1 0 NA NA
## 1372 NA 1 0 NA NA
## 1373 NA 1 0 NA NA
## 1374 NA 1 0 NA NA
## 1375 NA 1 0 NA NA
## 1376 NA 1 0 NA NA
## 1377 NA 1 0 NA NA
## 1378 NA 1 0 NA NA
## 1379 NA 1 0 NA NA
## 1380 NA 1 0 NA NA
## 1381 NA 1 0 NA NA
## 1382 NA 1 0 NA NA
## 1383 NA 1 0 NA NA
## 1384 NA 1 0 NA NA
## 1385 NA 1 0 NA NA
## 1386 NA 1 0 NA NA
## 1387 NA 1 0 NA NA
## 1388 NA 1 0 NA NA
## 1389 NA 1 0 NA NA
## 1390 NA 1 0 NA NA
## 1391 NA 1 0 NA NA
## 1392 NA 1 0 NA NA
## 1393 NA 1 0 NA NA
## 1394 NA 1 0 NA NA
## 1395 NA 1 0 NA NA
## 1396 NA 1 0 NA NA
## 1397 NA 1 0 NA NA
## 1398 NA 1 0 NA NA
## 1399 NA 1 0 NA NA
## 1400 NA 1 0 NA NA
## 1401 NA 1 0 NA NA
## 1402 NA 1 0 NA NA
## 1403 NA 1 0 NA NA
## 1404 NA 1 0 NA NA
## 1405 NA 1 0 NA NA
## 1406 NA 1 0 NA NA
## 1407 NA 1 0 NA NA
## 1408 NA 1 0 NA NA
## 1409 NA 1 0 NA NA
## 1410 NA 1 0 NA NA
## 1411 NA 1 0 NA NA
## 1412 NA 1 0 NA NA
## 1413 NA 1 0 NA NA
## 1414 NA 1 0 NA NA
## 1415 NA 1 0 NA NA
## 1416 NA 1 0 NA NA
## 1417 NA 1 0 NA NA
## 1418 NA 1 0 NA NA
## 1419 NA 1 0 NA NA
## 1420 NA 1 0 NA NA
## 1421 NA 1 0 NA NA
## 1422 NA 1 0 NA NA
## 1423 NA 1 0 NA NA
## 1424 NA 1 0 NA NA
## 1425 NA 1 0 NA NA
## 1426 NA 1 0 NA NA
## 1427 NA 1 0 NA NA
## 1428 NA 1 0 NA NA
## 1429 NA 1 0 NA NA
## 1430 NA 1 0 NA NA
## 1431 NA 1 0 NA NA
## 1432 NA 1 0 NA NA
## 1433 NA 1 0 NA NA
## 1434 NA 1 0 NA NA
## 1435 NA 1 0 NA NA
## 1436 NA 1 0 NA NA
## 1437 NA 1 0 NA NA
## 1438 NA 1 0 NA NA
## 1439 NA 1 0 NA NA
## 1440 NA 1 0 NA NA
## 1441 NA 1 0 NA NA
## 1442 NA 1 0 NA NA
## 1443 NA 1 0 NA NA
## 1444 NA 1 0 NA NA
## 1445 NA 1 0 NA NA
## 1446 NA 1 0 NA NA
## 1447 NA 1 0 NA NA
## 1448 NA 1 0 NA NA
## 1449 NA 1 0 NA NA
## 1450 NA 1 0 NA NA
## 1451 NA 1 0 NA NA
## 1452 NA 1 0 NA NA
## 1453 NA 1 0 NA NA
## 1454 NA 1 0 NA NA
## 1455 NA 1 0 NA NA
## 1456 NA 1 0 NA NA
## 1457 NA 1 0 NA NA
## 1458 NA 1 0 NA NA
## 1459 NA 1 0 NA NA
## 1460 NA 1 0 NA NA
## 1461 NA 1 0 NA NA
## 1462 NA 1 0 NA NA
## 1463 NA 1 0 NA NA
## 1464 NA 1 0 NA NA
## 1465 NA 1 0 NA NA
## 1466 NA 1 0 NA NA
## 1467 NA 1 0 NA NA
## 1468 NA 1 0 NA NA
## 1469 NA 1 0 NA NA
## 1470 NA 1 0 NA NA
## 1471 NA 1 0 NA NA
## 1472 NA 1 0 NA NA
## 1473 NA 1 0 NA NA
## 1474 NA 1 0 NA NA
## 1475 NA 1 0 NA NA
## 1476 NA 1 0 NA NA
## 1477 NA 1 0 NA NA
## 1478 NA 1 0 NA NA
## 1479 NA 1 0 NA NA
## 1480 NA 1 0 NA NA
## 1481 NA 1 0 NA NA
## 1482 NA 1 0 NA NA
## 1483 NA 1 0 NA NA
## 1484 NA 1 0 NA NA
## 1485 NA 1 0 NA NA
## 1486 NA 1 0 NA NA
## 1487 NA 1 0 NA NA
## 1488 NA 1 0 NA NA
## 1489 NA 1 0 NA NA
## 1490 NA 1 0 NA NA
## 1491 NA 1 0 NA NA
## 1492 NA 1 0 NA NA
## 1493 NA 1 0 NA NA
## 1494 NA 1 0 NA NA
## 1495 NA 1 0 NA NA
## 1496 NA 1 0 NA NA
## 1497 NA 1 0 NA NA
## 1498 NA 1 0 NA NA
## 1499 NA 1 0 NA NA
## 1500 NA 1 0 NA NA
## 1501 NA 1 0 NA NA
## 1502 NA 1 0 NA NA
## 1503 NA 1 0 NA NA
## 1504 NA 1 0 NA NA
## 1505 NA 1 0 NA NA
## 1506 NA 1 0 NA NA
## 1507 NA 1 0 NA NA
## 1508 NA 1 0 NA NA
## 1509 NA 1 0 NA NA
## 1510 NA 1 0 NA NA
## 1511 NA 1 0 NA NA
## 1512 NA 1 0 NA NA
## 1513 NA 1 0 NA NA
## 1514 NA 1 0 NA NA
## 1515 NA 1 0 NA NA
## 1516 NA 1 0 NA NA
## 1517 NA 1 0 NA NA
## 1518 NA 1 0 NA NA
## 1519 NA 1 0 NA NA
## 1520 NA 1 0 NA NA
## 1521 NA 1 0 NA NA
## 1522 NA 1 0 NA NA
## 1523 NA 1 0 NA NA
## 1524 NA 1 0 NA NA
## 1525 NA 1 0 NA NA
## 1526 NA 1 0 NA NA
## 1527 NA 1 0 NA NA
## 1528 NA 1 0 NA NA
## 1529 NA 1 0 NA NA
## 1530 NA 1 0 NA NA
## 1531 NA 1 0 NA NA
## 1532 NA 1 0 NA NA
## 1533 NA 1 0 NA NA
## 1534 NA 1 0 NA NA
## 1535 NA 1 0 NA NA
## 1536 NA 1 0 NA NA
## 1537 NA 1 0 NA NA
## 1538 NA 1 0 NA NA
## Days_since_last_review Capacity_Sqr Beds_Sqr Baths_Sqr ln_Price ln_Beds
## 1 21 4 1 NA 4.905275 0.6931472
## 2 107 4 1 NA 5.843544 0.6931472
## 3 5 4 1 NA 5.241747 0.6931472
## 4 34 4 1 NA 4.997212 0.6931472
## 5 19 16 9 NA 5.298317 1.3862944
## 6 655 1 1 NA 5.293305 0.6931472
## 7 68 4 1 NA 4.736198 0.6931472
## 8 11 4 1 NA 5.198497 0.6931472
## 9 21 4 1 NA 5.303305 0.6931472
## 10 27 9 1 NA 5.723585 0.6931472
## 11 652 1 1 NA 4.204693 0.6931472
## 12 201 4 1 NA 4.584967 0.6931472
## 13 12 4 9 NA 5.049856 1.3862944
## 14 19 4 1 NA 4.875197 0.6931472
## 15 638 4 1 NA 3.828641 0.6931472
## 16 12 9 1 NA 5.318120 0.6931472
## 17 8 4 1 NA 5.293305 0.6931472
## 18 293 4 1 NA 4.174387 0.6931472
## 19 44 4 1 NA 4.962845 0.6931472
## 20 51 4 1 NA 5.129899 0.6931472
## 21 638 4 1 NA 3.931826 0.6931472
## 22 21 9 4 NA 4.969813 1.0986123
## 23 9 16 9 NA 4.941642 1.3862944
## 24 231 4 4 NA 4.499810 1.0986123
## 25 25 4 1 NA 4.465908 0.6931472
## 26 640 25 9 NA 4.941642 1.3862944
## 27 11 4 1 NA 4.912655 0.6931472
## 28 439 4 1 NA 4.394449 0.6931472
## 29 9 4 1 NA 4.787492 0.6931472
## 30 77 4 1 NA 5.283204 0.6931472
## 31 114 4 1 NA 4.442651 0.6931472
## 32 685 4 1 NA 4.189655 0.6931472
## 33 229 4 4 NA 4.248495 1.0986123
## 34 121 64 9 NA 5.075174 1.3862944
## 35 25 4 1 NA 5.356586 0.6931472
## 36 7 4 1 NA 5.087596 0.6931472
## 37 211 4 1 NA 4.110874 0.6931472
## 38 194 16 4 NA 5.141664 1.0986123
## 39 17 16 9 NA 4.787492 1.3862944
## 40 58 4 1 NA 4.836282 0.6931472
## 41 21 64 9 NA 5.905362 1.3862944
## 42 208 1 1 NA 4.820282 0.6931472
## 43 24 1 1 NA 3.663562 0.6931472
## 44 20 4 9 NA 5.135798 1.3862944
## 45 648 4 1 NA 3.610918 0.6931472
## 46 286 4 1 NA 4.510860 0.6931472
## 47 691 4 4 NA 3.761200 1.0986123
## 48 25 256 49 NA 5.860786 2.0794415
## 49 48 36 9 NA 5.638355 1.3862944
## 50 13 4 1 NA 5.411646 0.6931472
## 51 10 4 1 NA 5.099866 0.6931472
## 52 668 1 1 NA 3.401197 0.6931472
## 53 160 4 1 NA 4.574711 0.6931472
## 54 23 4 4 NA 4.875197 1.0986123
## 55 13 4 1 NA 5.099866 0.6931472
## 56 22 16 4 NA 5.459586 1.0986123
## 57 15 4 4 NA 4.969813 1.0986123
## 58 74 1 1 NA 4.110874 0.6931472
## 59 36 4 1 NA 4.595120 0.6931472
## 60 15 16 9 NA 4.927254 1.3862944
## 61 20 64 9 NA 6.175867 1.3862944
## 62 21 64 16 NA 6.287859 1.6094379
## 63 29 4 4 NA 4.905275 1.0986123
## 64 62 25 9 NA 5.062595 1.3862944
## 65 655 25 9 NA 4.875197 1.3862944
## 66 680 4 1 NA 4.174387 0.6931472
## 67 87 4 1 NA 5.298317 0.6931472
## 68 691 9 16 NA 4.394449 1.6094379
## 69 19 16 9 NA 5.303305 1.3862944
## 70 24 36 9 NA 6.126869 1.3862944
## 71 685 49 9 NA 4.867534 1.3862944
## 72 349 4 4 NA 3.784190 1.0986123
## 73 19 4 1 NA 4.189655 0.6931472
## 74 186 36 9 NA 5.638355 1.3862944
## 75 346 1 1 NA 3.806662 0.6931472
## 76 26 4 1 NA 4.110874 0.6931472
## 77 64 4 1 NA 3.713572 0.6931472
## 78 662 16 9 NA 5.796058 1.3862944
## 79 16 4 1 NA 4.510860 0.6931472
## 80 19 16 9 NA 6.126869 1.3862944
## 81 83 64 16 NA 5.525453 1.6094379
## 82 313 64 25 NA 6.042633 1.7917595
## 83 659 4 1 NA 3.912023 0.6931472
## 84 487 9 4 NA 4.762174 1.0986123
## 85 139 4 1 NA 5.147494 0.6931472
## 86 7 4 1 NA 5.556828 0.6931472
## 87 27 4 1 NA 3.891820 0.6931472
## 88 245 36 4 NA 5.075174 1.0986123
## 89 656 4 1 NA 3.688879 0.6931472
## 90 30 4 1 NA 4.700480 0.6931472
## 91 679 144 144 NA 3.332205 2.5649494
## 92 519 1 1 NA 4.795791 0.6931472
## 93 659 1 NA NA 4.488636 NA
## 94 24 4 4 NA 5.003946 1.0986123
## 95 114 16 4 NA 5.796058 1.0986123
## 96 22 16 4 NA 4.912655 1.0986123
## 97 349 64 16 NA 5.888878 1.6094379
## 98 148 64 25 NA 6.042633 1.7917595
## 99 33 81 25 NA 5.955837 1.7917595
## 100 546 4 1 NA 4.234107 0.6931472
## 101 21 1 1 NA 4.905275 0.6931472
## 102 703 1 NA NA 4.077537 NA
## 103 535 4 1 NA 4.262680 0.6931472
## 104 22 9 1 NA 3.828641 0.6931472
## 105 376 9 9 NA 3.891820 1.3862944
## 106 40 16 4 NA 6.042633 1.0986123
## 107 132 9 1 NA 4.143135 0.6931472
## 108 401 36 9 NA 5.638355 1.3862944
## 109 7 4 4 NA 4.962845 1.0986123
## 110 12 1 1 NA 4.488636 0.6931472
## 111 626 9 4 NA 4.948760 1.0986123
## 112 37 4 1 NA 4.663439 0.6931472
## 113 158 4 1 NA 4.499810 0.6931472
## 114 48 4 4 NA 4.709530 1.0986123
## 115 27 4 1 NA 3.891820 0.6931472
## 116 61 9 4 NA 3.891820 1.0986123
## 117 15 9 1 NA 3.850148 0.6931472
## 118 732 4 1 NA 5.017280 0.6931472
## 119 658 64 64 NA 3.401197 2.1972246
## 120 118 144 25 NA 6.226537 1.7917595
## 121 658 4 1 NA 4.174387 0.6931472
## 122 20 16 4 NA 5.857933 1.0986123
## 123 41 16 4 NA 5.159055 1.0986123
## 124 17 81 25 NA 5.971262 1.7917595
## 125 31 4 1 NA 4.605170 0.6931472
## 126 677 36 9 NA 4.605170 1.3862944
## 127 136 16 4 NA 4.595120 1.0986123
## 128 10 36 25 NA 5.003946 1.7917595
## 129 370 25 4 NA 4.859812 1.0986123
## 130 28 16 4 NA 5.805135 1.0986123
## 131 9 4 4 NA 5.111988 1.0986123
## 132 110 4 1 NA 5.147494 0.6931472
## 133 917 9 1 NA 4.110874 0.6931472
## 134 307 4 1 NA 5.198497 0.6931472
## 135 260 4 1 NA 3.912023 0.6931472
## 136 290 81 16 NA 5.955837 1.6094379
## 137 678 144 25 NA 6.253829 1.7917595
## 138 38 16 4 NA 5.730100 1.0986123
## 139 26 64 1 NA 5.192957 0.6931472
## 140 53 4 1 NA 4.605170 0.6931472
## 141 78 1 1 NA 4.948760 0.6931472
## 142 658 9 4 NA 4.948760 1.0986123
## 143 313 4 4 NA 4.875197 1.0986123
## 144 595 4 1 NA 4.700480 0.6931472
## 145 21 4 4 NA 4.394449 1.0986123
## 146 697 9 4 NA 4.510860 1.0986123
## 147 26 1 1 NA 4.488636 0.6931472
## 148 32 16 4 NA 5.560682 1.0986123
## 149 91 1 1 NA 5.176150 0.6931472
## 150 690 36 25 NA 5.673323 1.7917595
## 151 662 36 36 NA 3.401197 1.9459101
## 152 28 9 9 NA 5.129899 1.3862944
## 153 612 1 1 NA 3.931826 0.6931472
## 154 713 4 1 NA 3.931826 0.6931472
## 155 16 4 1 NA 3.850148 0.6931472
## 156 650 36 1296 NA 4.060443 3.6109179
## 157 24 4 1 NA 5.209486 0.6931472
## 158 32 81 16 NA 6.047372 1.6094379
## 159 10 16 4 NA 5.730100 1.0986123
## 160 154 25 1 NA 4.262680 0.6931472
## 161 27 4 1 NA 5.411646 0.6931472
## 162 668 36 25 NA 5.303305 1.7917595
## 163 135 16 4 NA 5.752573 1.0986123
## 164 700 1 1 NA 4.158883 0.6931472
## 165 694 4 1 NA 4.174387 0.6931472
## 166 662 4 1 NA 4.394449 0.6931472
## 167 639 4 1 NA 4.795791 0.6931472
## 168 80 36 9 NA 6.923629 1.3862944
## 169 280 36 1 NA 4.394449 0.6931472
## 170 659 25 16 NA 5.198497 1.6094379
## 171 46 9 1 NA 3.433987 0.6931472
## 172 461 16 1 NA 5.545177 0.6931472
## 173 292 4 1 NA 4.718499 0.6931472
## 174 68 4 1 NA 5.267858 0.6931472
## 175 35 4 1 NA 4.262680 0.6931472
## 176 240 4 1 NA 4.369448 0.6931472
## 177 31 4 1 NA 4.290459 0.6931472
## 178 693 4 1 NA 4.174387 0.6931472
## 179 268 9 1 NA 4.143135 0.6931472
## 180 221 36 9 NA 5.398163 1.3862944
## 181 182 4 1 NA 4.262680 0.6931472
## 182 659 100 100 NA 3.332205 2.3978953
## 183 98 1 1 NA 4.248495 0.6931472
## 184 248 9 4 NA 4.043051 1.0986123
## 185 671 16 9 NA 4.025352 1.3862944
## 186 30 9 1 NA 3.784190 0.6931472
## 187 18 4 1 NA 5.093750 0.6931472
## 188 905 49 1 NA 4.262680 0.6931472
## 189 248 25 9 NA 5.252273 1.3862944
## 190 661 4 1 NA 4.262680 0.6931472
## 191 28 4 1 NA 4.189655 0.6931472
## 192 275 4 9 NA 4.369448 1.3862944
## 193 661 64 64 NA 3.367296 2.1972246
## 194 58 4 1 NA 5.521461 0.6931472
## 195 30 4 4 NA 3.912023 1.0986123
## 196 82 4 1 NA 4.912655 0.6931472
## 197 916 4 1 NA 3.828641 0.6931472
## 198 718 4 4 NA 4.356709 1.0986123
## 199 40 9 1 NA 4.060443 0.6931472
## 200 675 4 1 NA 3.912023 0.6931472
## 201 36 4 1 NA 5.204007 0.6931472
## 202 26 9 4 NA 4.127134 1.0986123
## 203 665 4 1 NA 4.605170 0.6931472
## 204 662 64 64 NA 3.367296 2.1972246
## 205 26 16 1 NA 5.231109 0.6931472
## 206 213 4 4 NA 4.234107 1.0986123
## 207 716 4 1 NA 4.753590 0.6931472
## 208 665 4 1 NA 4.510860 0.6931472
## 209 682 1 1 NA 3.713572 0.6931472
## 210 352 4 1 NA 5.017280 0.6931472
## 211 160 4 1 NA 4.430817 0.6931472
## 212 30 4 1 NA 5.484797 0.6931472
## 213 705 4 1 NA 4.174387 0.6931472
## 214 148 9 1 NA 3.951244 0.6931472
## 215 517 4 1 NA 4.043051 0.6931472
## 216 378 16 1 NA 4.919981 0.6931472
## 217 656 25 9 NA 5.081404 1.3862944
## 218 391 4 1 NA 4.094345 0.6931472
## 219 451 1 1 NA 3.555348 0.6931472
## 220 580 25 16 NA 4.955827 1.6094379
## 221 706 4 1 NA 5.402677 0.6931472
## 222 163 9 4 NA 4.615121 1.0986123
## 223 439 4 1 NA 4.859812 0.6931472
## 224 23 4 1 NA 5.105945 0.6931472
## 225 717 1 1 NA 4.189655 0.6931472
## 226 860 1 1 NA 4.127134 0.6931472
## 227 687 4 4 NA 4.955827 1.0986123
## 228 20 1 1 NA 4.406719 0.6931472
## 229 319 9 4 NA 5.198497 1.0986123
## 230 535 4 1 NA 4.663439 0.6931472
## 231 690 4 1 NA 4.174387 0.6931472
## 232 887 4 4 NA 3.931826 1.0986123
## 233 18 9 4 NA 4.110874 1.0986123
## 234 14 4 1 NA 5.003946 0.6931472
## 235 43 4 1 NA 5.081404 0.6931472
## 236 616 4 1 NA 4.564348 0.6931472
## 237 693 4 1 NA 4.430817 0.6931472
## 238 262 4 1 NA 4.219508 0.6931472
## 239 14 4 4 NA 3.931826 1.0986123
## 240 29 16 9 NA 5.393628 1.3862944
## 241 243 25 1 NA 5.068904 0.6931472
## 242 521 25 16 NA 7.824446 1.6094379
## 243 925 4 4 NA 3.713572 1.0986123
## 244 658 4 1 NA 5.484797 0.6931472
## 245 828 4 1 NA 5.192957 0.6931472
## 246 692 9 4 NA 4.510860 1.0986123
## 247 677 1 1 NA 3.663562 0.6931472
## 248 256 4 1 NA 4.127134 0.6931472
## 249 167 4 1 NA 4.653960 0.6931472
## 250 121 1 1 NA 3.970292 0.6931472
## 251 715 4 1 NA 4.859812 0.6931472
## 252 662 9 1 NA 4.510860 0.6931472
## 253 17 9 1 NA 3.891820 0.6931472
## 254 647 4 1 NA 4.997212 0.6931472
## 255 703 4 1 NA 4.262680 0.6931472
## 256 683 1 1 NA 4.595120 0.6931472
## 257 490 4 1 NA 5.081404 0.6931472
## 258 13 4 1 NA 4.158883 0.6931472
## 259 104 4 1 NA 5.805135 0.6931472
## 260 385 4 1 NA 4.158883 0.6931472
## 261 12 4 1 NA 4.976734 0.6931472
## 262 275 16 4 NA 5.545177 1.0986123
## 263 690 1 1 NA 3.891820 0.6931472
## 264 887 225 64 NA 3.713572 2.1972246
## 265 699 4 1 NA 4.174387 0.6931472
## 266 90 16 4 NA 4.875197 1.0986123
## 267 660 1 1 NA 3.367296 0.6931472
## 268 744 1 64 NA 3.367296 2.1972246
## 269 334 16 4 NA 4.025352 1.0986123
## 270 291 4 1 NA 5.081404 0.6931472
## 271 656 9 1 NA 5.068904 0.6931472
## 272 44 4 1 NA 4.234107 0.6931472
## 273 672 4 1 NA 4.430817 0.6931472
## 274 151 9 NA NA 5.899897 NA
## 275 13 4 1 NA 4.510860 0.6931472
## 276 60 4 1 NA 4.356709 0.6931472
## 277 812 4 NA NA 5.017280 NA
## 278 215 4 1 NA 4.234107 0.6931472
## 279 688 4 1 NA 4.934474 0.6931472
## 280 104 4 1 NA 5.081404 0.6931472
## 281 362 9 9 NA 4.969813 1.3862944
## 282 9 1 1 NA 4.369448 0.6931472
## 283 708 4 1 NA 5.147494 0.6931472
## 284 118 1 1 NA 4.488636 0.6931472
## 285 18 4 1 NA 5.017280 0.6931472
## 286 590 4 1 NA 4.574711 0.6931472
## 287 21 9 4 NA 5.036953 1.0986123
## 288 19 25 4 NA 6.345636 1.0986123
## 289 17 4 1 NA 5.049856 0.6931472
## 290 14 4 1 NA 5.267858 0.6931472
## 291 700 1 1 NA 4.158883 0.6931472
## 292 471 4 NA NA 4.394449 NA
## 293 625 9 4 NA 4.204693 1.0986123
## 294 92 1 NA NA 3.784190 NA
## 295 647 4 1 NA 4.875197 0.6931472
## 296 684 4 1 NA 4.934474 0.6931472
## 297 101 4 1 NA 5.062595 0.6931472
## 298 737 4 1 NA 4.330733 0.6931472
## 299 703 36 36 NA 5.017280 1.9459101
## 300 320 4 1 NA 4.110874 0.6931472
## 301 23 36 4 NA 5.129899 1.0986123
## 302 319 36 16 NA 5.370638 1.6094379
## 303 721 4 1 NA 4.204693 0.6931472
## 304 615 4 1 NA 4.442651 0.6931472
## 305 160 4 1 NA 4.189655 0.6931472
## 306 711 16 4 NA 4.875197 1.0986123
## 307 666 1 1 NA 3.663562 0.6931472
## 308 715 1 1 NA 4.025352 0.6931472
## 309 49 1 1 NA 4.189655 0.6931472
## 310 402 4 1 NA 4.110874 0.6931472
## 311 717 4 1 NA 3.713572 0.6931472
## 312 467 4 1 NA 5.837730 0.6931472
## 313 656 4 1 NA 4.174387 0.6931472
## 314 12 1 1 NA 4.189655 0.6931472
## 315 31 4 1 NA 5.068904 0.6931472
## 316 683 1 1 NA 3.931826 0.6931472
## 317 506 16 1 NA 5.327876 0.6931472
## 318 20 1 1 NA 3.332205 0.6931472
## 319 518 16 1 NA 5.267858 0.6931472
## 320 19 4 1 NA 4.330733 0.6931472
## 321 626 4 1 NA 4.394449 0.6931472
## 322 19 4 1 NA 5.564520 0.6931472
## 323 29 25 4 NA 5.010635 1.0986123
## 324 639 4 1 NA 3.663562 0.6931472
## 325 44 9 1 NA 4.983607 0.6931472
## 326 705 9 4 NA 4.510860 1.0986123
## 327 706 4 1 NA 5.552960 0.6931472
## 328 23 1 1 NA 4.094345 0.6931472
## 329 157 4 1 NA 4.836282 0.6931472
## 330 36 4 1 NA 5.529429 0.6931472
## 331 722 9 4 NA 4.418841 1.0986123
## 332 308 4 1 NA 4.454347 0.6931472
## 333 66 4 1 NA 4.510860 0.6931472
## 334 13 4 1 NA 4.510860 0.6931472
## 335 364 4 1 NA 4.983607 0.6931472
## 336 685 16 4 NA 5.398163 1.0986123
## 337 685 4 1 NA 5.252273 0.6931472
## 338 662 100 100 NA 3.135494 2.3978953
## 339 683 4 1 NA 4.262680 0.6931472
## 340 667 4 1 NA 4.189655 0.6931472
## 341 6 4 1 NA 4.983607 0.6931472
## 342 711 4 1 NA 4.174387 0.6931472
## 343 139 16 4 NA 4.875197 1.0986123
## 344 79 16 1 NA 4.836282 0.6931472
## 345 717 1 1 NA 5.337538 0.6931472
## 346 641 16 4 NA 5.214936 1.0986123
## 347 712 1 1 NA 4.110874 0.6931472
## 348 241 4 1 NA 5.347108 0.6931472
## 349 49 16 1 NA 5.056246 0.6931472
## 350 125 4 1 NA 5.003946 0.6931472
## 351 138 4 1 NA 5.003946 0.6931472
## 352 397 4 1 NA 4.442651 0.6931472
## 353 710 4 1 NA 4.290459 0.6931472
## 354 693 9 1 NA 4.510860 0.6931472
## 355 656 4 1 NA 4.442651 0.6931472
## 356 720 4 1 NA 4.174387 0.6931472
## 357 669 4 1 NA 4.820282 0.6931472
## 358 53 4 1 NA 4.454347 0.6931472
## 359 754 36 4 NA 5.370638 1.0986123
## 360 172 1 4 NA 3.970292 1.0986123
## 361 661 9 1 NA 3.871201 0.6931472
## 362 555 1 1 NA 4.912655 0.6931472
## 363 383 4 1 NA 4.574711 0.6931472
## 364 722 16 1 NA 5.796058 0.6931472
## 365 296 16 1 NA 5.225747 0.6931472
## 366 141 4 1 NA 4.812184 0.6931472
## 367 18 4 1 NA 4.836282 0.6931472
## 368 52 4 1 NA 4.644391 0.6931472
## 369 188 4 1 NA 4.394449 0.6931472
## 370 682 16 4 NA 4.875197 1.0986123
## 371 668 16 16 NA 4.454347 1.6094379
## 372 891 1 1 NA 5.129899 0.6931472
## 373 912 4 4 NA 3.931826 1.0986123
## 374 697 4 1 NA 4.510860 0.6931472
## 375 737 36 4 NA 4.820282 1.0986123
## 376 772 1 1 NA 4.110874 0.6931472
## 377 683 4 1 NA 5.003946 0.6931472
## 378 747 1 1 NA 6.216606 0.6931472
## 379 161 36 4 NA 5.398163 1.0986123
## 380 818 4 1 NA 4.510860 0.6931472
## 381 71 4 1 NA 4.290459 0.6931472
## 382 685 1 1 NA 3.912023 0.6931472
## 383 717 4 1 NA 4.219508 0.6931472
## 384 365 4 1 NA 4.634729 0.6931472
## 385 14 4 1 NA 4.779123 0.6931472
## 386 476 4 1 NA 4.394449 0.6931472
## 387 31 4 1 NA 5.075174 0.6931472
## 388 24 25 4 NA 5.505332 1.0986123
## 389 11 4 1 NA 4.736198 0.6931472
## 390 727 4 1 NA 4.248495 0.6931472
## 391 692 4 1 NA 4.174387 0.6931472
## 392 716 4 1 NA 4.330733 0.6931472
## 393 9 4 1 NA 4.499810 0.6931472
## 394 686 25 25 NA 4.663439 1.7917595
## 395 729 1 1 NA 4.094345 0.6931472
## 396 127 25 9 NA 5.347108 1.3862944
## 397 767 4 1 NA 4.867534 0.6931472
## 398 356 4 1 NA 4.615121 0.6931472
## 399 76 4 1 NA 4.094345 0.6931472
## 400 681 4 1 NA 4.330733 0.6931472
## 401 685 4 1 NA 4.174387 0.6931472
## 402 78 9 1 NA 5.820083 0.6931472
## 403 683 1 1 NA 5.564520 0.6931472
## 404 19 4 1 NA 4.753590 0.6931472
## 405 694 4 1 NA 3.931826 0.6931472
## 406 32 9 1 NA 5.805135 0.6931472
## 407 78 4 1 NA 5.673323 0.6931472
## 408 718 36 36 NA 5.017280 1.9459101
## 409 19 4 1 NA 4.779123 0.6931472
## 410 647 36 36 NA 3.555348 1.9459101
## 411 99 4 1 NA 4.804021 0.6931472
## 412 387 9 1 NA 4.615121 0.6931472
## 413 704 4 1 NA 4.158883 0.6931472
## 414 669 4 1 NA 4.430817 0.6931472
## 415 650 4 1 NA 4.317488 0.6931472
## 416 130 4 1 NA 4.394449 0.6931472
## 417 305 4 1 NA 4.262680 0.6931472
## 418 12 4 1 NA 4.394449 0.6931472
## 419 696 256 256 NA 3.761200 2.8332133
## 420 640 1 1 NA 3.401197 0.6931472
## 421 681 36 9 NA 6.701960 1.3862944
## 422 686 4 1 NA 4.753590 0.6931472
## 423 759 4 1 NA 4.753590 0.6931472
## 424 604 4 1 NA 4.663439 0.6931472
## 425 700 4 1 NA 5.003946 0.6931472
## 426 705 16 1 NA 4.510860 0.6931472
## 427 433 36 4 NA 4.595120 1.0986123
## 428 770 4 1 NA 5.880533 0.6931472
## 429 342 16 4 NA 6.011267 1.0986123
## 430 690 1 1 NA 4.369448 0.6931472
## 431 668 36 36 NA 3.258097 1.9459101
## 432 317 9 4 NA 4.753590 1.0986123
## 433 540 16 1 NA 5.129899 0.6931472
## 434 506 16 1 NA 5.247024 0.6931472
## 435 662 4 1 NA 4.795791 0.6931472
## 436 103 16 4 NA 5.488938 1.0986123
## 437 22 16 9 NA 5.176150 1.3862944
## 438 44 25 4 NA 5.505332 1.0986123
## 439 266 16 1 NA 5.056246 0.6931472
## 440 34 25 4 NA 6.322565 1.0986123
## 441 22 4 1 NA 5.673323 0.6931472
## 442 669 1 1 NA 4.595120 0.6931472
## 443 41 4 1 NA 4.595120 0.6931472
## 444 127 4 4 NA 4.615121 1.0986123
## 445 970 256 400 NA 3.433987 3.0445224
## 446 47 16 1 NA 4.787492 0.6931472
## 447 713 4 1 NA 5.003946 0.6931472
## 448 112 4 1 NA 6.033086 0.6931472
## 449 344 16 4 NA 5.198497 1.0986123
## 450 360 16 4 NA 5.252273 1.0986123
## 451 179 4 1 NA 4.795791 0.6931472
## 452 708 4 1 NA 4.330733 0.6931472
## 453 691 9 9 NA 4.615121 1.3862944
## 454 32 1 1 NA 4.532599 0.6931472
## 455 695 4 1 NA 4.983607 0.6931472
## 456 572 16 1 NA 4.969813 0.6931472
## 457 699 4 4 NA 4.510860 1.0986123
## 458 125 49 16 NA 5.375278 1.6094379
## 459 684 4 1 NA 4.317488 0.6931472
## 460 61 4 1 NA 5.159055 0.6931472
## 461 459 16 1 NA 5.198497 0.6931472
## 462 667 16 4 NA 4.595120 1.0986123
## 463 44 9 1 NA 4.691348 0.6931472
## 464 8 4 1 NA 3.931826 0.6931472
## 465 23 4 1 NA 4.983607 0.6931472
## 466 56 4 1 NA 3.828641 0.6931472
## 467 600 9 9 NA 4.859812 1.3862944
## 468 22 1 1 NA 4.553877 0.6931472
## 469 704 4 1 NA 4.510860 0.6931472
## 470 663 1 1 NA 3.526361 0.6931472
## 471 140 25 16 NA 5.993961 1.6094379
## 472 215 4 1 NA 4.543295 0.6931472
## 473 669 169 169 NA 3.367296 2.6390573
## 474 692 4 1 NA 4.290459 0.6931472
## 475 753 4 1 NA 4.262680 0.6931472
## 476 775 9 1 NA 5.707110 0.6931472
## 477 678 25 9 NA 6.424869 1.3862944
## 478 75 4 1 NA 5.049856 0.6931472
## 479 341 4 1 NA 4.948760 0.6931472
## 480 691 4 1 NA 5.198497 0.6931472
## 481 18 4 1 NA 5.375278 0.6931472
## 482 874 4 1 NA 4.574711 0.6931472
## 483 120 4 1 NA 6.480045 0.6931472
## 484 139 4 1 NA 5.342334 0.6931472
## 485 712 4 1 NA 5.379897 0.6931472
## 486 367 16 4 NA 4.990433 1.0986123
## 487 695 1 1 NA 4.795791 0.6931472
## 488 215 16 4 NA 5.463832 1.0986123
## 489 672 64 64 NA 5.298317 2.1972246
## 490 702 1 1 NA 4.488636 0.6931472
## 491 714 4 100 NA 3.912023 2.3978953
## 492 398 4 1 NA 5.225747 0.6931472
## 493 26 4 4 NA 4.189655 1.0986123
## 494 371 36 9 NA 5.501258 1.3862944
## 495 29 4 1 NA 5.049856 0.6931472
## 496 17 4 1 NA 4.584967 0.6931472
## 497 154 4 1 NA 4.077537 0.6931472
## 498 121 1 1 NA 4.189655 0.6931472
## 499 110 1 1 NA 4.043051 0.6931472
## 500 239 4 1 NA 4.174387 0.6931472
## 501 205 4 1 NA 4.317488 0.6931472
## 502 701 16 4 NA 4.875197 1.0986123
## 503 709 4 1 NA 4.317488 0.6931472
## 504 90 1 1 NA 4.394449 0.6931472
## 505 735 16 4 NA 4.634729 1.0986123
## 506 453 4 1 NA 4.262680 0.6931472
## 507 679 1 1 NA 4.820282 0.6931472
## 508 9 16 4 NA 4.787492 1.0986123
## 509 847 1 1 NA 3.583519 0.6931472
## 510 712 25 9 NA 6.496775 1.3862944
## 511 704 4 1 NA 4.859812 0.6931472
## 512 746 4 1 NA 5.783825 0.6931472
## 513 173 4 1 NA 5.252273 0.6931472
## 514 364 4 4 NA 4.454347 1.0986123
## 515 725 4 1 NA 5.662960 0.6931472
## 516 601 1 1 NA 4.262680 0.6931472
## 517 687 4 1 NA 5.877736 0.6931472
## 518 724 4 1 NA 5.480639 0.6931472
## 519 495 1 1 NA 4.189655 0.6931472
## 520 425 36 4 NA 6.525030 1.0986123
## 521 64 9 1 NA 5.187386 0.6931472
## 522 19 4 NA NA 4.912655 NA
## 523 77 4 1 NA 4.812184 0.6931472
## 524 512 16 1 NA 5.247024 0.6931472
## 525 117 4 1 NA 4.934474 0.6931472
## 526 128 4 1 NA 4.804021 0.6931472
## 527 35 4 1 NA 5.170484 0.6931472
## 528 14 4 1 NA 4.983607 0.6931472
## 529 69 9 4 NA 5.652489 1.0986123
## 530 153 25 4 NA 4.700480 1.0986123
## 531 693 4 1 NA 5.564520 0.6931472
## 532 258 1 1 NA 3.931826 0.6931472
## 533 221 16 9 NA 5.860786 1.3862944
## 534 730 144 144 NA 3.367296 2.5649494
## 535 57 25 16 NA 6.018593 1.6094379
## 536 246 4 4 NA 3.713572 1.0986123
## 537 867 4 1 NA 4.330733 0.6931472
## 538 688 4 1 NA 4.317488 0.6931472
## 539 718 1 1 NA 3.433987 0.6931472
## 540 754 64 64 NA 3.465736 2.1972246
## 541 654 256 16 NA 4.189655 1.6094379
## 542 199 25 1 NA 4.787492 0.6931472
## 543 19 4 4 NA 4.510860 1.0986123
## 544 128 4 1 NA 3.663562 0.6931472
## 545 704 4 1 NA 3.931826 0.6931472
## 546 235 1 1 NA 4.718499 0.6931472
## 547 687 4 1 NA 4.859812 0.6931472
## 548 164 4 1 NA 4.709530 0.6931472
## 549 768 4 1 NA 3.931826 0.6931472
## 550 650 49 16 NA 6.869014 1.6094379
## 551 81 4 1 NA 4.304065 0.6931472
## 552 196 4 1 NA 4.234107 0.6931472
## 553 670 4 1 NA 4.317488 0.6931472
## 554 89 4 1 NA 5.564520 0.6931472
## 555 698 4 1 NA 5.613128 0.6931472
## 556 266 4 1 NA 5.017280 0.6931472
## 557 653 1 1 NA 4.795791 0.6931472
## 558 644 4 1 NA 3.258097 0.6931472
## 559 636 4 1 NA 6.100319 0.6931472
## 560 50 25 4 NA 5.560682 1.0986123
## 561 28 25 4 NA 6.302619 1.0986123
## 562 27 4 1 NA 5.826000 0.6931472
## 563 12 4 1 NA 6.318968 0.6931472
## 564 714 36 9 NA 5.192957 1.3862944
## 565 334 1 1 NA 3.850148 0.6931472
## 566 69 16 4 NA 4.948760 1.0986123
## 567 776 16 16 NA 4.875197 1.6094379
## 568 975 4 1 NA 4.430817 0.6931472
## 569 880 36 16 NA 5.438079 1.6094379
## 570 677 4 1 NA 4.369448 0.6931472
## 571 769 144 100 NA 3.332205 2.3978953
## 572 168 4 1 NA 4.454347 0.6931472
## 573 709 4 1 NA 4.859812 0.6931472
## 574 649 9 1 NA 5.641907 0.6931472
## 575 13 4 1 NA 5.049856 0.6931472
## 576 785 1 1 NA 4.510860 0.6931472
## 577 734 16 4 NA 5.141664 1.0986123
## 578 863 4 1 NA 4.997212 0.6931472
## 579 615 16 4 NA 5.327876 1.0986123
## 580 632 4 1 NA 3.663562 0.6931472
## 581 829 4 1 NA 4.532599 0.6931472
## 582 646 1 1 NA 4.672829 0.6931472
## 583 241 4 1 NA 4.510860 0.6931472
## 584 223 9 1 NA 4.094345 0.6931472
## 585 256 4 4 NA 5.111988 1.0986123
## 586 31 36 4 NA 5.398163 1.0986123
## 587 18 64 9 NA 5.955837 1.3862944
## 588 82 4 1 NA 4.595120 0.6931472
## 589 17 1 1 NA 3.970292 0.6931472
## 590 52 9 4 NA 5.056246 1.0986123
## 591 34 25 4 NA 5.556828 1.0986123
## 592 690 1 1 NA 4.290459 0.6931472
## 593 20 4 1 NA 4.234107 0.6931472
## 594 244 4 1 NA 4.304065 0.6931472
## 595 712 49 25 NA 5.303305 1.7917595
## 596 690 256 256 NA 3.871201 2.8332133
## 597 33 16 4 NA 4.795791 1.0986123
## 598 133 4 1 NA 5.899897 0.6931472
## 599 719 4 1 NA 4.290459 0.6931472
## 600 700 4 1 NA 4.248495 0.6931472
## 601 727 4 1 NA 4.844187 0.6931472
## 602 193 9 4 NA 5.484797 1.0986123
## 603 706 4 1 NA 4.912655 0.6931472
## 604 775 9 1 NA 5.707110 0.6931472
## 605 720 49 16 NA 6.642487 1.6094379
## 606 704 4 1 NA 5.049856 0.6931472
## 607 490 4 1 NA 4.234107 0.6931472
## 608 681 1 1 NA 4.025352 0.6931472
## 609 142 16 9 NA 5.768321 1.3862944
## 610 420 4 1 NA 4.510860 0.6931472
## 611 721 4 1 NA 5.017280 0.6931472
## 612 707 4 1 NA 5.902633 0.6931472
## 613 684 1 1 NA 4.007333 0.6931472
## 614 386 4 1 NA 5.159055 0.6931472
## 615 687 16 4 NA 6.320768 1.0986123
## 616 656 36 9 NA 5.796058 1.3862944
## 617 696 36 25 NA 5.880533 1.7917595
## 618 846 36 9 NA 5.323010 1.3862944
## 619 701 4 1 NA 5.356586 0.6931472
## 620 671 1 1 NA 3.931826 0.6931472
## 621 717 4 100 NA 3.951244 2.3978953
## 622 48 49 16 NA 5.375278 1.6094379
## 623 119 1 1 NA 3.332205 0.6931472
## 624 157 25 4 NA 5.225747 1.0986123
## 625 46 1 1 NA 3.332205 0.6931472
## 626 339 4 1 NA 4.997212 0.6931472
## 627 396 16 4 NA 5.594711 1.0986123
## 628 24 4 1 NA 4.454347 0.6931472
## 629 250 25 16 NA 5.993961 1.6094379
## 630 250 4 1 NA 4.510860 0.6931472
## 631 215 4 1 NA 5.303305 0.6931472
## 632 10 4 1 NA 5.010635 0.6931472
## 633 21 4 1 NA 5.010635 0.6931472
## 634 758 4 1 NA 4.317488 0.6931472
## 635 735 64 64 NA 3.610918 2.1972246
## 636 777 1 1 NA 3.951244 0.6931472
## 637 288 4 1 NA 4.110874 0.6931472
## 638 499 9 1 NA 5.198497 0.6931472
## 639 730 4 1 NA 4.672829 0.6931472
## 640 19 4 1 NA 4.663439 0.6931472
## 641 789 1 1 NA 4.510860 0.6931472
## 642 689 25 9 NA 6.208590 1.3862944
## 643 717 25 9 NA 6.202536 1.3862944
## 644 704 36 1 NA 4.615121 0.6931472
## 645 28 4 1 NA 5.049856 0.6931472
## 646 122 4 1 NA 4.304065 0.6931472
## 647 39 4 1 NA 4.304065 0.6931472
## 648 718 4 1 NA 4.844187 0.6931472
## 649 727 16 4 NA 4.934474 1.0986123
## 650 697 4 1 NA 4.983607 0.6931472
## 651 81 16 4 NA 5.303305 1.0986123
## 652 362 4 4 NA 4.465908 1.0986123
## 653 139 25 1 NA 5.043425 0.6931472
## 654 442 4 1 NA 4.927254 0.6931472
## 655 337 4 1 NA 5.932245 0.6931472
## 656 276 1 1 NA 4.290459 0.6931472
## 657 615 4 1 NA 4.948760 0.6931472
## 658 754 4 1 NA 5.771441 0.6931472
## 659 25 4 1 NA 4.465908 0.6931472
## 660 684 1 1 NA 3.465736 0.6931472
## 661 730 1 1 NA 3.828641 0.6931472
## 662 690 4 1 NA 4.488636 0.6931472
## 663 705 1 1 NA 4.718499 0.6931472
## 664 749 1 1 NA 3.496508 0.6931472
## 665 541 4 4 NA 3.784190 1.0986123
## 666 672 4 1 NA 4.174387 0.6931472
## 667 670 4 1 NA 4.290459 0.6931472
## 668 33 4 4 NA 4.564348 1.0986123
## 669 19 16 9 NA 5.690359 1.3862944
## 670 349 4 1 NA 3.583519 0.6931472
## 671 30 64 9 NA 5.955837 1.3862944
## 672 26 64 9 NA 5.955837 1.3862944
## 673 47 4 1 NA 4.770685 0.6931472
## 674 151 4 1 NA 4.852030 0.6931472
## 675 16 4 1 NA 5.446737 0.6931472
## 676 8 4 1 NA 5.262690 0.6931472
## 677 67 25 4 NA 5.587249 1.0986123
## 678 24 25 4 NA 5.666427 1.0986123
## 679 17 64 9 NA 6.061457 1.3862944
## 680 773 144 144 NA 3.367296 2.5649494
## 681 663 4 1 NA 4.510860 0.6931472
## 682 646 16 36 NA 4.859812 1.9459101
## 683 704 4 1 NA 4.488636 0.6931472
## 684 705 4 1 NA 4.727388 0.6931472
## 685 263 4 1 NA 3.713572 0.6931472
## 686 806 9 1 NA 5.017280 0.6931472
## 687 670 4 1 NA 4.330733 0.6931472
## 688 119 4 1 NA 4.077537 0.6931472
## 689 41 4 1 NA 4.510860 0.6931472
## 690 189 9 1 NA 4.615121 0.6931472
## 691 610 36 4 NA 6.135565 1.0986123
## 692 51 1 1 NA 4.110874 0.6931472
## 693 688 256 256 NA 3.218876 2.8332133
## 694 31 4 1 NA 6.035481 0.6931472
## 695 544 16 4 NA 5.303305 1.0986123
## 696 578 4 1 NA 4.382027 0.6931472
## 697 37 25 1 NA 4.394449 0.6931472
## 698 76 4 1 NA 4.430817 0.6931472
## 699 702 4 4 NA 5.703782 1.0986123
## 700 484 4 1 NA 4.189655 0.6931472
## 701 621 4 1 NA 5.303305 0.6931472
## 702 404 4 1 NA 4.499810 0.6931472
## 703 672 4 1 NA 4.955827 0.6931472
## 704 701 4 1 NA 4.672829 0.6931472
## 705 130 4 1 NA 5.017280 0.6931472
## 706 814 9 1 NA 5.707110 0.6931472
## 707 698 4 1 NA 5.746203 0.6931472
## 708 914 1 1 NA 4.510860 0.6931472
## 709 26 1 1 NA 5.451038 0.6931472
## 710 190 4 1 NA 4.948760 0.6931472
## 711 382 4 4 NA 4.574711 1.0986123
## 712 696 16 4 NA 6.849066 1.0986123
## 713 161 4 1 NA 4.510860 0.6931472
## 714 675 100 100 NA 3.135494 2.3978953
## 715 502 25 9 NA 5.192957 1.3862944
## 716 748 4 1 NA 4.204693 0.6931472
## 717 656 4 1 NA 5.602119 0.6931472
## 718 61 16 16 NA 4.779123 1.6094379
## 719 798 36 9 NA 5.323010 1.3862944
## 720 745 1 1 NA 3.912023 0.6931472
## 721 684 4 1 NA 4.553877 0.6931472
## 722 568 36 9 NA 5.998937 1.3862944
## 723 538 4 1 NA 5.192957 0.6931472
## 724 335 4 4 NA 4.158883 1.0986123
## 725 365 4 1 NA 4.795791 0.6931472
## 726 702 16 4 NA 6.135565 1.0986123
## 727 296 4 4 NA 3.401197 1.0986123
## 728 732 4 1 NA 5.690359 0.6931472
## 729 685 64 9 NA 5.594711 1.3862944
## 730 92 4 1 NA 4.897840 0.6931472
## 731 366 4 1 NA 5.043425 0.6931472
## 732 201 4 1 NA 5.049856 0.6931472
## 733 683 36 36 NA 3.555348 1.9459101
## 734 336 16 4 NA 5.043425 1.0986123
## 735 34 25 9 NA 4.875197 1.3862944
## 736 12 1 1 NA 4.691348 0.6931472
## 737 44 9 1 NA 4.700480 0.6931472
## 738 12 16 9 NA 4.736198 1.3862944
## 739 43 16 4 NA 5.433722 1.0986123
## 740 38 4 1 NA 4.983607 0.6931472
## 741 31 4 4 NA 4.962845 1.0986123
## 742 112 1 1 NA 5.262690 0.6931472
## 743 19 9 1 NA 4.948760 0.6931472
## 744 623 1 1 NA 3.970292 0.6931472
## 745 445 4 1 NA 5.525453 0.6931472
## 746 826 4 1 NA 4.418841 0.6931472
## 747 808 4 1 NA 4.343805 0.6931472
## 748 144 1 1 NA 4.343805 0.6931472
## 749 258 1 1 NA 4.060443 0.6931472
## 750 683 4 1 NA 4.317488 0.6931472
## 751 689 64 64 NA 5.111988 2.1972246
## 752 214 1 1 NA 4.094345 0.6931472
## 753 696 4 144 NA 4.094345 2.5649494
## 754 692 100 100 NA 3.401197 2.3978953
## 755 676 4 1 NA 4.394449 0.6931472
## 756 558 4 1 NA 5.631212 0.6931472
## 757 732 4 1 NA 4.369448 0.6931472
## 758 865 4 1 NA 4.430817 0.6931472
## 759 106 9 4 NA 5.624018 1.0986123
## 760 653 1 1 NA 4.615121 0.6931472
## 761 253 4 1 NA 5.192957 0.6931472
## 762 761 4 1 NA 4.094345 0.6931472
## 763 530 4 1 NA 4.875197 0.6931472
## 764 314 4 1 NA 4.919981 0.6931472
## 765 713 9 4 NA 5.707110 1.0986123
## 766 109 9 1 NA 5.929589 0.6931472
## 767 12 4 1 NA 4.406719 0.6931472
## 768 121 4 1 NA 4.248495 0.6931472
## 769 481 4 1 NA 5.049856 0.6931472
## 770 232 1 1 NA 4.454347 0.6931472
## 771 14 4 1 NA 5.049856 0.6931472
## 772 692 25 9 NA 6.274762 1.3862944
## 773 316 4 1 NA 4.976734 0.6931472
## 774 719 1 1 NA 3.401197 0.6931472
## 775 501 1 1 NA 4.094345 0.6931472
## 776 155 36 4 NA 5.129899 1.0986123
## 777 21 4 1 NA 5.564520 0.6931472
## 778 729 36 9 NA 6.070738 1.3862944
## 779 382 16 1 NA 5.129899 0.6931472
## 780 650 4 1 NA 4.418841 0.6931472
## 781 729 9 4 NA 5.771441 1.0986123
## 782 708 4 1 NA 4.875197 0.6931472
## 783 656 36 9 NA 5.638355 1.3862944
## 784 739 36 9 NA 6.415097 1.3862944
## 785 137 4 1 NA 4.700480 0.6931472
## 786 123 4 1 NA 4.574711 0.6931472
## 787 686 1 1 NA 3.433987 0.6931472
## 788 391 1 1 NA 3.637586 0.6931472
## 789 433 4 1 NA 4.867534 0.6931472
## 790 711 4 1 NA 4.700480 0.6931472
## 791 705 1 1 NA 4.248495 0.6931472
## 792 353 1 1 NA 5.062595 0.6931472
## 793 404 4 1 NA 5.099866 0.6931472
## 794 56 1 1 NA 4.499810 0.6931472
## 795 717 9 4 NA 4.510860 1.0986123
## 796 671 64 36 NA 5.293305 1.9459101
## 797 123 4 1 NA 4.934474 0.6931472
## 798 132 4 1 NA 4.912655 0.6931472
## 799 538 16 4 NA 5.252273 1.0986123
## 800 18 1 1 NA 4.110874 0.6931472
## 801 507 4 1 NA 3.891820 0.6931472
## 802 272 4 1 NA 4.127134 0.6931472
## 803 349 4 1 NA 4.795791 0.6931472
## 804 365 9 4 NA 5.030438 1.0986123
## 805 309 16 4 NA 5.099866 1.0986123
## 806 483 4 1 NA 4.110874 0.6931472
## 807 391 9 4 NA 4.997212 1.0986123
## 808 113 1 NA NA 4.094345 NA
## 809 22 4 1 NA 5.602119 0.6931472
## 810 40 4 NA NA 4.836282 NA
## 811 31 1 1 NA 4.663439 0.6931472
## 812 62 36 4 NA 5.424950 1.0986123
## 813 8 4 1 NA 4.330733 0.6931472
## 814 810 9 1 NA 4.418841 0.6931472
## 815 537 4 1 NA 5.017280 0.6931472
## 816 704 4 1 NA 4.624973 0.6931472
## 817 730 9 4 NA 5.771441 1.0986123
## 818 148 1 1 NA 4.127134 0.6931472
## 819 669 4 1 NA 4.262680 0.6931472
## 820 701 9 1 NA 5.303305 0.6931472
## 821 76 4 1 NA 4.418841 0.6931472
## 822 470 9 1 NA 4.204693 0.6931472
## 823 425 9 1 NA 4.615121 0.6931472
## 824 691 36 36 NA 4.836282 1.9459101
## 825 547 4 1 NA 4.672829 0.6931472
## 826 80 1 1 NA 3.663562 0.6931472
## 827 708 100 25 NA 3.401197 1.7917595
## 828 831 256 256 NA 3.218876 2.8332133
## 829 694 16 9 NA 5.293305 1.3862944
## 830 703 169 169 NA 3.367296 2.6390573
## 831 732 16 16 NA 4.454347 1.6094379
## 832 770 4 1 NA 4.488636 0.6931472
## 833 286 4 1 NA 5.978886 0.6931472
## 834 964 4 1 NA 4.499810 0.6931472
## 835 99 9 1 NA 4.615121 0.6931472
## 836 46 9 1 NA 4.875197 0.6931472
## 837 775 256 256 NA 3.555348 2.8332133
## 838 713 4 4 NA 4.882802 1.0986123
## 839 90 4 1 NA 4.234107 0.6931472
## 840 834 9 1 NA 5.707110 0.6931472
## 841 61 1 1 NA 3.583519 0.6931472
## 842 230 9 4 NA 5.036953 1.0986123
## 843 107 4 1 NA 5.081404 0.6931472
## 844 705 9 9 NA 5.023881 1.3862944
## 845 723 25 9 NA 6.137727 1.3862944
## 846 172 1 1 NA 4.605170 0.6931472
## 847 699 4 1 NA 4.955827 0.6931472
## 848 723 4 1 NA 4.844187 0.6931472
## 849 719 4 1 NA 5.017280 0.6931472
## 850 832 4 NA NA 5.463832 NA
## 851 711 49 16 NA 6.646391 1.6094379
## 852 319 9 4 NA 6.784457 1.0986123
## 853 755 1 4 NA 4.418841 1.0986123
## 854 742 4 1 NA 4.510860 0.6931472
## 855 729 4 4 NA 4.875197 1.0986123
## 856 730 4 1 NA 4.836282 0.6931472
## 857 379 16 4 NA 5.198497 1.0986123
## 858 137 25 16 NA 5.993961 1.6094379
## 859 759 4 1 NA 4.174387 0.6931472
## 860 776 4 4 NA 4.394449 1.0986123
## 861 784 1 1 NA 3.583519 0.6931472
## 862 857 100 100 NA 3.135494 2.3978953
## 863 762 25 9 NA 5.365976 1.3862944
## 864 21 4 1 NA 4.189655 0.6931472
## 865 91 1 1 NA 3.713572 0.6931472
## 866 60 4 1 NA 4.828314 0.6931472
## 867 30 1 1 NA 3.637586 0.6931472
## 868 174 16 4 NA 5.023881 1.0986123
## 869 104 4 1 NA 4.828314 0.6931472
## 870 266 9 4 NA 5.017280 1.0986123
## 871 737 196 196 NA 5.886104 2.7080502
## 872 73 1 1 NA 4.094345 0.6931472
## 873 810 1 1 NA 3.433987 0.6931472
## 874 740 64 64 NA 5.438079 2.1972246
## 875 706 4 1 NA 4.174387 0.6931472
## 876 708 4 4 NA 5.017280 1.0986123
## 877 853 4 1 NA 4.290459 0.6931472
## 878 689 4 1 NA 4.510860 0.6931472
## 879 658 16 9 NA 6.535241 1.3862944
## 880 335 16 4 NA 5.099866 1.0986123
## 881 117 4 1 NA 4.804021 0.6931472
## 882 124 1 1 NA 3.912023 0.6931472
## 883 725 36 25 NA 5.398163 1.7917595
## 884 518 4 1 NA 4.836282 0.6931472
## 885 701 16 4 NA 4.779123 1.0986123
## 886 641 256 81 NA 6.111467 2.3025851
## 887 381 4 1 NA 5.010635 0.6931472
## 888 139 4 1 NA 4.976734 0.6931472
## 889 646 9 1 NA 6.467699 0.6931472
## 890 25 9 1 NA 4.718499 0.6931472
## 891 672 36 36 NA 3.332205 1.9459101
## 892 92 4 1 NA 4.110874 0.6931472
## 893 172 4 1 NA 4.836282 0.6931472
## 894 48 4 1 NA 4.919981 0.6931472
## 895 36 4 1 NA 5.278115 0.6931472
## 896 239 16 4 NA 5.393628 1.0986123
## 897 31 4 1 NA 5.587249 0.6931472
## 898 25 4 1 NA 5.111988 0.6931472
## 899 242 25 1 NA 4.369448 0.6931472
## 900 40 16 4 NA 4.962845 1.0986123
## 901 22 4 1 NA 4.912655 0.6931472
## 902 14 4 1 NA 4.905275 0.6931472
## 903 11 1 1 NA 4.753590 0.6931472
## 904 369 1 1 NA 3.713572 0.6931472
## 905 813 1 1 NA 3.713572 0.6931472
## 906 737 16 4 NA 5.707110 1.0986123
## 907 189 1 1 NA 4.382027 0.6931472
## 908 708 16 16 NA 4.990433 1.6094379
## 909 914 16 4 NA 5.198497 1.0986123
## 910 1014 4 1 NA 4.488636 0.6931472
## 911 194 4 25 NA 4.094345 1.7917595
## 912 649 4 1 NA 4.394449 0.6931472
## 913 792 4 1 NA 4.043051 0.6931472
## 914 753 9 1 NA 4.875197 0.6931472
## 915 202 9 1 NA 4.615121 0.6931472
## 916 694 1 1 NA 3.433987 0.6931472
## 917 727 81 81 NA 3.465736 2.3025851
## 918 750 36 36 NA 3.610918 1.9459101
## 919 833 9 1 NA 5.356586 0.6931472
## 920 682 49 49 NA 5.111988 2.0794415
## 921 780 256 256 NA 5.707110 2.8332133
## 922 696 256 256 NA 3.218876 2.8332133
## 923 1083 256 256 NA 3.295837 2.8332133
## 924 688 4 1 NA 4.454347 0.6931472
## 925 1020 36 16 NA 5.666427 1.6094379
## 926 75 16 4 NA 4.795791 1.0986123
## 927 867 36 36 NA 3.218876 1.9459101
## 928 866 1 1 NA 4.110874 0.6931472
## 929 209 9 1 NA 4.234107 0.6931472
## 930 122 1 1 NA 4.094345 0.6931472
## 931 364 36 9 NA 5.823046 1.3862944
## 932 651 1 1 NA 3.912023 0.6931472
## 933 808 256 256 NA 3.871201 2.8332133
## 934 653 4 1 NA 4.875197 0.6931472
## 935 272 4 1 NA 4.927254 0.6931472
## 936 852 4 1 NA 4.852030 0.6931472
## 937 715 9 4 NA 3.931826 1.0986123
## 938 883 4 4 NA 3.828641 1.0986123
## 939 773 9 4 NA 4.499810 1.0986123
## 940 895 4 1 NA 3.433987 0.6931472
## 941 736 4 4 NA 4.997212 1.0986123
## 942 707 16 4 NA 5.533389 1.0986123
## 943 518 16 1 NA 4.709530 0.6931472
## 944 733 4 1 NA 5.129899 0.6931472
## 945 776 4 1 NA 4.248495 0.6931472
## 946 782 9 4 NA 4.158883 1.0986123
## 947 36 4 NA NA 6.161207 NA
## 948 895 4 1 NA 4.110874 0.6931472
## 949 755 16 16 NA 4.262680 1.6094379
## 950 610 1 1 NA 3.688879 0.6931472
## 951 266 9 4 NA 5.899897 1.0986123
## 952 629 4 1 NA 4.709530 0.6931472
## 953 365 9 4 NA 4.990433 1.0986123
## 954 821 4 4 NA 4.574711 1.0986123
## 955 319 4 1 NA 4.983607 0.6931472
## 956 376 4 1 NA 4.983607 0.6931472
## 957 379 16 9 NA 6.419995 1.3862944
## 958 494 9 1 NA 4.615121 0.6931472
## 959 392 9 1 NA 4.615121 0.6931472
## 960 868 36 16 NA 6.447306 1.6094379
## 961 729 16 4 NA 4.394449 1.0986123
## 962 488 4 1 NA 4.955827 0.6931472
## 963 649 4 4 NA 4.499810 1.0986123
## 964 642 16 4 NA 5.111988 1.0986123
## 965 976 4 1 NA 4.615121 0.6931472
## 966 924 36 25 NA 5.730100 1.7917595
## 967 736 25 4 NA 6.156979 1.0986123
## 968 15 9 4 NA 5.023881 1.0986123
## 969 671 9 4 NA 4.779123 1.0986123
## 970 396 4 1 NA 4.795791 0.6931472
## 971 966 4 1 NA 4.795791 0.6931472
## 972 713 25 9 NA 6.672033 1.3862944
## 973 717 9 4 NA 5.525453 1.0986123
## 974 116 1 1 NA 4.330733 0.6931472
## 975 885 4 1 NA 4.672829 0.6931472
## 976 747 4 1 NA 4.634729 0.6931472
## 977 6 25 4 NA 5.852202 1.0986123
## 978 31 4 1 NA 4.234107 0.6931472
## 979 785 1 1 NA 4.454347 0.6931472
## 980 14 4 1 NA 4.158883 0.6931472
## 981 723 4 1 NA 4.430817 0.6931472
## 982 136 4 1 NA 5.564520 0.6931472
## 983 128 4 1 NA 4.574711 0.6931472
## 984 596 4 1 NA 4.574711 0.6931472
## 985 364 4 1 NA 4.709530 0.6931472
## 986 128 4 1 NA 4.418841 0.6931472
## 987 728 1 1 NA 4.510860 0.6931472
## 988 572 4 1 NA 4.890349 0.6931472
## 989 334 1 1 NA 3.912023 0.6931472
## 990 710 64 4 NA 6.302619 1.0986123
## 991 660 4 1 NA 5.384495 0.6931472
## 992 31 1 NA NA 4.127134 NA
## 993 609 16 1 NA 5.327876 0.6931472
## 994 225 9 1 NA 4.110874 0.6931472
## 995 111 9 9 NA 5.451038 1.3862944
## 996 659 4 1 NA 5.017280 0.6931472
## 997 103 4 1 NA 5.192957 0.6931472
## 998 730 16 4 NA 5.198497 1.0986123
## 999 6 4 1 NA 5.303305 0.6931472
## 1000 693 64 64 NA 5.598422 2.1972246
## 1001 669 36 4 NA 5.293305 1.0986123
## 1002 709 1 1 NA 3.433987 0.6931472
## 1003 238 4 1 NA 5.093750 0.6931472
## 1004 718 4 1 NA 4.189655 0.6931472
## 1005 333 4 1 NA 4.905275 0.6931472
## 1006 626 1 1 NA 4.025352 0.6931472
## 1007 691 64 64 NA 5.598422 2.1972246
## 1008 112 4 4 NA 3.912023 1.0986123
## 1009 363 1 1 NA 3.912023 0.6931472
## 1010 650 4 1 NA 3.258097 0.6931472
## 1011 39 25 9 NA 4.927254 1.3862944
## 1012 26 9 1 NA 4.948760 0.6931472
## 1013 48 4 4 NA 4.890349 1.0986123
## 1014 115 16 4 NA 5.298317 1.0986123
## 1015 318 9 1 NA 5.332719 0.6931472
## 1016 168 4 1 NA 4.430817 0.6931472
## 1017 20 16 1 NA 5.141664 0.6931472
## 1018 26 4 NA NA 4.795791 NA
## 1019 19 4 NA NA 5.556828 NA
## 1020 125 4 1 NA 3.663562 0.6931472
## 1021 11 4 1 NA 5.181784 0.6931472
## 1022 102 1 1 NA 3.761200 0.6931472
## 1023 12 4 1 NA 6.327937 0.6931472
## 1024 126 9 4 NA 5.442418 1.0986123
## 1025 64 4 1 NA 4.727388 0.6931472
## 1026 57 4 1 NA 4.077537 0.6931472
## 1027 85 9 1 NA 5.081404 0.6931472
## 1028 41 16 4 NA 4.574711 1.0986123
## 1029 825 1 1 NA 3.912023 0.6931472
## 1030 979 1 1 NA 4.094345 0.6931472
## 1031 981 16 1 NA 4.787492 0.6931472
## 1032 888 1 1 NA 4.488636 0.6931472
## 1033 574 1 1 NA 4.709530 0.6931472
## 1034 794 1 1 NA 4.248495 0.6931472
## 1035 686 9 1 NA 3.828641 0.6931472
## 1036 853 4 1 NA 4.912655 0.6931472
## 1037 677 36 16 NA 5.455321 1.6094379
## 1038 914 1 1 NA 4.094345 0.6931472
## 1039 320 4 4 NA 5.241747 1.0986123
## 1040 804 1 4 NA 6.371612 1.0986123
## 1041 305 36 9 NA 5.993961 1.3862944
## 1042 892 1 1 NA 3.526361 0.6931472
## 1043 741 1 1 NA 3.610918 0.6931472
## 1044 1068 9 4 NA 5.525453 1.0986123
## 1045 1065 4 4 NA 4.644391 1.0986123
## 1046 952 4 1 NA 4.382027 0.6931472
## 1047 803 4 1 NA 4.394449 0.6931472
## 1048 895 49 49 NA 4.983607 2.0794415
## 1049 856 1 1 NA 3.931826 0.6931472
## 1050 866 1 1 NA 3.737670 0.6931472
## 1051 714 1 16 NA 3.401197 1.6094379
## 1052 762 1 1 NA 3.663562 0.6931472
## 1053 988 256 256 NA 3.218876 2.8332133
## 1054 698 256 256 NA 3.218876 2.8332133
## 1055 684 16 16 NA 4.875197 1.6094379
## 1056 964 4 1 NA 4.369448 0.6931472
## 1057 914 25 16 NA 5.247024 1.6094379
## 1058 898 1 1 NA 3.401197 0.6931472
## 1059 645 1 1 NA 4.189655 0.6931472
## 1060 66 9 1 NA 4.615121 0.6931472
## 1061 754 1 1 NA 4.094345 0.6931472
## 1062 231 4 1 NA 4.304065 0.6931472
## 1063 112 4 1 NA 4.304065 0.6931472
## 1064 792 9 4 NA 5.017280 1.0986123
## 1065 631 4 4 NA 3.931826 1.0986123
## 1066 878 1 1 NA 4.189655 0.6931472
## 1067 846 4 4 NA 3.761200 1.0986123
## 1068 672 4 1 NA 4.919981 0.6931472
## 1069 729 4 1 NA 4.499810 0.6931472
## 1070 964 4 1 NA 4.488636 0.6931472
## 1071 701 36 25 NA 5.351858 1.7917595
## 1072 694 4 1 NA 4.189655 0.6931472
## 1073 540 1 1 NA 3.663562 0.6931472
## 1074 291 9 4 NA 5.549076 1.0986123
## 1075 917 256 256 NA 3.218876 2.8332133
## 1076 697 100 100 NA 5.420535 2.3978953
## 1077 749 100 100 NA 3.332205 2.3978953
## 1078 801 4 1 NA 4.852030 0.6931472
## 1079 712 9 1 NA 3.931826 0.6931472
## 1080 838 1 1 NA 4.753590 0.6931472
## 1081 1018 9 1 NA 2.995732 0.6931472
## 1082 689 36 16 NA 5.010635 1.6094379
## 1083 728 1 1 NA 4.330733 0.6931472
## 1084 817 4 1 NA 3.713572 0.6931472
## 1085 1010 4 1 NA 4.983607 0.6931472
## 1086 860 4 1 NA 4.795791 0.6931472
## 1087 192 1 1 NA 3.713572 0.6931472
## 1088 1022 9 4 NA 5.707110 1.0986123
## 1089 21 9 1 NA 4.875197 0.6931472
## 1090 66 36 9 NA 5.771441 1.3862944
## 1091 755 9 4 NA 4.852030 1.0986123
## 1092 733 16 4 NA 4.983607 1.0986123
## 1093 675 4 1 NA 4.844187 0.6931472
## 1094 671 9 4 NA 4.934474 1.0986123
## 1095 865 1 1 NA 3.688879 0.6931472
## 1096 898 4 1 NA 5.442418 0.6931472
## 1097 1055 4 1 NA 4.919981 0.6931472
## 1098 487 1 1 NA 3.912023 0.6931472
## 1099 633 1 1 NA 3.912023 0.6931472
## 1100 640 1 1 NA 3.912023 0.6931472
## 1101 1016 4 1 NA 4.983607 0.6931472
## 1102 1018 4 1 NA 4.844187 0.6931472
## 1103 226 4 1 NA 5.278115 0.6931472
## 1104 244 36 9 NA 6.068426 1.3862944
## 1105 368 256 1 NA 5.105945 0.6931472
## 1106 743 16 4 NA 5.159055 1.0986123
## 1107 704 16 4 NA 5.141664 1.0986123
## 1108 718 9 4 NA 4.990433 1.0986123
## 1109 370 4 1 NA 4.574711 0.6931472
## 1110 941 4 1 NA 4.574711 0.6931472
## 1111 873 36 9 NA 5.537334 1.3862944
## 1112 751 4 1 NA 4.454347 0.6931472
## 1113 845 1 1 NA 4.174387 0.6931472
## 1114 665 4 1 NA 5.370638 0.6931472
## 1115 996 4 1 NA 4.983607 0.6931472
## 1116 843 4 1 NA 4.983607 0.6931472
## 1117 566 4 4 NA 4.875197 1.0986123
## 1118 818 9 4 NA 4.025352 1.0986123
## 1119 856 4 1 NA 5.135798 0.6931472
## 1120 678 4 1 NA 3.433987 0.6931472
## 1121 818 9 1 NA 5.017280 0.6931472
## 1122 830 16 4 NA 5.846439 1.0986123
## 1123 687 4 1 NA 5.003946 0.6931472
## 1124 622 16 4 NA 5.365976 1.0986123
## 1125 976 4 1 NA 4.394449 0.6931472
## 1126 984 4 1 NA 5.198497 0.6931472
## 1127 823 4 1 NA 4.976734 0.6931472
## 1128 813 1 1 NA 4.248495 0.6931472
## 1129 1091 4 1 NA 4.564348 0.6931472
## 1130 744 1 1 NA 4.043051 0.6931472
## 1131 719 100 100 NA 3.135494 2.3978953
## 1132 701 100 100 NA 3.258097 2.3978953
## 1133 1006 1 1 NA 3.912023 0.6931472
## 1134 996 4 1 NA 6.095825 0.6931472
## 1135 308 16 4 NA 5.068904 1.0986123
## 1136 24 16 4 NA 5.247024 1.0986123
## 1137 452 1 1 NA 3.688879 0.6931472
## 1138 805 1 1 NA 3.912023 0.6931472
## 1139 887 1 1 NA 4.025352 0.6931472
## 1140 198 1 1 NA 4.094345 0.6931472
## 1141 880 16 1 NA 4.510860 0.6931472
## 1142 1012 4 1 NA 4.174387 0.6931472
## 1143 916 4 1 NA 5.501258 0.6931472
## 1144 272 16 4 NA 5.062595 1.0986123
## 1145 312 4 1 NA 5.141664 0.6931472
## 1146 722 16 4 NA 5.225747 1.0986123
## 1147 368 1 1 NA 4.248495 0.6931472
## 1148 534 4 1 NA 4.934474 0.6931472
## 1149 854 16 4 NA 5.023881 1.0986123
## 1150 822 4 1 NA 4.828314 0.6931472
## 1151 214 16 4 NA 5.017280 1.0986123
## 1152 16 16 4 NA 5.659482 1.0986123
## 1153 675 16 4 NA 4.990433 1.0986123
## 1154 457 1 1 NA 4.248495 0.6931472
## 1155 167 1 1 NA 3.737670 0.6931472
## 1156 865 25 4 NA 6.154858 1.0986123
## 1157 765 1 1 NA 3.737670 0.6931472
## 1158 726 1 1 NA 3.737670 0.6931472
## 1159 936 1 1 NA 4.094345 0.6931472
## 1160 447 16 4 NA 5.247024 1.0986123
## 1161 767 1 1 NA 4.094345 0.6931472
## 1162 646 1 1 NA 3.688879 0.6931472
## 1163 79 9 4 NA 5.068904 1.0986123
## 1164 160 4 1 NA 4.110874 0.6931472
## 1165 176 4 1 NA 4.488636 0.6931472
## 1166 91 1 1 NA 3.931826 0.6931472
## 1167 670 1 1 NA 3.931826 0.6931472
## 1168 872 1 1 NA 3.610918 0.6931472
## 1169 704 36 9 NA 6.418365 1.3862944
## 1170 198 1 1 NA 4.094345 0.6931472
## 1171 718 16 16 NA 4.875197 1.6094379
## 1172 709 1 1 NA 3.332205 0.6931472
## 1173 49 4 1 NA 4.828314 0.6931472
## 1174 158 4 1 NA 4.795791 0.6931472
## 1175 762 1 1 NA 3.931826 0.6931472
## 1176 860 64 16 NA 6.908755 1.6094379
## 1177 729 36 9 NA 5.888878 1.3862944
## 1178 784 1 1 NA 4.248495 0.6931472
## 1179 615 16 1 NA 5.365976 0.6931472
## 1180 806 4 16 NA 4.043051 1.6094379
## 1181 543 4 1 NA 5.192957 0.6931472
## 1182 277 16 4 NA 4.919981 1.0986123
## 1183 306 1 1 NA 4.510860 0.6931472
## 1184 458 1 1 NA 4.094345 0.6931472
## 1185 412 4 1 NA 4.574711 0.6931472
## 1186 708 4 1 NA 4.330733 0.6931472
## 1187 198 4 1 NA 4.770685 0.6931472
## 1188 487 16 4 NA 5.111988 1.0986123
## 1189 60 9 4 NA 5.568345 1.0986123
## 1190 768 4 1 NA 4.465908 0.6931472
## 1191 745 1 4 NA 4.189655 1.0986123
## 1192 743 1 NA NA 4.787492 NA
## 1193 636 1 1 NA 3.850148 0.6931472
## 1194 66 9 1 NA 4.406719 0.6931472
## 1195 625 1 1 NA 3.912023 0.6931472
## 1196 692 1 1 NA 3.912023 0.6931472
## 1197 40 4 1 NA 5.273000 0.6931472
## 1198 640 4 1 NA 4.234107 0.6931472
## 1199 734 16 4 NA 5.153292 1.0986123
## 1200 122 4 1 NA 5.062595 0.6931472
## 1201 223 4 1 NA 3.713572 0.6931472
## 1202 769 1 1 NA 3.688879 0.6931472
## 1203 672 1 1 NA 4.094345 0.6931472
## 1204 672 49 9 NA 5.017280 1.3862944
## 1205 327 1 NA NA 4.094345 NA
## 1206 714 4 1 NA 4.234107 0.6931472
## 1207 704 81 16 NA 5.303305 1.6094379
## 1208 56 4 1 NA 5.049856 0.6931472
## 1209 685 4 1 NA 5.049856 0.6931472
## 1210 713 9 1 NA 5.433722 0.6931472
## 1211 658 4 1 NA 5.049856 0.6931472
## 1212 273 4 1 NA 5.043425 0.6931472
## 1213 12 4 1 NA 5.308268 0.6931472
## 1214 711 16 16 NA 4.624973 1.6094379
## 1215 705 9 1 NA 5.433722 0.6931472
## 1216 255 4 4 NA 5.293305 1.0986123
## 1217 649 1 1 NA 5.075174 0.6931472
## 1218 714 4 NA NA 5.099866 NA
## 1219 640 4 1 NA 5.153292 0.6931472
## 1220 675 16 16 NA 4.672829 1.6094379
## 1221 461 100 100 NA 5.509388 2.3978953
## 1222 681 1 1 NA 5.402677 0.6931472
## 1223 91 4 4 NA 5.389072 1.0986123
## 1224 705 4 1 NA 4.948760 0.6931472
## 1225 68 4 1 NA 5.616771 0.6931472
## 1226 549 4 NA NA 5.023881 NA
## 1227 7 1 1 NA 4.418841 0.6931472
## 1228 219 4 4 NA 4.110874 1.0986123
## 1229 284 4 1 NA 4.927254 0.6931472
## 1230 436 16 9 NA 6.456770 1.3862944
## 1231 82 9 1 NA 4.948760 0.6931472
## 1232 490 9 1 NA 5.081404 0.6931472
## 1233 35 9 1 NA 4.948760 0.6931472
## 1234 551 9 1 NA 4.948760 0.6931472
## 1235 561 16 1 NA 5.225747 0.6931472
## 1236 193 9 4 NA 5.602119 1.0986123
## 1237 32 9 1 NA 4.779123 0.6931472
## 1238 319 9 1 NA 5.010635 0.6931472
## 1239 218 4 1 NA 4.465908 0.6931472
## 1240 283 4 4 NA 5.278115 1.0986123
## 1241 84 4 1 NA 4.615121 0.6931472
## 1242 12 4 1 NA 5.910797 0.6931472
## 1243 58 25 9 NA 4.795791 1.3862944
## 1244 368 36 9 NA 5.823046 1.3862944
## 1245 322 4 1 NA 4.836282 0.6931472
## 1246 25 9 4 NA 5.056246 1.0986123
## 1247 89 0 NA NA 0.000000 NA
## 1248 97 4 NA NA 4.709530 NA
## 1249 75 4 4 NA 4.969813 1.0986123
## 1250 16 4 1 NA 5.370638 0.6931472
## 1251 127 1 4 NA 4.488636 1.0986123
## 1252 33 4 4 NA 4.852030 1.0986123
## 1253 213 1 1 NA 4.094345 0.6931472
## 1254 282 16 4 NA 5.303305 1.0986123
## 1255 208 1 1 NA 3.912023 0.6931472
## 1256 17 4 1 NA 6.369901 0.6931472
## 1257 46 36 36 NA 4.653960 1.9459101
## 1258 96 1 1 NA 4.976734 0.6931472
## 1259 66 25 4 NA 5.225747 1.0986123
## 1260 28 9 4 NA 3.891820 1.0986123
## 1261 71 16 4 NA 4.709530 1.0986123
## 1262 27 49 16 NA 4.553877 1.6094379
## 1263 16 4 1 NA 5.351858 0.6931472
## 1264 9 1 1 NA 4.317488 0.6931472
## 1265 20 16 1 NA 5.017280 0.6931472
## 1266 30 4 1 NA 4.394449 0.6931472
## 1267 12 4 1 NA 5.049856 0.6931472
## 1268 63 4 1 NA 5.049856 0.6931472
## 1269 48 4 1 NA 4.983607 0.6931472
## 1270 14 4 1 NA 5.043425 0.6931472
## 1271 47 16 1 NA 5.198497 0.6931472
## 1272 73 4 1 NA 3.828641 0.6931472
## 1273 32 25 4 NA 5.560682 1.0986123
## 1274 21 9 1 NA 4.955827 0.6931472
## 1275 1038 16 1 NA 4.787492 0.6931472
## 1276 873 1 1 NA 4.248495 0.6931472
## 1277 1071 4 4 NA 5.017280 1.0986123
## 1278 222 1 1 NA 4.094345 0.6931472
## 1279 728 16 16 NA 4.709530 1.6094379
## 1280 1095 144 144 NA 3.637586 2.5649494
## 1281 830 1 1 NA 4.488636 0.6931472
## 1282 837 4 1 NA 4.499810 0.6931472
## 1283 700 9 1 NA 4.672829 0.6931472
## 1284 1010 4 1 NA 4.595120 0.6931472
## 1285 824 9 1 NA 5.433722 0.6931472
## 1286 553 4 1 NA 4.691348 0.6931472
## 1287 838 1 1 NA 4.204693 0.6931472
## 1288 905 4 1 NA 4.615121 0.6931472
## 1289 42 1 1 NA 4.330733 0.6931472
## 1290 1095 4 1 NA 4.488636 0.6931472
## 1291 893 4 1 NA 4.025352 0.6931472
## 1292 830 9 4 NA 4.488636 1.0986123
## 1293 122 9 1 NA 4.875197 0.6931472
## 1294 898 1 1 NA 4.510860 0.6931472
## 1295 988 9 1 NA 4.615121 0.6931472
## 1296 344 9 1 NA 4.615121 0.6931472
## 1297 919 1 1 NA 4.499810 0.6931472
## 1298 1019 49 49 NA 6.091310 2.0794415
## 1299 846 4 1 NA 4.382027 0.6931472
## 1300 936 4 4 NA 4.094345 1.0986123
## 1301 692 36 36 NA 4.867534 1.9459101
## 1302 769 1 1 NA 3.663562 0.6931472
## 1303 692 1 1 NA 3.663562 0.6931472
## 1304 1070 4 4 NA 4.624973 1.0986123
## 1305 705 256 256 NA 3.218876 2.8332133
## 1306 937 1 1 NA 4.248495 0.6931472
## 1307 931 36 4 NA 5.505332 1.0986123
## 1308 900 1 64 NA 3.663562 2.1972246
## 1309 272 4 1 NA 4.043051 0.6931472
## 1310 860 256 256 NA 3.401197 2.8332133
## 1311 723 1 1 NA 3.401197 0.6931472
## 1312 710 1 1 NA 3.367296 0.6931472
## 1313 170 1 1 NA 3.637586 0.6931472
## 1314 1063 4 1 NA 4.488636 0.6931472
## 1315 163 1 1 NA 3.912023 0.6931472
## 1316 579 1 1 NA 4.007333 0.6931472
## 1317 853 16 9 NA 4.189655 1.3862944
## 1318 936 9 1 NA 3.044522 0.6931472
## 1319 550 9 1 NA 4.948760 0.6931472
## 1320 832 1 1 NA 4.094345 0.6931472
## 1321 239 9 1 NA 5.198497 0.6931472
## 1322 275 1 1 NA 3.850148 0.6931472
## 1323 961 4 1 NA 3.931826 0.6931472
## 1324 867 16 16 NA 5.043425 1.6094379
## 1325 392 1 1 NA 3.688879 0.6931472
## 1326 109 16 4 NA 5.497168 1.0986123
## 1327 351 4 1 NA 5.874931 0.6931472
## 1328 897 16 4 NA 5.743003 1.0986123
## 1329 789 100 100 NA 5.634790 2.3978953
## 1330 730 16 4 NA 5.303305 1.0986123
## 1331 1067 4 1 NA 3.713572 0.6931472
## 1332 843 144 144 NA 3.332205 2.5649494
## 1333 922 256 256 NA 6.329721 2.8332133
## 1334 233 1 4 NA 3.637586 1.0986123
## 1335 817 36 4 NA 5.505332 1.0986123
## 1336 1076 256 NA NA 3.912023 NA
## 1337 835 1 1 NA 4.094345 0.6931472
## 1338 840 1 1 NA 4.094345 0.6931472
## 1339 879 4 1 NA 4.158883 0.6931472
## 1340 885 4 NA NA 6.161207 NA
## 1341 23 36 4 NA 5.991465 1.0986123
## 1342 246 1 1 NA 3.912023 0.6931472
## 1343 1035 1 1 NA 3.951244 0.6931472
## 1344 124 4 1 NA 6.907755 0.6931472
## 1345 487 1 1 NA 4.094345 0.6931472
## 1346 728 36 9 NA 6.216606 1.3862944
## 1347 849 16 1 NA 5.993961 0.6931472
## 1348 1018 9 1 NA 5.480639 0.6931472
## 1349 366 1 1 NA 3.850148 0.6931472
## 1350 829 49 9 NA 6.135565 1.3862944
## 1351 520 1 1 NA 3.737670 0.6931472
## 1352 230 36 9 NA 5.771441 1.3862944
## 1353 154 144 144 NA 3.332205 2.5649494
## 1354 830 144 144 NA 3.332205 2.5649494
## 1355 976 100 100 NA 3.332205 2.3978953
## 1356 824 1 1 NA 3.637586 0.6931472
## 1357 846 1 1 NA 3.912023 0.6931472
## 1358 1073 4 1 NA 4.127134 0.6931472
## 1359 1070 4 4 NA 3.931826 1.0986123
## 1360 931 1 1 NA 3.850148 0.6931472
## 1361 844 1 1 NA 5.017280 0.6931472
## 1362 758 64 16 NA 7.158514 1.6094379
## 1363 518 4 4 NA 4.110874 1.0986123
## 1364 770 1 1 NA 3.688879 0.6931472
## 1365 761 1 1 NA 3.912023 0.6931472
## 1366 1055 4 4 NA 5.241747 1.0986123
## 1367 1093 16 4 NA 5.937536 1.0986123
## 1368 1037 1 1 NA 3.526361 0.6931472
## 1369 177 1 1 NA 3.912023 0.6931472
## 1370 808 1 1 NA 4.094345 0.6931472
## 1371 684 4 1 NA 4.394449 0.6931472
## 1372 792 1 1 NA 4.189655 0.6931472
## 1373 24 4 1 NA 6.289716 0.6931472
## 1374 365 25 9 NA 7.213032 1.3862944
## 1375 1084 4 1 NA 3.931826 0.6931472
## 1376 1092 4 1 NA 4.615121 0.6931472
## 1377 842 1 1 NA 4.174387 0.6931472
## 1378 889 16 4 NA 6.042633 1.0986123
## 1379 1037 4 1 NA 4.948760 0.6931472
## 1380 363 4 4 NA 4.574711 1.0986123
## 1381 727 36 9 NA 5.537334 1.3862944
## 1382 942 36 9 NA 5.537334 1.3862944
## 1383 937 4 1 NA 4.330733 0.6931472
## 1384 398 49 9 NA 5.398163 1.3862944
## 1385 1092 25 4 NA 5.327876 1.0986123
## 1386 28 4 1 NA 4.488636 0.6931472
## 1387 648 1 1 NA 4.110874 0.6931472
## 1388 990 4 1 NA 5.463832 0.6931472
## 1389 384 64 16 NA 6.186209 1.6094379
## 1390 542 1 1 NA 4.248495 0.6931472
## 1391 508 1 1 NA 4.248495 0.6931472
## 1392 368 16 4 NA 5.225747 1.0986123
## 1393 795 4 4 NA 4.875197 1.0986123
## 1394 731 1 1 NA 4.094345 0.6931472
## 1395 882 4 4 NA 3.784190 1.0986123
## 1396 559 4 1 NA 4.394449 0.6931472
## 1397 895 16 4 NA 5.937536 1.0986123
## 1398 764 1 1 NA 4.025352 0.6931472
## 1399 888 4 1 NA 5.752573 0.6931472
## 1400 610 4 1 NA 3.850148 0.6931472
## 1401 499 1 1 NA 3.663562 0.6931472
## 1402 1057 1 1 NA 3.688879 0.6931472
## 1403 906 16 1 NA 4.787492 0.6931472
## 1404 803 9 4 NA 4.709530 1.0986123
## 1405 871 1 1 NA 4.094345 0.6931472
## 1406 679 4 1 NA 3.737670 0.6931472
## 1407 799 9 1 NA 3.931826 0.6931472
## 1408 833 16 4 NA 5.293305 1.0986123
## 1409 695 9 4 NA 4.025352 1.0986123
## 1410 783 9 1 NA 4.394449 0.6931472
## 1411 35 4 1 NA 4.795791 0.6931472
## 1412 824 4 1 NA 4.663439 0.6931472
## 1413 845 1 1 NA 3.931826 0.6931472
## 1414 1010 36 36 NA 5.247024 1.9459101
## 1415 952 100 100 NA 3.135494 2.3978953
## 1416 660 1 1 NA 3.912023 0.6931472
## 1417 704 16 16 NA 5.010635 1.6094379
## 1418 778 1 1 NA 5.564520 0.6931472
## 1419 1069 25 9 NA 5.192957 1.3862944
## 1420 846 16 16 NA 7.027315 1.6094379
## 1421 1092 4 1 NA 6.647688 0.6931472
## 1422 582 4 1 NA 4.976734 0.6931472
## 1423 916 4 1 NA 4.955827 0.6931472
## 1424 795 1 1 NA 3.912023 0.6931472
## 1425 917 4 1 NA 4.882802 0.6931472
## 1426 983 1 1 NA 3.688879 0.6931472
## 1427 1005 1 1 NA 3.912023 0.6931472
## 1428 720 16 4 NA 4.976734 1.0986123
## 1429 870 4 1 NA 4.875197 0.6931472
## 1430 122 4 1 NA 4.812184 0.6931472
## 1431 91 4 1 NA 4.828314 0.6931472
## 1432 1038 1 1 NA 3.931826 0.6931472
## 1433 776 25 9 NA 6.593045 1.3862944
## 1434 871 1 1 NA 4.382027 0.6931472
## 1435 1065 1 1 NA 4.094345 0.6931472
## 1436 1011 1 1 NA 4.248495 0.6931472
## 1437 1014 1 1 NA 4.094345 0.6931472
## 1438 797 1 1 NA 3.850148 0.6931472
## 1439 789 1 1 NA 4.025352 0.6931472
## 1440 792 1 1 NA 4.094345 0.6931472
## 1441 1085 1 1 NA 3.610918 0.6931472
## 1442 468 1 1 NA 3.688879 0.6931472
## 1443 694 1 1 NA 3.828641 0.6931472
## 1444 626 4 1 NA 4.948760 0.6931472
## 1445 457 1 1 NA 4.094345 0.6931472
## 1446 1059 4 1 NA 4.488636 0.6931472
## 1447 1049 1 1 NA 3.891820 0.6931472
## 1448 1066 16 4 NA 4.905275 1.0986123
## 1449 734 25 4 NA 6.133398 1.0986123
## 1450 882 36 9 NA 6.522093 1.3862944
## 1451 910 4 1 NA 4.615121 0.6931472
## 1452 728 4 1 NA 3.951244 0.6931472
## 1453 1032 1 1 NA 3.871201 0.6931472
## 1454 859 16 4 NA 5.303305 1.0986123
## 1455 963 16 4 NA 5.257495 1.0986123
## 1456 803 1 1 NA 4.369448 0.6931472
## 1457 882 4 1 NA 5.023881 0.6931472
## 1458 219 4 1 NA 4.927254 0.6931472
## 1459 244 4 1 NA 4.948760 0.6931472
## 1460 1020 36 16 NA 6.545350 1.6094379
## 1461 1031 4 4 NA 4.025352 1.0986123
## 1462 883 1 1 NA 4.248495 0.6931472
## 1463 260 1 1 NA 4.248495 0.6931472
## 1464 958 1 1 NA 3.912023 0.6931472
## 1465 749 1 1 NA 4.094345 0.6931472
## 1466 893 36 9 NA 6.469250 1.3862944
## 1467 748 1 1 NA 3.912023 0.6931472
## 1468 39 9 1 NA 5.673323 0.6931472
## 1469 999 25 4 NA 4.941642 1.0986123
## 1470 682 4 1 NA 4.875197 0.6931472
## 1471 991 1 1 NA 4.787492 0.6931472
## 1472 947 1 1 NA 4.248495 0.6931472
## 1473 464 4 1 NA 5.003946 0.6931472
## 1474 817 4 4 NA 5.198497 1.0986123
## 1475 894 16 16 NA 4.744932 1.6094379
## 1476 918 1 1 NA 5.198497 0.6931472
## 1477 946 1 1 NA 3.912023 0.6931472
## 1478 875 1 1 NA 3.912023 0.6931472
## 1479 27 4 1 NA 4.624973 0.6931472
## 1480 748 1 1 NA 3.912023 0.6931472
## 1481 903 1 1 NA 3.688879 0.6931472
## 1482 938 4 1 NA 3.433987 0.6931472
## 1483 753 4 1 NA 5.081404 0.6931472
## 1484 27 9 16 NA 5.525453 1.6094379
## 1485 914 1 1 NA 3.688879 0.6931472
## 1486 881 1 1 NA 4.094345 0.6931472
## 1487 367 16 4 NA 5.860786 1.0986123
## 1488 890 1 1 NA 3.637586 0.6931472
## 1489 162 1 1 NA 4.248495 0.6931472
## 1490 672 1 1 NA 3.610918 0.6931472
## 1491 924 1 1 NA 3.496508 0.6931472
## 1492 851 1 1 NA 3.526361 0.6931472
## 1493 901 4 1 NA 5.105945 0.6931472
## 1494 891 4 1 NA 5.929589 0.6931472
## 1495 820 36 9 NA 6.431331 1.3862944
## 1496 884 4 1 NA 4.189655 0.6931472
## 1497 110 25 9 NA 6.144186 1.3862944
## 1498 728 9 1 NA 5.749393 0.6931472
## 1499 854 4 1 NA 4.820282 0.6931472
## 1500 784 49 16 NA 6.415097 1.6094379
## 1501 517 1 1 NA 4.094345 0.6931472
## 1502 881 36 16 NA 6.431331 1.6094379
## 1503 114 25 9 NA 6.154858 1.3862944
## 1504 879 1 1 NA 4.248495 0.6931472
## 1505 730 36 9 NA 6.068426 1.3862944
## 1506 106 4 1 NA 4.812184 0.6931472
## 1507 882 4 1 NA 3.713572 0.6931472
## 1508 879 64 16 NA 6.908755 1.6094379
## 1509 152 25 4 NA 6.165418 1.0986123
## 1510 808 4 1 NA 4.709530 0.6931472
## 1511 848 1 1 NA 3.891820 0.6931472
## 1512 872 36 36 NA 3.295837 1.9459101
## 1513 874 16 16 NA 3.295837 1.6094379
## 1514 714 4 1 NA 5.017280 0.6931472
## 1515 863 36 9 NA 5.888878 1.3862944
## 1516 830 1 1 NA 5.501258 0.6931472
## 1517 178 4 1 NA 4.553877 0.6931472
## 1518 751 4 1 NA 4.997212 0.6931472
## 1519 693 4 1 NA 4.795791 0.6931472
## 1520 822 1 1 NA 4.248495 0.6931472
## 1521 584 4 NA NA 4.110874 NA
## 1522 318 4 4 NA 4.948760 1.0986123
## 1523 829 4 4 NA 4.948760 1.0986123
## 1524 762 1 1 NA 3.688879 0.6931472
## 1525 776 1 1 NA 3.912023 0.6931472
## 1526 33 4 1 NA 3.713572 0.6931472
## 1527 829 4 1 NA 4.912655 0.6931472
## 1528 523 4 1 NA 4.753590 0.6931472
## 1529 48 1 1 NA 3.828641 0.6931472
## 1530 825 4 1 NA 5.318120 0.6931472
## 1531 365 1 1 NA 5.010635 0.6931472
## 1532 698 36 36 NA 4.976734 1.9459101
## 1533 754 1 1 NA 4.094345 0.6931472
## 1534 685 4 1 NA 4.382027 0.6931472
## 1535 185 1 1 NA 4.248495 0.6931472
## 1536 610 4 1 NA 4.189655 0.6931472
## 1537 736 4 1 NA 4.615121 0.6931472
## 1538 791 1 1 NA 3.912023 0.6931472
## ln_Baths ln_Capacity ln_Rating Shared_ind House_ind Private_ind
## 1 NA 1.0986123 1.7595806 0 0 1
## 2 NA 1.0986123 1.7817091 0 1 0
## 3 NA 1.0986123 1.7474592 0 0 1
## 4 NA 1.0986123 1.7544037 0 1 0
## 5 NA 1.6094379 1.7029283 0 1 0
## 6 NA 0.6931472 1.7369512 NA NA NA
## 7 NA 1.0986123 1.7595806 0 0 1
## 8 NA 1.0986123 1.7595806 0 1 0
## 9 NA 1.0986123 1.7647308 0 1 0
## 10 NA 1.3862944 1.7439688 0 1 0
## 11 NA 0.6931472 1.7351891 NA NA NA
## 12 NA 1.0986123 1.7439688 0 1 0
## 13 NA 1.0986123 1.7474592 0 1 0
## 14 NA 1.0986123 1.7457155 0 0 1
## 15 NA 1.0986123 1.7749524 0 0 1
## 16 NA 1.3862944 1.7800242 0 1 0
## 17 NA 1.0986123 1.7369512 0 0 1
## 18 NA 1.0986123 1.7647308 0 0 1
## 19 NA 1.0986123 1.7526721 0 0 1
## 20 NA 1.0986123 1.7351891 0 0 1
## 21 NA 1.0986123 1.7630170 0 0 1
## 22 NA 1.3862944 1.7783364 0 1 0
## 23 NA 1.6094379 1.7664417 0 1 0
## 24 NA 1.0986123 1.7281094 0 1 0
## 25 NA 1.0986123 1.7387102 0 1 0
## 26 NA 1.7917595 1.7800242 0 1 0
## 27 NA 1.0986123 1.7783364 0 0 1
## 28 NA 1.0986123 1.7474592 0 0 1
## 29 NA 1.0986123 1.7613003 0 0 1
## 30 NA 1.0986123 1.7526721 0 0 1
## 31 NA 1.0986123 1.7491999 0 1 0
## 32 NA 1.0986123 1.7439688 0 0 1
## 33 NA 1.0986123 1.7227666 0 0 1
## 34 NA 2.1972246 1.7404662 0 0 1
## 35 NA 1.0986123 1.7766458 0 1 0
## 36 NA 1.0986123 1.7664417 0 0 1
## 37 NA 1.0986123 1.7263317 0 0 1
## 38 NA 1.6094379 1.7647308 0 1 0
## 39 NA 1.6094379 1.7316555 0 1 0
## 40 NA 1.0986123 1.7369512 0 0 1
## 41 NA 2.1972246 1.7544037 0 1 0
## 42 NA 0.6931472 1.7578579 0 0 1
## 43 NA 0.6931472 1.7491999 0 0 1
## 44 NA 1.0986123 1.7457155 0 1 0
## 45 NA 1.0986123 1.7351891 0 0 1
## 46 NA 1.0986123 1.7387102 0 1 0
## 47 NA 1.0986123 1.7137979 0 0 1
## 48 NA 2.8332133 1.7698546 0 1 0
## 49 NA 1.9459101 1.7766458 0 1 0
## 50 NA 1.0986123 1.7281094 0 1 0
## 51 NA 1.0986123 1.7316555 0 0 1
## 52 NA 0.6931472 1.7334239 NA NA NA
## 53 NA 1.0986123 1.7457155 0 1 0
## 54 NA 1.0986123 1.7647308 0 1 0
## 55 NA 1.0986123 1.7439688 0 1 0
## 56 NA 1.6094379 1.7595806 0 1 0
## 57 NA 1.0986123 1.7369512 0 1 0
## 58 NA 0.6931472 1.7766458 0 0 1
## 59 NA 1.0986123 1.7369512 0 1 0
## 60 NA 1.6094379 1.7457155 0 1 0
## 61 NA 2.1972246 1.7664417 0 1 0
## 62 NA 2.1972246 1.7630170 0 1 0
## 63 NA 1.0986123 1.7387102 0 1 0
## 64 NA 1.7917595 1.7613003 0 1 0
## 65 NA 1.7917595 1.7209793 0 1 0
## 66 NA 1.0986123 1.6505799 0 0 1
## 67 NA 1.0986123 1.6601310 NA NA NA
## 68 NA 1.3862944 1.7457155 0 0 1
## 69 NA 1.6094379 1.7227666 0 1 0
## 70 NA 1.9459101 1.7457155 0 1 0
## 71 NA 2.0794415 1.7526721 0 0 1
## 72 NA 1.0986123 1.6992786 0 0 1
## 73 NA 1.0986123 1.7526721 0 0 1
## 74 NA 1.9459101 1.7526721 0 1 0
## 75 NA 0.6931472 1.7595806 0 0 1
## 76 NA 1.0986123 1.7209793 0 0 1
## 77 NA 1.0986123 1.7191888 0 0 1
## 78 NA 1.6094379 1.7298841 0 1 0
## 79 NA 1.0986123 1.7732560 0 1 0
## 80 NA 1.6094379 1.7595806 0 1 0
## 81 NA 2.1972246 1.7681496 0 1 0
## 82 NA 2.1972246 1.7526721 0 1 0
## 83 NA 1.0986123 1.7474592 0 0 1
## 84 NA 1.3862944 1.7681496 0 0 1
## 85 NA 1.0986123 1.7732560 0 0 1
## 86 NA 1.0986123 1.7732560 0 1 0
## 87 NA 1.0986123 1.6733512 0 0 1
## 88 NA 1.9459101 1.7509375 0 1 0
## 89 NA 1.0986123 1.6956156 0 0 1
## 90 NA 1.0986123 1.7630170 0 0 1
## 91 NA 2.5649494 1.6752257 NA NA NA
## 92 NA 0.6931472 1.7698546 0 1 0
## 93 NA 0.6931472 1.7404662 0 0 1
## 94 NA 1.0986123 1.7474592 0 1 0
## 95 NA 1.6094379 1.7298841 0 1 0
## 96 NA 1.6094379 1.7491999 0 1 0
## 97 NA 2.1972246 1.7850705 0 1 0
## 98 NA 2.1972246 1.7630170 0 1 0
## 99 NA 2.3025851 1.7817091 0 1 0
## 100 NA 1.0986123 1.7491999 0 0 1
## 101 NA 0.6931472 1.7698546 0 0 1
## 102 NA 0.6931472 1.7298841 0 0 1
## 103 NA 1.0986123 1.7491999 0 0 1
## 104 NA 1.3862944 1.7083779 0 0 1
## 105 NA 1.3862944 1.7083779 1 0 0
## 106 NA 1.6094379 1.7817091 0 1 0
## 107 NA 1.3862944 1.7155981 0 0 1
## 108 NA 1.9459101 1.7613003 0 1 0
## 109 NA 1.0986123 1.7647308 0 1 0
## 110 NA 0.6931472 1.7526721 0 0 1
## 111 NA 1.3862944 1.7316555 0 1 0
## 112 NA 1.0986123 1.7647308 0 0 1
## 113 NA 1.0986123 1.7101878 0 1 0
## 114 NA 1.0986123 1.7698546 0 0 1
## 115 NA 1.0986123 1.7561323 0 0 1
## 116 NA 1.3862944 1.7137979 0 0 1
## 117 NA 1.3862944 1.7101878 0 0 1
## 118 NA 1.0986123 1.7065646 0 1 0
## 119 NA 2.1972246 1.7083779 NA NA NA
## 120 NA 2.5649494 1.7850705 0 1 0
## 121 NA 1.0986123 1.6882491 0 0 1
## 122 NA 1.6094379 1.7850705 0 1 0
## 123 NA 1.6094379 1.6882491 0 1 0
## 124 NA 2.3025851 1.7474592 0 1 0
## 125 NA 1.0986123 1.7173951 0 1 0
## 126 NA 1.9459101 1.7578579 0 0 1
## 127 NA 1.6094379 1.7227666 0 1 0
## 128 NA 1.9459101 1.7083779 0 1 0
## 129 NA 1.7917595 1.6937791 0 0 1
## 130 NA 1.6094379 1.7698546 0 1 0
## 131 NA 1.0986123 1.7544037 0 1 0
## 132 NA 1.0986123 1.7647308 0 1 0
## 133 NA 1.3862944 1.7647308 0 0 1
## 134 NA 1.0986123 1.7561323 0 0 1
## 135 NA 1.0986123 1.7047481 0 0 1
## 136 NA 2.3025851 1.7647308 0 1 0
## 137 NA 2.5649494 1.7766458 0 1 0
## 138 NA 1.6094379 1.7766458 0 1 0
## 139 NA 2.1972246 1.7561323 0 1 0
## 140 NA 1.0986123 1.7422190 0 1 0
## 141 NA 0.6931472 1.7681496 0 0 1
## 142 NA 1.3862944 1.7457155 0 1 0
## 143 NA 1.0986123 1.6658182 NA NA NA
## 144 NA 1.0986123 1.7732560 0 1 0
## 145 NA 1.0986123 1.7884206 0 0 1
## 146 NA 1.3862944 1.6937791 0 0 1
## 147 NA 0.6931472 1.7647308 0 0 1
## 148 NA 1.6094379 1.7613003 0 1 0
## 149 NA 0.6931472 1.7011051 NA NA NA
## 150 NA 1.9459101 1.7578579 0 1 0
## 151 NA 1.9459101 1.6845454 1 0 0
## 152 NA 1.3862944 1.7578579 0 1 0
## 153 NA 0.6931472 1.7732560 0 0 1
## 154 NA 1.0986123 1.7681496 0 0 1
## 155 NA 1.0986123 1.7191888 0 0 1
## 156 NA 1.9459101 1.6845454 NA NA NA
## 157 NA 1.0986123 1.7681496 0 0 1
## 158 NA 2.3025851 1.7613003 0 1 0
## 159 NA 1.6094379 1.7867469 0 1 0
## 160 NA 1.7917595 1.7613003 0 0 1
## 161 NA 1.0986123 1.7155981 NA NA NA
## 162 NA 1.9459101 1.6863990 0 1 0
## 163 NA 1.6094379 1.7439688 0 1 0
## 164 NA 0.6931472 1.7155981 1 0 0
## 165 NA 1.0986123 1.6524974 0 0 1
## 166 NA 1.0986123 1.7387102 0 1 0
## 167 NA 1.0986123 1.7561323 0 1 0
## 168 NA 1.9459101 1.7715568 0 1 0
## 169 NA 1.9459101 1.7630170 0 0 1
## 170 NA 1.7917595 1.6956156 0 1 0
## 171 NA 1.3862944 1.7474592 0 0 1
## 172 NA 1.6094379 1.7457155 0 1 0
## 173 NA 1.0986123 1.6733512 NA NA NA
## 174 NA 1.0986123 1.7630170 0 1 0
## 175 NA 1.0986123 1.7613003 0 1 0
## 176 NA 1.0986123 1.7578579 0 1 0
## 177 NA 1.0986123 1.7578579 0 1 0
## 178 NA 1.0986123 1.7155981 0 0 1
## 179 NA 1.3862944 1.7155981 0 0 1
## 180 NA 1.9459101 1.7766458 0 1 0
## 181 NA 1.0986123 1.7698546 0 1 0
## 182 NA 2.3978953 1.6826884 NA NA NA
## 183 NA 0.6931472 1.7422190 0 0 1
## 184 NA 1.3862944 1.7065646 0 0 1
## 185 NA 1.6094379 1.6826884 0 0 1
## 186 NA 1.3862944 1.7351891 0 0 1
## 187 NA 1.0986123 1.7316555 0 0 1
## 188 NA 2.0794415 1.7681496 0 0 1
## 189 NA 1.7917595 1.6770966 0 1 0
## 190 NA 1.0986123 1.7404662 0 0 1
## 191 NA 1.0986123 1.7404662 0 1 0
## 192 NA 1.0986123 1.7509375 0 0 1
## 193 NA 2.1972246 1.7083779 1 0 0
## 194 NA 1.0986123 1.7664417 0 1 0
## 195 NA 1.0986123 1.7191888 0 0 1
## 196 NA 1.0986123 1.7011051 0 0 1
## 197 NA 1.0986123 1.7630170 0 0 1
## 198 NA 1.0986123 1.7155981 0 0 1
## 199 NA 1.3862944 1.7047481 0 0 1
## 200 NA 1.0986123 1.7029283 0 0 1
## 201 NA 1.0986123 1.7715568 0 1 0
## 202 NA 1.3862944 1.6845454 0 0 1
## 203 NA 1.0986123 1.7917595 0 0 1
## 204 NA 2.1972246 1.6882491 1 0 0
## 205 NA 1.6094379 1.6937791 0 1 0
## 206 NA 1.0986123 1.7351891 0 0 1
## 207 NA 1.0986123 1.6467337 0 1 0
## 208 NA 1.0986123 1.7595806 0 0 1
## 209 NA 0.6931472 1.6956156 0 0 1
## 210 NA 1.0986123 1.7595806 0 1 0
## 211 NA 1.0986123 1.7526721 0 1 0
## 212 NA 1.0986123 1.7083779 NA NA NA
## 213 NA 1.0986123 1.6524974 0 0 1
## 214 NA 1.3862944 1.7155981 0 0 1
## 215 NA 1.0986123 1.7457155 0 0 1
## 216 NA 1.6094379 1.6733512 0 1 0
## 217 NA 1.7917595 1.7404662 0 1 0
## 218 NA 1.0986123 1.7698546 0 0 1
## 219 NA 0.6931472 1.7544037 0 0 1
## 220 NA 1.7917595 1.7209793 0 1 0
## 221 NA 1.0986123 1.7561323 NA NA NA
## 222 NA 1.3862944 1.7917595 0 0 1
## 223 NA 1.0986123 1.7561323 0 0 1
## 224 NA 1.0986123 1.7613003 0 1 0
## 225 NA 0.6931472 1.6937791 0 0 1
## 226 NA 0.6931472 1.6448051 1 0 0
## 227 NA 1.0986123 1.7681496 0 0 1
## 228 NA 0.6931472 1.7917595 0 0 1
## 229 NA 1.3862944 1.7173951 NA NA NA
## 230 NA 1.0986123 1.7850705 0 1 0
## 231 NA 1.0986123 1.6486586 0 0 1
## 232 NA 1.0986123 1.7749524 0 0 1
## 233 NA 1.3862944 1.7047481 0 0 1
## 234 NA 1.0986123 1.7800242 0 1 0
## 235 NA 1.0986123 1.7474592 0 1 0
## 236 NA 1.0986123 1.7732560 0 0 1
## 237 NA 1.0986123 1.7613003 0 0 1
## 238 NA 1.0986123 1.7422190 0 1 0
## 239 NA 1.0986123 1.7491999 0 0 1
## 240 NA 1.6094379 1.7227666 0 1 0
## 241 NA 1.7917595 1.7083779 0 1 0
## 242 NA 1.7917595 1.7474592 0 1 0
## 243 NA 1.0986123 1.7509375 0 0 1
## 244 NA 1.0986123 1.7281094 0 0 1
## 245 NA 1.0986123 1.7137979 NA NA NA
## 246 NA 1.3862944 1.7011051 0 0 1
## 247 NA 0.6931472 1.7595806 0 0 1
## 248 NA 1.0986123 1.7850705 0 0 1
## 249 NA 1.0986123 1.6213665 0 1 0
## 250 NA 0.6931472 1.6937791 0 0 1
## 251 NA 1.0986123 1.7681496 0 1 0
## 252 NA 1.3862944 1.7867469 0 0 1
## 253 NA 1.3862944 1.7119945 0 0 1
## 254 NA 1.0986123 1.6956156 NA NA NA
## 255 NA 1.0986123 1.7544037 0 0 1
## 256 NA 0.6931472 1.7578579 0 0 1
## 257 NA 1.0986123 1.7155981 0 1 0
## 258 NA 1.0986123 1.7369512 0 0 1
## 259 NA 1.0986123 1.7783364 0 1 0
## 260 NA 1.0986123 1.7369512 0 0 1
## 261 NA 1.0986123 1.7509375 0 0 1
## 262 NA 1.6094379 1.7227666 0 1 0
## 263 NA 0.6931472 1.7191888 0 0 1
## 264 NA 2.7725887 1.7578579 0 0 1
## 265 NA 1.0986123 1.6351057 0 0 1
## 266 NA 1.6094379 1.7457155 0 1 0
## 267 NA 0.6931472 1.6272778 1 0 0
## 268 NA 0.6931472 1.6272778 1 0 0
## 269 NA 1.6094379 1.6639261 0 0 1
## 270 NA 1.0986123 1.7595806 0 0 1
## 271 NA 1.3862944 1.7404662 0 1 0
## 272 NA 1.0986123 1.7281094 0 0 1
## 273 NA 1.0986123 1.7698546 0 1 0
## 274 NA 1.3862944 1.7387102 0 1 0
## 275 NA 1.0986123 1.7749524 0 0 1
## 276 NA 1.0986123 1.7422190 0 1 0
## 277 NA 1.0986123 1.7732560 0 1 0
## 278 NA 1.0986123 1.7664417 0 1 0
## 279 NA 1.0986123 1.7647308 0 1 0
## 280 NA 1.0986123 1.7578579 0 1 0
## 281 NA 1.3862944 1.6919391 0 1 0
## 282 NA 0.6931472 1.7404662 0 0 1
## 283 NA 1.0986123 1.7047481 0 1 0
## 284 NA 0.6931472 1.7630170 0 1 0
## 285 NA 1.0986123 1.7544037 0 1 0
## 286 NA 1.0986123 1.6351057 NA NA NA
## 287 NA 1.3862944 1.7011051 0 1 0
## 288 NA 1.7917595 1.7698546 0 1 0
## 289 NA 1.0986123 1.7474592 0 0 1
## 290 NA 1.0986123 1.6919391 0 0 1
## 291 NA 0.6931472 1.7351891 NA NA NA
## 292 NA 1.0986123 1.7245507 0 1 0
## 293 NA 1.3862944 1.7613003 0 0 1
## 294 NA 0.6931472 1.7917595 0 0 1
## 295 NA 1.0986123 1.7439688 0 1 0
## 296 NA 1.0986123 1.7817091 0 1 0
## 297 NA 1.0986123 1.7867469 0 1 0
## 298 NA 1.0986123 1.7647308 0 1 0
## 299 NA 1.9459101 1.6789640 0 0 1
## 300 NA 1.0986123 1.7526721 0 0 1
## 301 NA 1.9459101 1.7457155 0 1 0
## 302 NA 1.9459101 1.7833912 0 1 0
## 303 NA 1.0986123 1.6845454 0 0 1
## 304 NA 1.0986123 1.7561323 0 1 0
## 305 NA 1.0986123 1.7491999 0 1 0
## 306 NA 1.6094379 1.7509375 0 1 0
## 307 NA 0.6931472 1.7800242 1 0 0
## 308 NA 0.6931472 1.7698546 0 0 1
## 309 NA 0.6931472 1.7681496 0 0 1
## 310 NA 1.0986123 1.7698546 0 0 1
## 311 NA 1.0986123 1.7227666 0 0 1
## 312 NA 1.0986123 1.7749524 NA NA NA
## 313 NA 1.0986123 1.7119945 0 0 1
## 314 NA 0.6931472 1.7681496 0 0 1
## 315 NA 1.0986123 1.7630170 0 0 1
## 316 NA 0.6931472 1.7173951 0 0 1
## 317 NA 1.6094379 1.6826884 0 1 0
## 318 NA 0.6931472 1.7749524 0 0 1
## 319 NA 1.6094379 1.6563215 0 1 0
## 320 NA 1.0986123 1.7681496 0 0 1
## 321 NA 1.0986123 1.7491999 0 1 0
## 322 NA 1.0986123 1.7491999 0 1 0
## 323 NA 1.7917595 1.7173951 0 1 0
## 324 NA 1.0986123 1.7867469 0 0 1
## 325 NA 1.3862944 1.7387102 0 1 0
## 326 NA 1.3862944 1.7316555 0 0 1
## 327 NA 1.0986123 1.7833912 NA NA NA
## 328 NA 0.6931472 1.7833912 0 0 1
## 329 NA 1.0986123 1.7664417 0 1 0
## 330 NA 1.0986123 1.7578579 0 1 0
## 331 NA 1.3862944 1.6882491 0 0 1
## 332 NA 1.0986123 1.7664417 0 1 0
## 333 NA 1.0986123 1.7439688 0 0 1
## 334 NA 1.0986123 1.7867469 0 0 1
## 335 NA 1.0986123 1.6370531 0 0 1
## 336 NA 1.6094379 1.7173951 0 1 0
## 337 NA 1.0986123 1.7404662 0 1 0
## 338 NA 2.3978953 1.6448051 NA NA NA
## 339 NA 1.0986123 1.7647308 0 0 1
## 340 NA 1.0986123 1.7833912 0 0 1
## 341 NA 1.0986123 1.7191888 0 0 1
## 342 NA 1.0986123 1.6620304 0 0 1
## 343 NA 1.6094379 1.7439688 0 1 0
## 344 NA 1.6094379 1.7664417 0 1 0
## 345 NA 0.6931472 1.7351891 NA NA NA
## 346 NA 1.6094379 1.7047481 NA NA NA
## 347 NA 0.6931472 1.7715568 0 0 1
## 348 NA 1.0986123 1.7630170 0 0 1
## 349 NA 1.6094379 1.7544037 0 1 0
## 350 NA 1.0986123 1.7439688 0 1 0
## 351 NA 1.0986123 1.5973653 0 1 0
## 352 NA 1.0986123 1.7817091 0 0 1
## 353 NA 1.0986123 1.6919391 0 0 1
## 354 NA 1.3862944 1.6733512 0 0 1
## 355 NA 1.0986123 1.7613003 0 1 0
## 356 NA 1.0986123 1.6524974 0 0 1
## 357 NA 1.0986123 1.7732560 0 1 0
## 358 NA 1.0986123 1.7227666 0 0 1
## 359 NA 1.9459101 1.6505799 0 1 0
## 360 NA 0.6931472 1.7209793 0 0 1
## 361 NA 1.3862944 1.7011051 0 0 1
## 362 NA 0.6931472 1.7561323 0 1 0
## 363 NA 1.0986123 1.6428727 0 0 1
## 364 NA 1.6094379 1.7544037 0 1 0
## 365 NA 1.6094379 1.7137979 0 1 0
## 366 NA 1.0986123 1.7209793 NA NA NA
## 367 NA 1.0986123 1.6882491 0 0 1
## 368 NA 1.0986123 1.7209793 0 0 1
## 369 NA 1.0986123 1.7369512 0 1 0
## 370 NA 1.6094379 1.7369512 0 1 0
## 371 NA 1.6094379 1.7065646 0 0 1
## 372 NA 0.6931472 1.7191888 0 0 1
## 373 NA 1.0986123 1.7664417 0 0 1
## 374 NA 1.0986123 1.7647308 0 1 0
## 375 NA 1.9459101 1.6882491 0 0 1
## 376 NA 0.6931472 1.7526721 0 0 1
## 377 NA 1.0986123 1.7867469 0 1 0
## 378 NA 0.6931472 1.7766458 0 0 1
## 379 NA 1.9459101 1.6919391 0 1 0
## 380 NA 1.0986123 1.7917595 0 0 1
## 381 NA 1.0986123 1.7715568 0 1 0
## 382 NA 0.6931472 1.6695918 NA NA NA
## 383 NA 1.0986123 1.6826884 NA NA NA
## 384 NA 1.0986123 1.7800242 0 0 1
## 385 NA 1.0986123 1.7917595 0 1 0
## 386 NA 1.0986123 1.7281094 0 0 1
## 387 NA 1.0986123 1.7578579 0 1 0
## 388 NA 1.7917595 1.7595806 0 1 0
## 389 NA 1.0986123 1.7595806 0 1 0
## 390 NA 1.0986123 1.6919391 0 0 1
## 391 NA 1.0986123 1.6486586 0 0 1
## 392 NA 1.0986123 1.7281094 0 1 0
## 393 NA 1.0986123 1.7191888 0 0 1
## 394 NA 1.7917595 1.6919391 0 0 1
## 395 NA 0.6931472 1.7155981 0 0 1
## 396 NA 1.7917595 1.7369512 0 1 0
## 397 NA 1.0986123 1.6900958 0 1 0
## 398 NA 1.0986123 1.7800242 0 0 1
## 399 NA 1.0986123 1.7613003 0 0 1
## 400 NA 1.0986123 1.7544037 0 0 1
## 401 NA 1.0986123 1.7137979 0 0 1
## 402 NA 1.3862944 1.6620304 NA NA NA
## 403 NA 0.6931472 1.7439688 NA NA NA
## 404 NA 1.0986123 1.7800242 0 1 0
## 405 NA 1.0986123 1.6428727 0 0 1
## 406 NA 1.3862944 1.6620304 0 1 0
## 407 NA 1.0986123 1.7917595 0 1 0
## 408 NA 1.9459101 1.6733512 NA NA NA
## 409 NA 1.0986123 1.7917595 0 0 1
## 410 NA 1.9459101 1.6992786 1 0 0
## 411 NA 1.0986123 1.7351891 0 1 0
## 412 NA 1.3862944 1.7578579 0 1 0
## 413 NA 1.0986123 1.7387102 0 1 0
## 414 NA 1.0986123 1.7316555 0 1 0
## 415 NA 1.0986123 1.7439688 0 1 0
## 416 NA 1.0986123 1.7544037 0 1 0
## 417 NA 1.0986123 1.7544037 0 1 0
## 418 NA 1.0986123 1.7715568 0 0 1
## 419 NA 2.8332133 1.6505799 NA NA NA
## 420 NA 0.6931472 1.6956156 1 0 0
## 421 NA 1.9459101 1.7749524 0 1 0
## 422 NA 1.0986123 1.7281094 0 1 0
## 423 NA 1.0986123 1.7715568 0 1 0
## 424 NA 1.0986123 1.6826884 0 1 0
## 425 NA 1.0986123 1.7783364 0 1 0
## 426 NA 1.6094379 1.7732560 0 0 1
## 427 NA 1.9459101 1.7613003 0 0 1
## 428 NA 1.0986123 1.7369512 NA NA NA
## 429 NA 1.6094379 1.7422190 0 1 0
## 430 NA 0.6931472 1.7298841 0 0 1
## 431 NA 1.9459101 1.7422190 1 0 0
## 432 NA 1.3862944 1.7173951 0 0 1
## 433 NA 1.6094379 1.6505799 0 1 0
## 434 NA 1.6094379 1.7917595 0 1 0
## 435 NA 1.0986123 1.6658182 0 0 1
## 436 NA 1.6094379 1.7422190 0 0 1
## 437 NA 1.6094379 1.6789640 0 1 0
## 438 NA 1.7917595 1.7047481 0 1 0
## 439 NA 1.6094379 1.7298841 0 1 0
## 440 NA 1.7917595 1.7681496 0 1 0
## 441 NA 1.0986123 1.7561323 0 1 0
## 442 NA 0.6931472 1.7664417 0 0 1
## 443 NA 1.0986123 1.7457155 0 1 0
## 444 NA 1.0986123 1.7766458 0 0 1
## 445 NA 2.8332133 1.7065646 1 0 0
## 446 NA 1.6094379 1.7715568 0 1 0
## 447 NA 1.0986123 1.7766458 0 1 0
## 448 NA 1.0986123 1.7833912 0 1 0
## 449 NA 1.6094379 1.6937791 0 1 0
## 450 NA 1.6094379 1.7439688 0 1 0
## 451 NA 1.0986123 1.7191888 0 1 0
## 452 NA 1.0986123 1.7351891 0 0 1
## 453 NA 1.3862944 1.7783364 0 0 1
## 454 NA 0.6931472 1.7783364 0 0 1
## 455 NA 1.0986123 1.7387102 NA NA NA
## 456 NA 1.6094379 1.6094379 0 1 0
## 457 NA 1.0986123 1.7263317 0 0 1
## 458 NA 2.0794415 1.7387102 0 1 0
## 459 NA 1.0986123 1.7263317 0 0 1
## 460 NA 1.0986123 1.6544113 0 1 0
## 461 NA 1.6094379 1.6253113 0 1 0
## 462 NA 1.6094379 1.7119945 0 0 1
## 463 NA 1.3862944 1.6544113 0 0 1
## 464 NA 1.0986123 1.7664417 0 0 1
## 465 NA 1.0986123 1.7526721 0 0 1
## 466 NA 1.0986123 1.6919391 0 0 1
## 467 NA 1.3862944 1.7263317 0 1 0
## 468 NA 0.6931472 1.7509375 0 0 1
## 469 NA 1.0986123 1.7715568 0 0 1
## 470 NA 0.6931472 1.6331544 1 0 0
## 471 NA 1.7917595 1.7732560 NA NA NA
## 472 NA 1.0986123 1.7526721 0 1 0
## 473 NA 2.6390573 1.6882491 NA NA NA
## 474 NA 1.0986123 1.7491999 0 1 0
## 475 NA 1.0986123 1.6919391 0 0 1
## 476 NA 1.3862944 1.7509375 0 0 1
## 477 NA 1.7917595 1.7647308 0 1 0
## 478 NA 1.0986123 1.7817091 0 1 0
## 479 NA 1.0986123 1.7457155 0 1 0
## 480 NA 1.0986123 1.7578579 0 1 0
## 481 NA 1.0986123 1.7630170 0 1 0
## 482 NA 1.0986123 1.6409366 0 0 1
## 483 NA 1.0986123 1.7681496 0 1 0
## 484 NA 1.0986123 1.6094379 NA NA NA
## 485 NA 1.0986123 1.7491999 NA NA NA
## 486 NA 1.6094379 1.6448051 0 1 0
## 487 NA 0.6931472 1.6900958 NA NA NA
## 488 NA 1.6094379 1.7191888 NA NA NA
## 489 NA 2.1972246 1.6900958 0 0 1
## 490 NA 0.6931472 1.7783364 0 0 1
## 491 NA 1.0986123 1.6900958 1 0 0
## 492 NA 1.0986123 1.6733512 NA NA NA
## 493 NA 1.0986123 1.7917595 0 0 1
## 494 NA 1.9459101 1.7783364 0 1 0
## 495 NA 1.0986123 1.7783364 0 1 0
## 496 NA 1.0986123 1.7351891 0 0 1
## 497 NA 1.0986123 1.7191888 0 0 1
## 498 NA 0.6931472 1.7119945 0 0 1
## 499 NA 0.6931472 1.7351891 0 0 1
## 500 NA 1.0986123 1.7457155 0 1 0
## 501 NA 1.0986123 1.7474592 0 1 0
## 502 NA 1.6094379 1.7173951 0 1 0
## 503 NA 1.0986123 1.6826884 0 0 1
## 504 NA 0.6931472 1.7917595 0 0 1
## 505 NA 1.6094379 1.7613003 0 0 1
## 506 NA 1.0986123 1.7800242 0 1 0
## 507 NA 0.6931472 1.7457155 NA NA NA
## 508 NA 1.6094379 1.7917595 0 1 0
## 509 NA 0.6931472 1.7137979 0 0 1
## 510 NA 1.7917595 1.7404662 0 1 0
## 511 NA 1.0986123 1.7800242 0 0 1
## 512 NA 1.0986123 1.6370531 NA NA NA
## 513 NA 1.0986123 1.7630170 0 1 0
## 514 NA 1.0986123 1.7491999 1 0 0
## 515 NA 1.0986123 1.6448051 0 0 1
## 516 NA 0.6931472 1.7613003 0 0 1
## 517 NA 1.0986123 1.7457155 NA NA NA
## 518 NA 1.0986123 1.7766458 NA NA NA
## 519 NA 0.6931472 1.7766458 0 0 1
## 520 NA 1.9459101 1.6956156 0 1 0
## 521 NA 1.3862944 1.6620304 0 1 0
## 522 NA 1.0986123 1.7766458 0 1 0
## 523 NA 1.0986123 1.7298841 0 1 0
## 524 NA 1.6094379 1.7613003 0 1 0
## 525 NA 1.0986123 1.6620304 0 0 1
## 526 NA 1.0986123 1.7766458 0 1 0
## 527 NA 1.0986123 1.7457155 0 0 1
## 528 NA 1.0986123 1.7766458 0 0 1
## 529 NA 1.3862944 1.7191888 0 1 0
## 530 NA 1.7917595 1.7749524 0 1 0
## 531 NA 1.0986123 1.7561323 0 1 0
## 532 NA 0.6931472 1.7561323 0 0 1
## 533 NA 1.6094379 1.7526721 0 1 0
## 534 NA 2.5649494 1.6863990 NA NA NA
## 535 NA 1.7917595 1.7263317 0 1 0
## 536 NA 1.0986123 1.7783364 0 0 1
## 537 NA 1.0986123 1.7351891 0 1 0
## 538 NA 1.0986123 1.6544113 0 0 1
## 539 NA 0.6931472 1.6677068 1 0 0
## 540 NA 2.1972246 1.7065646 NA NA NA
## 541 NA 2.8332133 1.7316555 1 0 0
## 542 NA 1.7917595 1.7917595 0 1 0
## 543 NA 1.0986123 1.7681496 0 0 1
## 544 NA 1.0986123 1.7491999 0 0 1
## 545 NA 1.0986123 1.7047481 0 0 1
## 546 NA 0.6931472 1.6863990 0 0 1
## 547 NA 1.0986123 1.7917595 0 0 1
## 548 NA 1.0986123 1.7833912 0 0 1
## 549 NA 1.0986123 1.7800242 0 0 1
## 550 NA 2.0794415 1.7681496 0 1 0
## 551 NA 1.0986123 1.7630170 0 1 0
## 552 NA 1.0986123 1.7544037 0 1 0
## 553 NA 1.0986123 1.7681496 0 1 0
## 554 NA 1.0986123 1.7509375 0 1 0
## 555 NA 1.0986123 1.7047481 NA NA NA
## 556 NA 1.0986123 1.6486586 0 0 1
## 557 NA 0.6931472 1.7917595 0 0 1
## 558 NA 1.0986123 1.7544037 0 0 1
## 559 NA 1.0986123 1.7917595 0 0 1
## 560 NA 1.7917595 1.7047481 0 1 0
## 561 NA 1.7917595 1.7227666 0 1 0
## 562 NA 1.0986123 1.6863990 0 1 0
## 563 NA 1.0986123 1.7917595 0 0 1
## 564 NA 1.9459101 1.6937791 0 0 1
## 565 NA 0.6931472 1.7281094 0 0 1
## 566 NA 1.6094379 1.7457155 0 1 0
## 567 NA 1.6094379 1.6094379 1 0 0
## 568 NA 1.0986123 1.7698546 0 1 0
## 569 NA 1.9459101 1.7578579 0 1 0
## 570 NA 1.0986123 1.7664417 0 1 0
## 571 NA 2.5649494 1.6714733 NA NA NA
## 572 NA 1.0986123 1.7800242 0 1 0
## 573 NA 1.0986123 1.7917595 0 0 1
## 574 NA 1.3862944 1.7917595 0 1 0
## 575 NA 1.0986123 1.7917595 0 1 0
## 576 NA 0.6931472 1.7544037 0 0 1
## 577 NA 1.6094379 1.7351891 0 0 1
## 578 NA 1.0986123 1.6677068 NA NA NA
## 579 NA 1.6094379 1.6826884 NA NA NA
## 580 NA 1.0986123 1.7613003 0 0 1
## 581 NA 1.0986123 1.7298841 0 0 1
## 582 NA 0.6931472 1.7766458 0 0 1
## 583 NA 1.0986123 1.6937791 0 1 0
## 584 NA 1.3862944 1.7917595 0 0 1
## 585 NA 1.0986123 1.6733512 NA NA NA
## 586 NA 1.9459101 1.6733512 0 1 0
## 587 NA 2.1972246 1.7917595 0 1 0
## 588 NA 1.0986123 1.6937791 0 1 0
## 589 NA 0.6931472 1.7917595 0 0 1
## 590 NA 1.3862944 1.6733512 0 0 1
## 591 NA 1.7917595 1.7732560 0 1 0
## 592 NA 0.6931472 1.7613003 0 1 0
## 593 NA 1.0986123 1.7544037 0 1 0
## 594 NA 1.0986123 1.7509375 0 1 0
## 595 NA 2.0794415 1.6845454 0 1 0
## 596 NA 2.8332133 1.6331544 NA NA NA
## 597 NA 1.6094379 1.7766458 0 1 0
## 598 NA 1.0986123 1.6937791 0 1 0
## 599 NA 1.0986123 1.7561323 0 0 1
## 600 NA 1.0986123 1.7630170 0 0 1
## 601 NA 1.0986123 1.7047481 0 1 0
## 602 NA 1.3862944 1.6094379 NA NA NA
## 603 NA 1.0986123 1.7047481 NA NA NA
## 604 NA 1.3862944 1.7173951 0 0 1
## 605 NA 2.0794415 1.7613003 0 1 0
## 606 NA 1.0986123 1.7613003 0 1 0
## 607 NA 1.0986123 1.7817091 0 1 0
## 608 NA 0.6931472 1.6992786 0 0 1
## 609 NA 1.6094379 1.7732560 0 1 0
## 610 NA 1.0986123 1.7715568 0 1 0
## 611 NA 1.0986123 1.6863990 NA NA NA
## 612 NA 1.0986123 1.7578579 NA NA NA
## 613 NA 0.6931472 1.7351891 1 0 0
## 614 NA 1.0986123 1.7715568 0 0 1
## 615 NA 1.6094379 1.7047481 NA NA NA
## 616 NA 1.9459101 1.7715568 0 1 0
## 617 NA 1.9459101 1.6826884 0 1 0
## 618 NA 1.9459101 1.6826884 0 1 0
## 619 NA 1.0986123 1.7715568 NA NA NA
## 620 NA 0.6931472 1.7715568 0 0 1
## 621 NA 1.0986123 1.6826884 1 0 0
## 622 NA 2.0794415 1.6094379 0 1 0
## 623 NA 0.6931472 1.7715568 0 0 1
## 624 NA 1.7917595 1.7281094 0 1 0
## 625 NA 0.6931472 1.7917595 0 0 1
## 626 NA 1.0986123 1.7047481 0 1 0
## 627 NA 1.6094379 1.7281094 0 1 0
## 628 NA 1.0986123 1.7281094 0 0 1
## 629 NA 1.7917595 1.6900958 0 1 0
## 630 NA 1.0986123 1.7544037 0 1 0
## 631 NA 1.0986123 1.7137979 0 1 0
## 632 NA 1.0986123 1.7544037 0 1 0
## 633 NA 1.0986123 1.7613003 0 1 0
## 634 NA 1.0986123 1.6544113 0 0 1
## 635 NA 2.1972246 1.6919391 NA NA NA
## 636 NA 0.6931472 1.6428727 1 0 0
## 637 NA 1.0986123 1.7227666 0 0 1
## 638 NA 1.3862944 1.7047481 0 0 1
## 639 NA 1.0986123 1.6789640 0 0 1
## 640 NA 1.0986123 1.7800242 0 0 1
## 641 NA 0.6931472 1.7561323 0 0 1
## 642 NA 1.7917595 1.7749524 0 1 0
## 643 NA 1.7917595 1.7561323 0 1 0
## 644 NA 1.9459101 1.7917595 0 0 1
## 645 NA 1.0986123 1.7715568 0 1 0
## 646 NA 1.0986123 1.7715568 0 1 0
## 647 NA 1.0986123 1.7351891 0 1 0
## 648 NA 1.0986123 1.7227666 NA NA NA
## 649 NA 1.6094379 1.7917595 0 1 0
## 650 NA 1.0986123 1.5851452 0 0 1
## 651 NA 1.6094379 1.7681496 0 1 0
## 652 NA 1.0986123 1.7917595 0 0 1
## 653 NA 1.7917595 1.7173951 0 1 0
## 654 NA 1.0986123 1.7917595 0 1 0
## 655 NA 1.0986123 1.7681496 NA NA NA
## 656 NA 0.6931472 1.7917595 0 1 0
## 657 NA 1.0986123 1.7422190 0 0 1
## 658 NA 1.0986123 1.7173951 NA NA NA
## 659 NA 1.0986123 1.6919391 0 1 0
## 660 NA 0.6931472 1.7422190 NA NA NA
## 661 NA 0.6931472 1.7917595 0 0 1
## 662 NA 1.0986123 1.7422190 0 1 0
## 663 NA 0.6931472 1.6658182 NA NA NA
## 664 NA 0.6931472 1.6919391 NA NA NA
## 665 NA 1.0986123 1.7173951 0 0 1
## 666 NA 1.0986123 1.7173951 0 0 1
## 667 NA 1.0986123 1.7917595 0 1 0
## 668 NA 1.0986123 1.7917595 0 1 0
## 669 NA 1.6094379 1.7917595 0 1 0
## 670 NA 1.0986123 1.7173951 0 0 1
## 671 NA 2.1972246 1.7917595 0 1 0
## 672 NA 2.1972246 1.6370531 0 1 0
## 673 NA 1.0986123 1.7917595 0 1 0
## 674 NA 1.0986123 1.7422190 0 0 1
## 675 NA 1.0986123 1.7173951 0 0 1
## 676 NA 1.0986123 1.7422190 0 0 1
## 677 NA 1.7917595 1.7681496 0 1 0
## 678 NA 1.7917595 1.7917595 0 1 0
## 679 NA 2.1972246 1.7681496 0 1 0
## 680 NA 2.5649494 1.6770966 NA NA NA
## 681 NA 1.0986123 1.7457155 0 1 0
## 682 NA 1.6094379 1.6826884 0 1 0
## 683 NA 1.0986123 1.7281094 0 1 0
## 684 NA 1.0986123 1.7766458 0 0 1
## 685 NA 1.0986123 1.7209793 0 0 1
## 686 NA 1.3862944 1.7316555 0 1 0
## 687 NA 1.0986123 1.7595806 0 1 0
## 688 NA 1.0986123 1.7817091 0 0 1
## 689 NA 1.0986123 1.7613003 0 1 0
## 690 NA 1.3862944 1.7191888 0 0 1
## 691 NA 1.9459101 1.7491999 0 1 0
## 692 NA 0.6931472 1.7732560 0 0 1
## 693 NA 2.8332133 1.6620304 NA NA NA
## 694 NA 1.0986123 1.7732560 0 1 0
## 695 NA 1.6094379 1.7630170 0 0 1
## 696 NA 1.0986123 1.6094379 0 0 1
## 697 NA 1.7917595 1.6292405 0 0 1
## 698 NA 1.0986123 1.7578579 0 1 0
## 699 NA 1.0986123 1.7457155 0 1 0
## 700 NA 1.0986123 1.7281094 0 0 1
## 701 NA 1.0986123 1.7917595 0 0 1
## 702 NA 1.0986123 1.7766458 0 0 1
## 703 NA 1.0986123 1.7491999 NA NA NA
## 704 NA 1.0986123 1.7457155 0 0 1
## 705 NA 1.0986123 1.7884206 0 1 0
## 706 NA 1.3862944 1.6919391 0 0 1
## 707 NA 1.0986123 1.7664417 0 1 0
## 708 NA 0.6931472 1.7351891 0 1 0
## 709 NA 0.6931472 1.7917595 NA NA NA
## 710 NA 1.0986123 1.7749524 0 1 0
## 711 NA 1.0986123 1.5912739 0 0 1
## 712 NA 1.6094379 1.7681496 0 1 0
## 713 NA 1.0986123 1.6826884 0 1 0
## 714 NA 2.3978953 1.6094379 NA NA NA
## 715 NA 1.7917595 1.6428727 0 1 0
## 716 NA 1.0986123 1.7917595 0 0 1
## 717 NA 1.0986123 1.7917595 NA NA NA
## 718 NA 1.6094379 1.7917595 0 0 1
## 719 NA 1.9459101 1.7917595 0 1 0
## 720 NA 0.6931472 1.6428727 NA NA NA
## 721 NA 1.0986123 1.6428727 NA NA NA
## 722 NA 1.9459101 1.6094379 NA NA NA
## 723 NA 1.0986123 1.7351891 0 1 0
## 724 NA 1.0986123 1.7351891 0 0 1
## 725 NA 1.0986123 1.5748465 0 0 1
## 726 NA 1.6094379 1.7917595 0 1 0
## 727 NA 1.0986123 1.7917595 0 0 1
## 728 NA 1.0986123 1.7630170 0 0 1
## 729 NA 2.1972246 1.6733512 0 1 0
## 730 NA 1.0986123 1.7047481 0 1 0
## 731 NA 1.0986123 1.6733512 0 1 0
## 732 NA 1.0986123 1.7047481 0 1 0
## 733 NA 1.9459101 1.5411591 1 0 0
## 734 NA 1.6094379 1.6733512 0 1 0
## 735 NA 1.7917595 1.7047481 0 1 0
## 736 NA 0.6931472 1.7917595 0 0 1
## 737 NA 1.3862944 1.5748465 0 1 0
## 738 NA 1.6094379 1.7351891 0 1 0
## 739 NA 1.6094379 1.6094379 0 0 1
## 740 NA 1.0986123 1.7047481 0 0 1
## 741 NA 1.0986123 1.6428727 0 0 1
## 742 NA 0.6931472 1.7917595 0 0 1
## 743 NA 1.3862944 1.7047481 0 1 0
## 744 NA 0.6931472 1.6845454 0 0 1
## 745 NA 1.0986123 1.7457155 0 0 1
## 746 NA 1.0986123 1.7664417 0 1 0
## 747 NA 1.0986123 1.6582281 0 0 1
## 748 NA 0.6931472 1.7917595 0 0 1
## 749 NA 0.6931472 1.7917595 0 0 1
## 750 NA 1.0986123 1.5851452 0 0 1
## 751 NA 2.1972246 1.7351891 0 0 1
## 752 NA 0.6931472 1.7578579 0 0 1
## 753 NA 1.0986123 1.6601310 1 0 0
## 754 NA 2.3978953 1.6900958 1 0 0
## 755 NA 1.0986123 1.7457155 0 1 0
## 756 NA 1.0986123 1.7578579 0 0 1
## 757 NA 1.0986123 1.7047481 0 0 1
## 758 NA 1.0986123 1.7209793 0 1 0
## 759 NA 1.3862944 1.7800242 0 1 0
## 760 NA 0.6931472 1.7917595 0 1 0
## 761 NA 1.0986123 1.7917595 0 0 1
## 762 NA 1.0986123 1.6733512 0 0 1
## 763 NA 1.0986123 1.7047481 0 0 1
## 764 NA 1.0986123 1.7047481 NA NA NA
## 765 NA 1.3862944 1.7263317 0 0 1
## 766 NA 1.3862944 1.7544037 0 1 0
## 767 NA 1.0986123 1.6428727 0 0 1
## 768 NA 1.0986123 1.6658182 0 0 1
## 769 NA 1.0986123 1.7917595 0 1 0
## 770 NA 0.6931472 1.7613003 0 1 0
## 771 NA 1.0986123 1.7578579 0 1 0
## 772 NA 1.7917595 1.7422190 0 1 0
## 773 NA 1.0986123 1.7917595 0 1 0
## 774 NA 0.6931472 1.5195132 NA NA NA
## 775 NA 0.6931472 1.6486586 0 0 1
## 776 NA 1.9459101 1.6919391 0 1 0
## 777 NA 1.0986123 1.7681496 0 1 0
## 778 NA 1.9459101 1.6094379 0 1 0
## 779 NA 1.6094379 1.6695918 0 1 0
## 780 NA 1.0986123 1.7917595 0 0 1
## 781 NA 1.3862944 1.7681496 NA NA NA
## 782 NA 1.0986123 1.7681496 0 1 0
## 783 NA 1.9459101 1.7578579 0 1 0
## 784 NA 1.9459101 1.7917595 0 1 0
## 785 NA 1.0986123 1.6486586 0 1 0
## 786 NA 1.0986123 1.7227666 0 1 0
## 787 NA 0.6931472 1.6094379 NA NA NA
## 788 NA 0.6931472 1.6863990 0 0 1
## 789 NA 1.0986123 1.7578579 NA NA NA
## 790 NA 1.0986123 1.7578579 0 0 1
## 791 NA 0.6931472 1.7917595 0 0 1
## 792 NA 0.6931472 1.7578579 0 0 1
## 793 NA 1.0986123 1.6094379 NA NA NA
## 794 NA 0.6931472 1.7917595 0 0 1
## 795 NA 1.3862944 1.6863990 0 0 1
## 796 NA 2.1972246 1.7227666 0 1 0
## 797 NA 1.0986123 1.6486586 0 1 0
## 798 NA 1.0986123 1.7917595 0 1 0
## 799 NA 1.6094379 1.6863990 0 1 0
## 800 NA 0.6931472 1.7917595 0 0 1
## 801 NA 1.0986123 1.7578579 0 0 1
## 802 NA 1.0986123 1.7917595 0 0 1
## 803 NA 1.0986123 1.7917595 0 0 1
## 804 NA 1.3862944 1.5686159 0 1 0
## 805 NA 1.6094379 1.7917595 0 1 0
## 806 NA 1.0986123 1.7227666 0 0 1
## 807 NA 1.3862944 1.6486586 0 1 0
## 808 NA 0.6931472 1.7578579 0 0 1
## 809 NA 1.0986123 1.7917595 0 1 0
## 810 NA 1.0986123 1.7917595 0 1 0
## 811 NA 0.6931472 1.7578579 0 0 1
## 812 NA 1.9459101 1.6094379 0 1 0
## 813 NA 1.0986123 1.7917595 0 0 1
## 814 NA 1.3862944 1.6409366 0 0 1
## 815 NA 1.0986123 1.7119945 0 0 1
## 816 NA 1.0986123 1.6826884 0 0 1
## 817 NA 1.3862944 1.7387102 0 1 0
## 818 NA 0.6931472 1.7578579 0 0 1
## 819 NA 1.0986123 1.7404662 0 1 0
## 820 NA 1.3862944 1.7681496 0 1 0
## 821 NA 1.0986123 1.7509375 0 1 0
## 822 NA 1.3862944 1.7509375 0 0 1
## 823 NA 1.3862944 1.7047481 0 0 1
## 824 NA 1.9459101 1.6094379 0 0 1
## 825 NA 1.0986123 1.6974488 0 0 1
## 826 NA 0.6931472 1.7647308 1 0 0
## 827 NA 2.3978953 1.7011051 NA NA NA
## 828 NA 2.8332133 1.6272778 1 0 0
## 829 NA 1.6094379 1.7439688 0 1 0
## 830 NA 2.6390573 1.6937791 NA NA NA
## 831 NA 1.6094379 1.6900958 0 0 1
## 832 NA 1.0986123 1.6733512 0 1 0
## 833 NA 1.0986123 1.6094379 0 1 0
## 834 NA 1.0986123 1.6094379 0 0 1
## 835 NA 1.3862944 1.7491999 0 0 1
## 836 NA 1.3862944 1.7917595 0 0 1
## 837 NA 2.8332133 1.6505799 1 0 0
## 838 NA 1.0986123 1.7491999 NA NA NA
## 839 NA 1.0986123 1.7457155 0 1 0
## 840 NA 1.3862944 1.7917595 0 0 1
## 841 NA 0.6931472 1.7681496 0 0 1
## 842 NA 1.3862944 1.7613003 0 1 0
## 843 NA 1.0986123 1.6094379 0 1 0
## 844 NA 1.3862944 1.5686159 NA NA NA
## 845 NA 1.7917595 1.6094379 0 1 0
## 846 NA 0.6931472 1.6582281 0 0 1
## 847 NA 1.0986123 1.7917595 0 1 0
## 848 NA 1.0986123 1.6524974 NA NA NA
## 849 NA 1.0986123 1.7917595 0 1 0
## 850 NA 1.0986123 1.7155981 0 0 1
## 851 NA 2.0794415 1.7715568 0 1 0
## 852 NA 1.3862944 1.6863990 0 1 0
## 853 NA 0.6931472 1.7578579 0 1 0
## 854 NA 1.0986123 1.7917595 0 0 1
## 855 NA 1.0986123 1.7173951 0 0 1
## 856 NA 1.0986123 1.7630170 0 1 0
## 857 NA 1.6094379 1.6956156 0 1 0
## 858 NA 1.7917595 1.7422190 NA NA NA
## 859 NA 1.0986123 1.6094379 0 0 1
## 860 NA 1.0986123 1.7917595 0 0 1
## 861 NA 0.6931472 1.7491999 0 0 1
## 862 NA 2.3978953 1.5851452 NA NA NA
## 863 NA 1.7917595 1.6863990 0 1 0
## 864 NA 1.0986123 1.4655675 0 0 1
## 865 NA 0.6931472 1.7917595 0 0 1
## 866 NA 1.0986123 1.7917595 0 1 0
## 867 NA 0.6931472 1.7491999 0 0 1
## 868 NA 1.6094379 1.7491999 0 1 0
## 869 NA 1.0986123 1.7917595 0 1 0
## 870 NA 1.3862944 1.7917595 0 0 1
## 871 NA 2.7080502 1.7917595 0 0 1
## 872 NA 0.6931472 1.7917595 0 0 1
## 873 NA 0.6931472 1.6582281 NA NA NA
## 874 NA 2.1972246 1.7047481 NA NA NA
## 875 NA 1.0986123 1.6094379 0 0 1
## 876 NA 1.0986123 1.7047481 1 0 0
## 877 NA 1.0986123 1.6094379 0 0 1
## 878 NA 1.0986123 1.7047481 0 1 0
## 879 NA 1.6094379 1.6582281 0 1 0
## 880 NA 1.6094379 1.7491999 0 1 0
## 881 NA 1.0986123 1.6582281 0 1 0
## 882 NA 0.6931472 1.7047481 0 0 1
## 883 NA 1.9459101 1.7917595 0 1 0
## 884 NA 1.0986123 1.5040774 0 1 0
## 885 NA 1.6094379 1.7491999 0 0 1
## 886 NA 2.8332133 1.7047481 0 1 0
## 887 NA 1.0986123 1.5581446 0 1 0
## 888 NA 1.0986123 1.7491999 0 1 0
## 889 NA 1.3862944 1.6094379 0 0 1
## 890 NA 1.3862944 1.7917595 0 0 1
## 891 NA 1.9459101 1.6094379 1 0 0
## 892 NA 1.0986123 1.7047481 0 0 1
## 893 NA 1.0986123 1.7047481 0 0 1
## 894 NA 1.0986123 1.7917595 0 0 1
## 895 NA 1.0986123 1.6582281 0 0 1
## 896 NA 1.6094379 1.7491999 0 1 0
## 897 NA 1.0986123 1.7917595 0 1 0
## 898 NA 1.0986123 1.7917595 0 0 1
## 899 NA 1.7917595 1.7917595 0 0 1
## 900 NA 1.6094379 1.5040774 0 1 0
## 901 NA 1.0986123 1.7917595 0 1 0
## 902 NA 1.0986123 1.7917595 0 0 1
## 903 NA 0.6931472 1.7917595 0 0 1
## 904 NA 0.6931472 1.7137979 0 0 1
## 905 NA 0.6931472 1.6370531 0 0 1
## 906 NA 1.6094379 1.7544037 0 1 0
## 907 NA 0.6931472 1.6863990 0 0 1
## 908 NA 1.6094379 1.7065646 0 0 1
## 909 NA 1.6094379 1.7578579 0 1 0
## 910 NA 1.0986123 1.7245507 0 0 1
## 911 NA 1.0986123 1.7227666 0 0 1
## 912 NA 1.0986123 1.7227666 0 1 0
## 913 NA 1.0986123 1.7491999 0 0 1
## 914 NA 1.3862944 1.6826884 0 0 1
## 915 NA 1.3862944 1.7917595 0 0 1
## 916 NA 0.6931472 1.6094379 1 0 0
## 917 NA 2.3025851 1.6826884 NA NA NA
## 918 NA 1.9459101 1.7101878 NA NA NA
## 919 NA 1.3862944 1.6486586 0 1 0
## 920 NA 2.0794415 1.7047481 0 0 1
## 921 NA 2.8332133 1.7422190 0 0 1
## 922 NA 2.8332133 1.6448051 NA NA NA
## 923 NA 2.8332133 1.6937791 1 0 0
## 924 NA 1.0986123 1.7917595 0 0 1
## 925 NA 1.9459101 1.7491999 0 1 0
## 926 NA 1.6094379 1.7800242 0 1 0
## 927 NA 1.9459101 1.6292405 1 0 0
## 928 NA 0.6931472 1.6733512 0 0 1
## 929 NA 1.3862944 1.7917595 0 0 1
## 930 NA 0.6931472 1.7630170 0 0 1
## 931 NA 1.9459101 1.7227666 0 1 0
## 932 NA 0.6931472 1.7281094 0 0 1
## 933 NA 2.8332133 1.6448051 NA NA NA
## 934 NA 1.0986123 1.7578579 0 0 1
## 935 NA 1.0986123 1.7766458 0 1 0
## 936 NA 1.0986123 1.7047481 NA NA NA
## 937 NA 1.3862944 1.7047481 0 0 1
## 938 NA 1.0986123 1.6094379 0 0 1
## 939 NA 1.3862944 1.6826884 0 0 1
## 940 NA 1.0986123 1.7917595 0 0 1
## 941 NA 1.0986123 1.5581446 NA NA NA
## 942 NA 1.6094379 1.6733512 NA NA NA
## 943 NA 1.6094379 1.7681496 0 1 0
## 944 NA 1.0986123 1.7917595 0 1 0
## 945 NA 1.0986123 1.5040774 0 0 1
## 946 NA 1.3862944 1.5411591 0 0 1
## 947 NA 1.0986123 1.6863990 0 1 0
## 948 NA 1.0986123 1.7351891 0 0 1
## 949 NA 1.6094379 1.4469190 0 0 1
## 950 NA 0.6931472 1.7227666 0 0 1
## 951 NA 1.3862944 1.7917595 0 1 0
## 952 NA 1.0986123 1.3217558 0 0 1
## 953 NA 1.3862944 1.7351891 0 0 1
## 954 NA 1.0986123 1.6733512 NA NA NA
## 955 NA 1.0986123 1.6863990 0 0 1
## 956 NA 1.0986123 1.6733512 0 0 1
## 957 NA 1.6094379 1.7047481 NA NA NA
## 958 NA 1.3862944 1.7578579 0 0 1
## 959 NA 1.3862944 1.7351891 0 0 1
## 960 NA 1.9459101 1.7578579 0 1 0
## 961 NA 1.6094379 1.7917595 0 0 1
## 962 NA 1.0986123 1.7917595 0 1 0
## 963 NA 1.0986123 1.7917595 0 0 1
## 964 NA 1.6094379 1.5411591 0 1 0
## 965 NA 1.0986123 1.7917595 0 0 1
## 966 NA 1.9459101 1.7917595 0 1 0
## 967 NA 1.7917595 1.7917595 0 1 0
## 968 NA 1.3862944 1.7917595 0 1 0
## 969 NA 1.3862944 1.7917595 0 1 0
## 970 NA 1.0986123 1.7917595 0 1 0
## 971 NA 1.0986123 1.7917595 0 1 0
## 972 NA 1.7917595 1.7917595 0 1 0
## 973 NA 1.3862944 1.6094379 0 1 0
## 974 NA 0.6931472 1.7917595 0 0 1
## 975 NA 1.0986123 1.6733512 NA NA NA
## 976 NA 1.0986123 1.7917595 NA NA NA
## 977 NA 1.7917595 1.7351891 0 1 0
## 978 NA 1.0986123 1.7917595 0 1 0
## 979 NA 0.6931472 1.7047481 0 0 1
## 980 NA 1.0986123 1.7351891 0 0 1
## 981 NA 1.0986123 1.7917595 0 1 0
## 982 NA 1.0986123 1.7351891 0 1 0
## 983 NA 1.0986123 1.7917595 0 1 0
## 984 NA 1.0986123 1.6094379 0 1 0
## 985 NA 1.0986123 1.5411591 NA NA NA
## 986 NA 1.0986123 1.7917595 0 1 0
## 987 NA 0.6931472 1.7917595 0 0 1
## 988 NA 1.0986123 1.3862944 0 0 1
## 989 NA 0.6931472 1.7917595 0 0 1
## 990 NA 2.1972246 1.7917595 0 1 0
## 991 NA 1.0986123 1.7351891 NA NA NA
## 992 NA 0.6931472 1.7917595 0 0 1
## 993 NA 1.6094379 1.6733512 0 1 0
## 994 NA 1.3862944 1.7351891 0 0 1
## 995 NA 1.3862944 1.6733512 0 0 1
## 996 NA 1.0986123 1.6733512 0 0 1
## 997 NA 1.0986123 1.7917595 0 1 0
## 998 NA 1.6094379 1.7917595 0 1 0
## 999 NA 1.0986123 1.7917595 0 1 0
## 1000 NA 2.1972246 1.7917595 0 0 1
## 1001 NA 1.9459101 1.4655675 0 1 0
## 1002 NA 0.6931472 1.7917595 0 0 1
## 1003 NA 1.0986123 1.7351891 0 1 0
## 1004 NA 1.0986123 1.7351891 0 0 1
## 1005 NA 1.0986123 1.7917595 0 1 0
## 1006 NA 0.6931472 1.6733512 0 0 1
## 1007 NA 2.1972246 1.7917595 0 0 1
## 1008 NA 1.0986123 1.7917595 0 0 1
## 1009 NA 0.6931472 1.7917595 0 0 1
## 1010 NA 1.0986123 1.4655675 0 0 1
## 1011 NA 1.7917595 1.3001917 0 1 0
## 1012 NA 1.3862944 1.7917595 0 0 1
## 1013 NA 1.0986123 1.6733512 0 0 1
## 1014 NA 1.6094379 1.7917595 0 0 1
## 1015 NA 1.3862944 1.3001917 0 0 1
## 1016 NA 1.0986123 1.7917595 0 1 0
## 1017 NA 1.6094379 1.6733512 0 1 0
## 1018 NA 1.0986123 1.7917595 0 1 0
## 1019 NA 1.0986123 1.7917595 0 1 0
## 1020 NA 1.0986123 1.7917595 0 0 1
## 1021 NA 1.0986123 1.7917595 0 0 1
## 1022 NA 0.6931472 1.7351891 0 0 1
## 1023 NA 1.0986123 1.7917595 0 0 1
## 1024 NA 1.3862944 1.7917595 0 1 0
## 1025 NA 1.0986123 1.7917595 0 0 1
## 1026 NA 1.0986123 1.7917595 0 0 1
## 1027 NA 1.3862944 1.6094379 0 1 0
## 1028 NA 1.6094379 1.7351891 0 1 0
## 1029 NA 0.6931472 1.6486586 0 0 1
## 1030 NA 0.6931472 1.7351891 0 0 1
## 1031 NA 1.6094379 1.7065646 0 0 1
## 1032 NA 0.6931472 1.7732560 0 0 1
## 1033 NA 0.6931472 1.7917595 0 0 1
## 1034 NA 0.6931472 1.6094379 0 0 1
## 1035 NA 1.3862944 1.5411591 0 0 1
## 1036 NA 1.0986123 1.6937791 0 0 1
## 1037 NA 1.9459101 1.5325569 0 1 0
## 1038 NA 0.6931472 1.7491999 0 0 1
## 1039 NA 1.0986123 1.6919391 0 0 1
## 1040 NA 0.6931472 1.7263317 0 0 1
## 1041 NA 1.9459101 1.6900958 0 1 0
## 1042 NA 0.6931472 1.5411591 1 0 0
## 1043 NA 0.6931472 1.5325569 1 0 0
## 1044 NA 1.3862944 1.7647308 0 1 0
## 1045 NA 1.0986123 1.6094379 1 0 0
## 1046 NA 1.0986123 1.7047481 1 0 0
## 1047 NA 1.0986123 1.7917595 0 1 0
## 1048 NA 2.0794415 1.7227666 0 0 1
## 1049 NA 0.6931472 1.7681496 0 0 1
## 1050 NA 0.6931472 1.7173951 0 0 1
## 1051 NA 0.6931472 1.6389967 1 0 0
## 1052 NA 0.6931472 1.7917595 1 0 0
## 1053 NA 2.8332133 1.6448051 1 0 0
## 1054 NA 2.8332133 1.6094379 1 0 0
## 1055 NA 1.6094379 1.6094379 0 0 1
## 1056 NA 1.0986123 1.6094379 0 0 1
## 1057 NA 1.7917595 1.7351891 0 1 0
## 1058 NA 0.6931472 1.6900958 1 0 0
## 1059 NA 0.6931472 1.7491999 0 0 1
## 1060 NA 1.3862944 1.7917595 0 0 1
## 1061 NA 0.6931472 1.7917595 0 0 1
## 1062 NA 1.0986123 1.7491999 0 1 0
## 1063 NA 1.0986123 1.7491999 0 1 0
## 1064 NA 1.3862944 1.7917595 0 0 1
## 1065 NA 1.0986123 1.3862944 0 0 1
## 1066 NA 0.6931472 1.7917595 0 0 1
## 1067 NA 1.0986123 1.7422190 0 0 1
## 1068 NA 1.0986123 1.7732560 0 0 1
## 1069 NA 1.0986123 1.7917595 0 1 0
## 1070 NA 1.0986123 1.7613003 0 1 0
## 1071 NA 1.9459101 1.5040774 0 1 0
## 1072 NA 1.0986123 1.7047481 0 0 1
## 1073 NA 0.6931472 1.7917595 0 0 1
## 1074 NA 1.3862944 1.7047481 0 1 0
## 1075 NA 2.8332133 1.6524974 1 0 0
## 1076 NA 2.3978953 1.6213665 NA NA NA
## 1077 NA 2.3978953 1.7457155 NA NA NA
## 1078 NA 1.0986123 1.7491999 0 1 0
## 1079 NA 1.3862944 1.7491999 0 0 1
## 1080 NA 0.6931472 1.7917595 0 1 0
## 1081 NA 1.3862944 1.6937791 1 0 0
## 1082 NA 1.9459101 1.7917595 0 1 0
## 1083 NA 0.6931472 1.6292405 0 0 1
## 1084 NA 1.0986123 1.7917595 0 0 1
## 1085 NA 1.0986123 1.6919391 NA NA NA
## 1086 NA 1.0986123 1.7137979 0 1 0
## 1087 NA 0.6931472 1.7578579 0 0 1
## 1088 NA 1.3862944 1.7749524 0 0 1
## 1089 NA 1.3862944 1.6094379 0 0 1
## 1090 NA 1.9459101 1.7047481 0 1 0
## 1091 NA 1.3862944 1.7351891 0 1 0
## 1092 NA 1.6094379 1.5411591 0 0 1
## 1093 NA 1.0986123 1.5411591 NA NA NA
## 1094 NA 1.3862944 1.7917595 0 1 0
## 1095 NA 0.6931472 1.7917595 0 0 1
## 1096 NA 1.0986123 1.7917595 0 1 0
## 1097 NA 1.0986123 1.7715568 0 1 0
## 1098 NA 0.6931472 1.7351891 0 0 1
## 1099 NA 0.6931472 1.7047481 0 0 1
## 1100 NA 0.6931472 1.6094379 0 0 1
## 1101 NA 1.0986123 1.7227666 NA NA NA
## 1102 NA 1.0986123 1.7491999 NA NA NA
## 1103 NA 1.0986123 1.7917595 0 1 0
## 1104 NA 1.9459101 1.2527630 0 1 0
## 1105 NA 2.8332133 1.6094379 NA NA NA
## 1106 NA 1.6094379 1.5810384 NA NA NA
## 1107 NA 1.6094379 1.4655675 0 0 1
## 1108 NA 1.3862944 1.6733512 NA NA NA
## 1109 NA 1.0986123 1.5260563 0 0 1
## 1110 NA 1.0986123 1.6292405 0 0 1
## 1111 NA 1.9459101 1.7917595 0 0 1
## 1112 NA 1.0986123 1.6733512 0 0 1
## 1113 NA 0.6931472 1.6486586 0 0 1
## 1114 NA 1.0986123 1.6094379 0 0 1
## 1115 NA 1.0986123 1.6094379 0 0 1
## 1116 NA 1.0986123 1.6094379 0 0 1
## 1117 NA 1.0986123 1.7047481 0 0 1
## 1118 NA 1.3862944 1.7917595 0 0 1
## 1119 NA 1.0986123 1.5040774 NA NA NA
## 1120 NA 1.0986123 1.3862944 0 0 1
## 1121 NA 1.3862944 1.7917595 0 1 0
## 1122 NA 1.6094379 1.7917595 0 1 0
## 1123 NA 1.0986123 1.7917595 0 0 1
## 1124 NA 1.6094379 1.7047481 0 1 0
## 1125 NA 1.0986123 1.7917595 0 0 1
## 1126 NA 1.0986123 1.6094379 0 0 1
## 1127 NA 1.0986123 1.7917595 0 1 0
## 1128 NA 0.6931472 1.7917595 0 0 1
## 1129 NA 1.0986123 1.7422190 0 0 1
## 1130 NA 0.6931472 1.7917595 1 0 0
## 1131 NA 2.3978953 1.6094379 NA NA NA
## 1132 NA 2.3978953 1.6094379 NA NA NA
## 1133 NA 0.6931472 1.6094379 0 0 1
## 1134 NA 1.0986123 1.7047481 NA NA NA
## 1135 NA 1.6094379 1.7351891 0 1 0
## 1136 NA 1.6094379 1.7047481 0 1 0
## 1137 NA 0.6931472 1.7917595 0 0 1
## 1138 NA 0.6931472 1.7917595 0 0 1
## 1139 NA 0.6931472 1.5411591 0 0 1
## 1140 NA 0.6931472 1.7917595 0 0 1
## 1141 NA 1.6094379 1.5040774 0 0 1
## 1142 NA 1.0986123 1.7917595 0 0 1
## 1143 NA 1.0986123 1.7917595 0 1 0
## 1144 NA 1.6094379 1.7917595 0 1 0
## 1145 NA 1.0986123 1.7917595 0 0 1
## 1146 NA 1.6094379 1.7917595 0 1 0
## 1147 NA 0.6931472 1.7917595 0 0 1
## 1148 NA 1.0986123 1.7917595 0 1 0
## 1149 NA 1.6094379 1.6094379 0 1 0
## 1150 NA 1.0986123 1.7917595 0 1 0
## 1151 NA 1.6094379 1.6094379 0 1 0
## 1152 NA 1.6094379 1.7047481 0 1 0
## 1153 NA 1.6094379 1.7047481 0 1 0
## 1154 NA 0.6931472 1.7917595 0 0 1
## 1155 NA 0.6931472 1.6094379 0 0 1
## 1156 NA 1.7917595 1.7917595 0 1 0
## 1157 NA 0.6931472 1.7047481 0 0 1
## 1158 NA 0.6931472 1.7917595 0 0 1
## 1159 NA 0.6931472 1.5040774 0 0 1
## 1160 NA 1.6094379 1.7917595 0 1 0
## 1161 NA 0.6931472 1.7917595 0 0 1
## 1162 NA 0.6931472 1.6094379 0 0 1
## 1163 NA 1.3862944 1.7917595 0 1 0
## 1164 NA 1.0986123 1.3862944 0 0 1
## 1165 NA 1.0986123 1.7047481 0 1 0
## 1166 NA 0.6931472 1.7917595 0 0 1
## 1167 NA 0.6931472 1.7047481 0 0 1
## 1168 NA 0.6931472 1.6094379 NA NA NA
## 1169 NA 1.9459101 1.7917595 0 1 0
## 1170 NA 0.6931472 1.3862944 0 0 1
## 1171 NA 1.6094379 1.6094379 1 0 0
## 1172 NA 0.6931472 1.7917595 0 0 1
## 1173 NA 1.0986123 1.7917595 0 1 0
## 1174 NA 1.0986123 1.7917595 0 1 0
## 1175 NA 0.6931472 1.7917595 0 0 1
## 1176 NA 2.1972246 1.7917595 0 1 0
## 1177 NA 1.9459101 1.7917595 0 1 0
## 1178 NA 0.6931472 1.7047481 0 0 1
## 1179 NA 1.6094379 1.7047481 0 1 0
## 1180 NA 1.0986123 1.5040774 1 0 0
## 1181 NA 1.0986123 1.6094379 0 1 0
## 1182 NA 1.6094379 1.7917595 0 1 0
## 1183 NA 0.6931472 1.7047481 0 0 1
## 1184 NA 0.6931472 1.7917595 0 0 1
## 1185 NA 1.0986123 1.7917595 0 1 0
## 1186 NA 1.0986123 1.6094379 0 0 1
## 1187 NA 1.0986123 1.7917595 0 1 0
## 1188 NA 1.6094379 1.7917595 0 1 0
## 1189 NA 1.3862944 1.7917595 NA NA NA
## 1190 NA 1.0986123 1.7047481 0 0 1
## 1191 NA 0.6931472 1.7917595 0 0 1
## 1192 NA 0.6931472 1.7917595 0 0 1
## 1193 NA 0.6931472 1.7917595 0 0 1
## 1194 NA 1.3862944 1.7917595 0 1 0
## 1195 NA 0.6931472 1.7917595 0 0 1
## 1196 NA 0.6931472 1.6094379 0 0 1
## 1197 NA 1.0986123 1.7917595 0 1 0
## 1198 NA 1.0986123 1.7917595 0 1 0
## 1199 NA 1.6094379 1.7917595 0 1 0
## 1200 NA 1.0986123 1.7917595 0 1 0
## 1201 NA 1.0986123 1.6094379 0 0 1
## 1202 NA 0.6931472 0.0000000 0 0 1
## 1203 NA 0.6931472 1.7917595 0 0 1
## 1204 NA 2.0794415 1.5040774 0 1 0
## 1205 NA 0.6931472 1.7917595 0 0 1
## 1206 NA 1.0986123 1.7917595 0 0 1
## 1207 NA 2.3025851 1.7917595 0 1 0
## 1208 NA 1.0986123 1.7047481 0 1 0
## 1209 NA 1.0986123 1.7917595 0 1 0
## 1210 NA 1.3862944 1.6094379 0 1 0
## 1211 NA 1.0986123 1.6094379 0 1 0
## 1212 NA 1.0986123 1.6094379 0 1 0
## 1213 NA 1.0986123 1.7917595 0 1 0
## 1214 NA 1.6094379 1.7047481 1 0 0
## 1215 NA 1.3862944 1.7917595 0 1 0
## 1216 NA 1.0986123 1.3862944 0 1 0
## 1217 NA 0.6931472 1.3862944 0 0 1
## 1218 NA 1.0986123 1.7047481 0 0 1
## 1219 NA 1.0986123 1.7917595 0 1 0
## 1220 NA 1.6094379 1.6094379 0 0 1
## 1221 NA 2.3978953 1.3862944 0 0 1
## 1222 NA 0.6931472 1.6094379 1 0 0
## 1223 NA 1.0986123 1.7047481 0 0 1
## 1224 NA 1.0986123 1.7917595 0 0 1
## 1225 NA 1.0986123 1.7917595 0 0 1
## 1226 NA 1.0986123 1.7917595 0 1 0
## 1227 NA 0.6931472 1.2527630 0 0 1
## 1228 NA 1.0986123 1.7917595 0 0 1
## 1229 NA 1.0986123 1.7917595 0 1 0
## 1230 NA 1.6094379 1.7917595 0 0 1
## 1231 NA 1.3862944 1.7917595 0 0 1
## 1232 NA 1.3862944 1.7917595 0 0 1
## 1233 NA 1.3862944 1.7047481 0 0 1
## 1234 NA 1.3862944 1.7917595 0 0 1
## 1235 NA 1.6094379 1.7917595 0 1 0
## 1236 NA 1.3862944 1.7917595 0 1 0
## 1237 NA 1.3862944 1.7917595 0 1 0
## 1238 NA 1.3862944 1.3862944 0 1 0
## 1239 NA 1.0986123 1.7917595 0 0 1
## 1240 NA 1.0986123 1.6094379 0 0 1
## 1241 NA 1.0986123 1.7047481 0 1 0
## 1242 NA 1.0986123 1.7917595 0 1 0
## 1243 NA 1.7917595 1.7917595 0 1 0
## 1244 NA 1.9459101 1.7917595 0 1 0
## 1245 NA 1.0986123 1.7917595 0 0 1
## 1246 NA 1.3862944 1.7917595 0 0 1
## 1247 NA 0.0000000 1.7047481 NA NA NA
## 1248 NA 1.0986123 1.7917595 0 1 0
## 1249 NA 1.0986123 1.7917595 0 0 1
## 1250 NA 1.0986123 1.7917595 0 1 0
## 1251 NA 0.6931472 1.7917595 0 0 1
## 1252 NA 1.0986123 1.7917595 0 0 1
## 1253 NA 0.6931472 1.7917595 0 0 1
## 1254 NA 1.6094379 1.7917595 0 1 0
## 1255 NA 0.6931472 1.7917595 0 0 1
## 1256 NA 1.0986123 1.7047481 0 0 1
## 1257 NA 1.9459101 1.7047481 0 0 1
## 1258 NA 0.6931472 1.7917595 0 0 1
## 1259 NA 1.7917595 1.7917595 0 1 0
## 1260 NA 1.3862944 1.7047481 0 0 1
## 1261 NA 1.6094379 1.7917595 0 0 1
## 1262 NA 2.0794415 1.7047481 0 0 1
## 1263 NA 1.0986123 1.7917595 0 1 0
## 1264 NA 0.6931472 1.7917595 0 0 1
## 1265 NA 1.6094379 1.2527630 0 1 0
## 1266 NA 1.0986123 1.7047481 0 0 1
## 1267 NA 1.0986123 1.7917595 0 1 0
## 1268 NA 1.0986123 1.7047481 0 1 0
## 1269 NA 1.0986123 1.7047481 0 0 1
## 1270 NA 1.0986123 1.7917595 0 0 1
## 1271 NA 1.6094379 1.7047481 0 1 0
## 1272 NA 1.0986123 1.7047481 0 0 1
## 1273 NA 1.7917595 1.7917595 0 1 0
## 1274 NA 1.3862944 1.7047481 0 1 0
## 1275 NA 1.6094379 1.7281094 0 0 1
## 1276 NA 0.6931472 1.6094379 0 0 1
## 1277 NA 1.0986123 1.7917595 0 0 1
## 1278 NA 0.6931472 1.6370531 0 0 1
## 1279 NA 1.6094379 1.3862944 0 0 1
## 1280 NA 2.5649494 1.7544037 1 0 0
## 1281 NA 0.6931472 1.7917595 0 0 1
## 1282 NA 1.0986123 1.7561323 0 0 1
## 1283 NA 1.3862944 1.7917595 0 1 0
## 1284 NA 1.0986123 1.7630170 0 1 0
## 1285 NA 1.3862944 1.6733512 0 1 0
## 1286 NA 1.0986123 1.7917595 0 0 1
## 1287 NA 0.6931472 1.7749524 0 0 1
## 1288 NA 1.0986123 1.7917595 0 1 0
## 1289 NA 0.6931472 1.7664417 0 0 1
## 1290 NA 1.0986123 1.7783364 0 1 0
## 1291 NA 1.0986123 0.6931472 0 0 1
## 1292 NA 1.3862944 1.6582281 0 0 1
## 1293 NA 1.3862944 1.7917595 0 0 1
## 1294 NA 0.6931472 1.6733512 0 0 1
## 1295 NA 1.3862944 1.7491999 0 0 1
## 1296 NA 1.3862944 1.7630170 0 0 1
## 1297 NA 0.6931472 1.4655675 1 0 0
## 1298 NA 2.0794415 1.7917595 NA NA NA
## 1299 NA 1.0986123 1.6486586 1 0 0
## 1300 NA 1.0986123 1.7491999 1 0 0
## 1301 NA 1.9459101 1.7917595 0 0 1
## 1302 NA 0.6931472 1.7917595 1 0 0
## 1303 NA 0.6931472 1.7664417 1 0 0
## 1304 NA 1.0986123 1.4469190 NA NA NA
## 1305 NA 2.8332133 1.6351057 NA NA NA
## 1306 NA 0.6931472 1.7047481 0 0 1
## 1307 NA 1.9459101 1.6428727 0 1 0
## 1308 NA 0.6931472 1.5686159 1 0 0
## 1309 NA 1.0986123 1.7917595 0 0 1
## 1310 NA 2.8332133 1.6094379 1 0 0
## 1311 NA 0.6931472 1.7047481 1 0 0
## 1312 NA 0.6931472 1.6094379 1 0 0
## 1313 NA 0.6931472 1.7351891 0 0 1
## 1314 NA 1.0986123 1.5325569 0 1 0
## 1315 NA 0.6931472 1.6094379 0 0 1
## 1316 NA 0.6931472 1.7917595 0 0 1
## 1317 NA 1.6094379 1.7227666 0 1 0
## 1318 NA 1.3862944 1.7047481 1 0 0
## 1319 NA 1.3862944 1.7491999 0 0 1
## 1320 NA 0.6931472 1.7917595 0 0 1
## 1321 NA 1.3862944 1.6094379 0 0 1
## 1322 NA 0.6931472 1.7047481 0 0 1
## 1323 NA 1.0986123 1.7047481 0 0 1
## 1324 NA 1.6094379 1.7047481 0 1 0
## 1325 NA 0.6931472 1.6582281 0 0 1
## 1326 NA 1.6094379 1.7917595 0 1 0
## 1327 NA 1.0986123 1.6094379 0 1 0
## 1328 NA 1.6094379 1.3862944 0 1 0
## 1329 NA 2.3978953 1.6094379 0 0 1
## 1330 NA 1.6094379 1.7917595 0 0 1
## 1331 NA 1.0986123 1.6094379 0 0 1
## 1332 NA 2.5649494 1.6351057 NA NA NA
## 1333 NA 2.8332133 1.5040774 0 0 1
## 1334 NA 0.6931472 1.6094379 0 0 1
## 1335 NA 1.9459101 1.7917595 0 1 0
## 1336 NA 2.8332133 1.6094379 1 0 0
## 1337 NA 0.6931472 1.7047481 0 0 1
## 1338 NA 0.6931472 1.7047481 0 0 1
## 1339 NA 1.0986123 1.7681496 0 0 1
## 1340 NA 1.0986123 1.6094379 0 1 0
## 1341 NA 1.9459101 1.6582281 0 1 0
## 1342 NA 0.6931472 1.7917595 0 0 1
## 1343 NA 0.6931472 1.7917595 0 0 1
## 1344 NA 1.0986123 1.7917595 0 0 1
## 1345 NA 0.6931472 1.7047481 0 0 1
## 1346 NA 1.9459101 1.7351891 0 0 1
## 1347 NA 1.6094379 1.7917595 0 0 1
## 1348 NA 1.3862944 1.5411591 0 1 0
## 1349 NA 0.6931472 1.7917595 0 0 1
## 1350 NA 2.0794415 1.6094379 0 1 0
## 1351 NA 0.6931472 1.3862944 0 0 1
## 1352 NA 1.9459101 1.6094379 0 1 0
## 1353 NA 2.5649494 1.6733512 NA NA NA
## 1354 NA 2.5649494 1.6094379 NA NA NA
## 1355 NA 2.3978953 1.7917595 NA NA NA
## 1356 NA 0.6931472 1.7595806 0 0 1
## 1357 NA 0.6931472 1.7917595 0 0 1
## 1358 NA 1.0986123 1.5581446 0 0 1
## 1359 NA 1.0986123 1.6292405 0 0 1
## 1360 NA 0.6931472 1.6094379 0 0 1
## 1361 NA 0.6931472 0.0000000 0 0 1
## 1362 NA 2.1972246 1.7917595 NA NA NA
## 1363 NA 1.0986123 1.7047481 0 0 1
## 1364 NA 0.6931472 1.7917595 0 0 1
## 1365 NA 0.6931472 1.7917595 0 0 1
## 1366 NA 1.0986123 1.7917595 0 0 1
## 1367 NA 1.6094379 1.6094379 0 1 0
## 1368 NA 0.6931472 1.5040774 0 0 1
## 1369 NA 0.6931472 1.7917595 0 0 1
## 1370 NA 0.6931472 1.6094379 0 0 1
## 1371 NA 1.0986123 1.7917595 0 1 0
## 1372 NA 0.6931472 1.7917595 0 0 1
## 1373 NA 1.0986123 1.7917595 0 1 0
## 1374 NA 1.7917595 1.7917595 0 1 0
## 1375 NA 1.0986123 1.7917595 0 0 1
## 1376 NA 1.0986123 1.7917595 0 1 0
## 1377 NA 0.6931472 0.0000000 0 0 1
## 1378 NA 1.6094379 1.3862944 0 0 1
## 1379 NA 1.0986123 1.7917595 0 0 1
## 1380 NA 1.0986123 1.7917595 0 0 1
## 1381 NA 1.9459101 1.3862944 0 0 1
## 1382 NA 1.9459101 1.6094379 0 0 1
## 1383 NA 1.0986123 1.6094379 0 0 1
## 1384 NA 2.0794415 1.7917595 0 1 0
## 1385 NA 1.7917595 1.7917595 0 1 0
## 1386 NA 1.0986123 1.3862944 0 1 0
## 1387 NA 0.6931472 1.7917595 0 0 1
## 1388 NA 1.0986123 1.7047481 NA NA NA
## 1389 NA 2.1972246 1.6094379 0 1 0
## 1390 NA 0.6931472 1.3862944 0 0 1
## 1391 NA 0.6931472 1.5040774 0 0 1
## 1392 NA 1.6094379 1.4206958 0 1 0
## 1393 NA 1.0986123 1.3862944 0 0 1
## 1394 NA 0.6931472 1.7917595 0 0 1
## 1395 NA 1.0986123 1.6582281 0 0 1
## 1396 NA 1.0986123 1.7155981 0 0 1
## 1397 NA 1.6094379 1.6094379 0 1 0
## 1398 NA 0.6931472 1.7917595 0 0 1
## 1399 NA 1.0986123 1.7917595 0 1 0
## 1400 NA 1.0986123 1.6094379 0 0 1
## 1401 NA 0.6931472 1.7917595 0 0 1
## 1402 NA 0.6931472 1.5040774 0 0 1
## 1403 NA 1.6094379 1.6733512 0 0 1
## 1404 NA 1.3862944 1.7917595 0 1 0
## 1405 NA 0.6931472 1.7917595 0 0 1
## 1406 NA 1.0986123 1.6094379 0 0 1
## 1407 NA 1.3862944 1.3862944 0 0 1
## 1408 NA 1.6094379 1.7917595 0 1 0
## 1409 NA 1.3862944 0.0000000 0 0 1
## 1410 NA 1.3862944 1.7917595 0 1 0
## 1411 NA 1.0986123 1.7917595 0 1 0
## 1412 NA 1.0986123 1.7917595 0 0 1
## 1413 NA 0.6931472 1.7917595 1 0 0
## 1414 NA 1.9459101 1.7917595 0 0 1
## 1415 NA 2.3978953 1.3862944 NA NA NA
## 1416 NA 0.6931472 1.6094379 0 0 1
## 1417 NA 1.6094379 1.6094379 0 0 1
## 1418 NA 0.6931472 1.7917595 NA NA NA
## 1419 NA 1.7917595 1.7917595 0 1 0
## 1420 NA 1.6094379 1.6094379 NA NA NA
## 1421 NA 1.0986123 1.7917595 0 1 0
## 1422 NA 1.0986123 1.7917595 0 1 0
## 1423 NA 1.0986123 1.7917595 0 1 0
## 1424 NA 0.6931472 1.7917595 0 0 1
## 1425 NA 1.0986123 1.7917595 0 1 0
## 1426 NA 0.6931472 1.7917595 0 0 1
## 1427 NA 0.6931472 1.7917595 0 0 1
## 1428 NA 1.6094379 1.7917595 0 1 0
## 1429 NA 1.0986123 1.7917595 0 0 1
## 1430 NA 1.0986123 1.7917595 0 1 0
## 1431 NA 1.0986123 1.7917595 0 1 0
## 1432 NA 0.6931472 1.7917595 0 0 1
## 1433 NA 1.7917595 1.6094379 NA NA NA
## 1434 NA 0.6931472 1.7917595 0 0 1
## 1435 NA 0.6931472 1.3862944 0 0 1
## 1436 NA 0.6931472 1.7917595 0 0 1
## 1437 NA 0.6931472 1.7917595 0 0 1
## 1438 NA 0.6931472 1.7917595 0 0 1
## 1439 NA 0.6931472 1.7917595 0 0 1
## 1440 NA 0.6931472 1.6094379 0 0 1
## 1441 NA 0.6931472 1.6094379 0 0 1
## 1442 NA 0.6931472 1.7917595 0 0 1
## 1443 NA 0.6931472 1.7917595 0 0 1
## 1444 NA 1.0986123 1.7917595 0 1 0
## 1445 NA 0.6931472 1.7917595 0 0 1
## 1446 NA 1.0986123 1.7917595 0 0 1
## 1447 NA 0.6931472 1.7917595 0 0 1
## 1448 NA 1.6094379 1.7917595 0 0 1
## 1449 NA 1.7917595 1.6094379 0 1 0
## 1450 NA 1.9459101 1.7917595 0 1 0
## 1451 NA 1.0986123 0.6931472 0 1 0
## 1452 NA 1.0986123 0.0000000 0 0 1
## 1453 NA 0.6931472 1.7917595 0 0 1
## 1454 NA 1.6094379 1.7917595 0 1 0
## 1455 NA 1.6094379 1.7917595 0 1 0
## 1456 NA 0.6931472 1.6094379 0 0 1
## 1457 NA 1.0986123 1.7917595 0 1 0
## 1458 NA 1.0986123 1.7917595 0 1 0
## 1459 NA 1.0986123 1.7917595 0 1 0
## 1460 NA 1.9459101 1.7917595 0 1 0
## 1461 NA 1.0986123 0.0000000 1 0 0
## 1462 NA 0.6931472 1.7917595 0 0 1
## 1463 NA 0.6931472 1.7917595 0 0 1
## 1464 NA 0.6931472 1.7917595 0 0 1
## 1465 NA 0.6931472 1.7917595 0 0 1
## 1466 NA 1.9459101 1.7917595 0 1 0
## 1467 NA 0.6931472 1.3862944 0 0 1
## 1468 NA 1.3862944 1.7917595 0 1 0
## 1469 NA 1.7917595 0.0000000 0 1 0
## 1470 NA 1.0986123 1.7917595 0 1 0
## 1471 NA 0.6931472 0.0000000 0 1 0
## 1472 NA 0.6931472 1.6094379 0 0 1
## 1473 NA 1.0986123 1.7917595 0 1 0
## 1474 NA 1.0986123 1.7917595 0 0 1
## 1475 NA 1.6094379 1.7917595 0 0 1
## 1476 NA 0.6931472 0.0000000 0 0 1
## 1477 NA 0.6931472 1.3862944 0 0 1
## 1478 NA 0.6931472 1.6094379 0 0 1
## 1479 NA 1.0986123 0.6931472 0 1 0
## 1480 NA 0.6931472 1.6094379 0 0 1
## 1481 NA 0.6931472 1.7917595 0 0 1
## 1482 NA 1.0986123 0.0000000 0 0 1
## 1483 NA 1.0986123 1.7917595 0 1 0
## 1484 NA 1.3862944 0.0000000 0 1 0
## 1485 NA 0.6931472 1.7917595 0 0 1
## 1486 NA 0.6931472 1.7917595 0 0 1
## 1487 NA 1.6094379 1.7917595 0 1 0
## 1488 NA 0.6931472 1.7917595 NA NA NA
## 1489 NA 0.6931472 1.7917595 0 0 1
## 1490 NA 0.6931472 1.7917595 NA NA NA
## 1491 NA 0.6931472 0.0000000 NA NA NA
## 1492 NA 0.6931472 1.7917595 NA NA NA
## 1493 NA 1.0986123 1.6094379 0 1 0
## 1494 NA 1.0986123 0.0000000 0 1 0
## 1495 NA 1.9459101 1.6094379 0 1 0
## 1496 NA 1.0986123 1.6094379 0 0 1
## 1497 NA 1.7917595 1.7917595 0 1 0
## 1498 NA 1.3862944 1.7917595 0 1 0
## 1499 NA 1.0986123 1.7917595 0 0 1
## 1500 NA 2.0794415 1.7917595 0 1 0
## 1501 NA 0.6931472 1.7917595 0 0 1
## 1502 NA 1.9459101 1.7917595 0 1 0
## 1503 NA 1.7917595 1.7917595 0 1 0
## 1504 NA 0.6931472 1.7917595 0 0 1
## 1505 NA 1.9459101 1.7917595 0 1 0
## 1506 NA 1.0986123 1.7917595 0 1 0
## 1507 NA 1.0986123 1.6094379 0 0 1
## 1508 NA 2.1972246 1.7917595 0 1 0
## 1509 NA 1.7917595 1.7917595 0 1 0
## 1510 NA 1.0986123 1.7917595 0 1 0
## 1511 NA 0.6931472 0.0000000 1 0 0
## 1512 NA 1.9459101 1.6094379 1 0 0
## 1513 NA 1.6094379 0.0000000 1 0 0
## 1514 NA 1.0986123 1.7917595 0 1 0
## 1515 NA 1.9459101 1.7917595 0 1 0
## 1516 NA 0.6931472 1.7917595 0 0 1
## 1517 NA 1.0986123 1.6094379 0 1 0
## 1518 NA 1.0986123 1.6094379 0 1 0
## 1519 NA 1.0986123 1.7917595 0 1 0
## 1520 NA 0.6931472 1.7917595 0 0 1
## 1521 NA 1.0986123 1.7917595 0 0 1
## 1522 NA 1.0986123 0.6931472 0 0 1
## 1523 NA 1.0986123 1.6094379 0 0 1
## 1524 NA 0.6931472 1.7917595 0 0 1
## 1525 NA 0.6931472 1.7917595 0 0 1
## 1526 NA 1.0986123 1.7917595 0 0 1
## 1527 NA 1.0986123 1.6094379 0 0 1
## 1528 NA 1.0986123 1.7917595 0 1 0
## 1529 NA 0.6931472 1.7917595 0 0 1
## 1530 NA 1.0986123 1.7917595 0 0 1
## 1531 NA 0.6931472 1.7917595 0 0 1
## 1532 NA 1.9459101 1.7917595 1 0 0
## 1533 NA 0.6931472 1.3862944 0 0 1
## 1534 NA 1.0986123 1.7917595 0 1 0
## 1535 NA 0.6931472 1.7917595 0 0 1
## 1536 NA 1.0986123 1.7917595 0 1 0
## 1537 NA 1.0986123 1.7917595 0 0 1
## 1538 NA 0.6931472 1.3862944 0 0 1
## Capacity_x_Shared_ind H_Cap P_Cap ln_Capacity_x_Shared_ind
## 1 0 0 2 0.0000000
## 2 0 2 0 0.0000000
## 3 0 0 2 0.0000000
## 4 0 2 0 0.0000000
## 5 0 4 0 0.0000000
## 6 NA NA NA NA
## 7 0 0 2 0.0000000
## 8 0 2 0 0.0000000
## 9 0 2 0 0.0000000
## 10 0 3 0 0.0000000
## 11 NA NA NA NA
## 12 0 2 0 0.0000000
## 13 0 2 0 0.0000000
## 14 0 0 2 0.0000000
## 15 0 0 2 0.0000000
## 16 0 3 0 0.0000000
## 17 0 0 2 0.0000000
## 18 0 0 2 0.0000000
## 19 0 0 2 0.0000000
## 20 0 0 2 0.0000000
## 21 0 0 2 0.0000000
## 22 0 3 0 0.0000000
## 23 0 4 0 0.0000000
## 24 0 2 0 0.0000000
## 25 0 2 0 0.0000000
## 26 0 5 0 0.0000000
## 27 0 0 2 0.0000000
## 28 0 0 2 0.0000000
## 29 0 0 2 0.0000000
## 30 0 0 2 0.0000000
## 31 0 2 0 0.0000000
## 32 0 0 2 0.0000000
## 33 0 0 2 0.0000000
## 34 0 0 8 0.0000000
## 35 0 2 0 0.0000000
## 36 0 0 2 0.0000000
## 37 0 0 2 0.0000000
## 38 0 4 0 0.0000000
## 39 0 4 0 0.0000000
## 40 0 0 2 0.0000000
## 41 0 8 0 0.0000000
## 42 0 0 1 0.0000000
## 43 0 0 1 0.0000000
## 44 0 2 0 0.0000000
## 45 0 0 2 0.0000000
## 46 0 2 0 0.0000000
## 47 0 0 2 0.0000000
## 48 0 16 0 0.0000000
## 49 0 6 0 0.0000000
## 50 0 2 0 0.0000000
## 51 0 0 2 0.0000000
## 52 NA NA NA NA
## 53 0 2 0 0.0000000
## 54 0 2 0 0.0000000
## 55 0 2 0 0.0000000
## 56 0 4 0 0.0000000
## 57 0 2 0 0.0000000
## 58 0 0 1 0.0000000
## 59 0 2 0 0.0000000
## 60 0 4 0 0.0000000
## 61 0 8 0 0.0000000
## 62 0 8 0 0.0000000
## 63 0 2 0 0.0000000
## 64 0 5 0 0.0000000
## 65 0 5 0 0.0000000
## 66 0 0 2 0.0000000
## 67 NA NA NA NA
## 68 0 0 3 0.0000000
## 69 0 4 0 0.0000000
## 70 0 6 0 0.0000000
## 71 0 0 7 0.0000000
## 72 0 0 2 0.0000000
## 73 0 0 2 0.0000000
## 74 0 6 0 0.0000000
## 75 0 0 1 0.0000000
## 76 0 0 2 0.0000000
## 77 0 0 2 0.0000000
## 78 0 4 0 0.0000000
## 79 0 2 0 0.0000000
## 80 0 4 0 0.0000000
## 81 0 8 0 0.0000000
## 82 0 8 0 0.0000000
## 83 0 0 2 0.0000000
## 84 0 0 3 0.0000000
## 85 0 0 2 0.0000000
## 86 0 2 0 0.0000000
## 87 0 0 2 0.0000000
## 88 0 6 0 0.0000000
## 89 0 0 2 0.0000000
## 90 0 0 2 0.0000000
## 91 NA NA NA NA
## 92 0 1 0 0.0000000
## 93 0 0 1 0.0000000
## 94 0 2 0 0.0000000
## 95 0 4 0 0.0000000
## 96 0 4 0 0.0000000
## 97 0 8 0 0.0000000
## 98 0 8 0 0.0000000
## 99 0 9 0 0.0000000
## 100 0 0 2 0.0000000
## 101 0 0 1 0.0000000
## 102 0 0 1 0.0000000
## 103 0 0 2 0.0000000
## 104 0 0 3 0.0000000
## 105 3 0 0 1.3862944
## 106 0 4 0 0.0000000
## 107 0 0 3 0.0000000
## 108 0 6 0 0.0000000
## 109 0 2 0 0.0000000
## 110 0 0 1 0.0000000
## 111 0 3 0 0.0000000
## 112 0 0 2 0.0000000
## 113 0 2 0 0.0000000
## 114 0 0 2 0.0000000
## 115 0 0 2 0.0000000
## 116 0 0 3 0.0000000
## 117 0 0 3 0.0000000
## 118 0 2 0 0.0000000
## 119 NA NA NA NA
## 120 0 12 0 0.0000000
## 121 0 0 2 0.0000000
## 122 0 4 0 0.0000000
## 123 0 4 0 0.0000000
## 124 0 9 0 0.0000000
## 125 0 2 0 0.0000000
## 126 0 0 6 0.0000000
## 127 0 4 0 0.0000000
## 128 0 6 0 0.0000000
## 129 0 0 5 0.0000000
## 130 0 4 0 0.0000000
## 131 0 2 0 0.0000000
## 132 0 2 0 0.0000000
## 133 0 0 3 0.0000000
## 134 0 0 2 0.0000000
## 135 0 0 2 0.0000000
## 136 0 9 0 0.0000000
## 137 0 12 0 0.0000000
## 138 0 4 0 0.0000000
## 139 0 8 0 0.0000000
## 140 0 2 0 0.0000000
## 141 0 0 1 0.0000000
## 142 0 3 0 0.0000000
## 143 NA NA NA NA
## 144 0 2 0 0.0000000
## 145 0 0 2 0.0000000
## 146 0 0 3 0.0000000
## 147 0 0 1 0.0000000
## 148 0 4 0 0.0000000
## 149 NA NA NA NA
## 150 0 6 0 0.0000000
## 151 6 0 0 1.9459101
## 152 0 3 0 0.0000000
## 153 0 0 1 0.0000000
## 154 0 0 2 0.0000000
## 155 0 0 2 0.0000000
## 156 NA NA NA NA
## 157 0 0 2 0.0000000
## 158 0 9 0 0.0000000
## 159 0 4 0 0.0000000
## 160 0 0 5 0.0000000
## 161 NA NA NA NA
## 162 0 6 0 0.0000000
## 163 0 4 0 0.0000000
## 164 1 0 0 0.6931472
## 165 0 0 2 0.0000000
## 166 0 2 0 0.0000000
## 167 0 2 0 0.0000000
## 168 0 6 0 0.0000000
## 169 0 0 6 0.0000000
## 170 0 5 0 0.0000000
## 171 0 0 3 0.0000000
## 172 0 4 0 0.0000000
## 173 NA NA NA NA
## 174 0 2 0 0.0000000
## 175 0 2 0 0.0000000
## 176 0 2 0 0.0000000
## 177 0 2 0 0.0000000
## 178 0 0 2 0.0000000
## 179 0 0 3 0.0000000
## 180 0 6 0 0.0000000
## 181 0 2 0 0.0000000
## 182 NA NA NA NA
## 183 0 0 1 0.0000000
## 184 0 0 3 0.0000000
## 185 0 0 4 0.0000000
## 186 0 0 3 0.0000000
## 187 0 0 2 0.0000000
## 188 0 0 7 0.0000000
## 189 0 5 0 0.0000000
## 190 0 0 2 0.0000000
## 191 0 2 0 0.0000000
## 192 0 0 2 0.0000000
## 193 8 0 0 2.1972246
## 194 0 2 0 0.0000000
## 195 0 0 2 0.0000000
## 196 0 0 2 0.0000000
## 197 0 0 2 0.0000000
## 198 0 0 2 0.0000000
## 199 0 0 3 0.0000000
## 200 0 0 2 0.0000000
## 201 0 2 0 0.0000000
## 202 0 0 3 0.0000000
## 203 0 0 2 0.0000000
## 204 8 0 0 2.1972246
## 205 0 4 0 0.0000000
## 206 0 0 2 0.0000000
## 207 0 2 0 0.0000000
## 208 0 0 2 0.0000000
## 209 0 0 1 0.0000000
## 210 0 2 0 0.0000000
## 211 0 2 0 0.0000000
## 212 NA NA NA NA
## 213 0 0 2 0.0000000
## 214 0 0 3 0.0000000
## 215 0 0 2 0.0000000
## 216 0 4 0 0.0000000
## 217 0 5 0 0.0000000
## 218 0 0 2 0.0000000
## 219 0 0 1 0.0000000
## 220 0 5 0 0.0000000
## 221 NA NA NA NA
## 222 0 0 3 0.0000000
## 223 0 0 2 0.0000000
## 224 0 2 0 0.0000000
## 225 0 0 1 0.0000000
## 226 1 0 0 0.6931472
## 227 0 0 2 0.0000000
## 228 0 0 1 0.0000000
## 229 NA NA NA NA
## 230 0 2 0 0.0000000
## 231 0 0 2 0.0000000
## 232 0 0 2 0.0000000
## 233 0 0 3 0.0000000
## 234 0 2 0 0.0000000
## 235 0 2 0 0.0000000
## 236 0 0 2 0.0000000
## 237 0 0 2 0.0000000
## 238 0 2 0 0.0000000
## 239 0 0 2 0.0000000
## 240 0 4 0 0.0000000
## 241 0 5 0 0.0000000
## 242 0 5 0 0.0000000
## 243 0 0 2 0.0000000
## 244 0 0 2 0.0000000
## 245 NA NA NA NA
## 246 0 0 3 0.0000000
## 247 0 0 1 0.0000000
## 248 0 0 2 0.0000000
## 249 0 2 0 0.0000000
## 250 0 0 1 0.0000000
## 251 0 2 0 0.0000000
## 252 0 0 3 0.0000000
## 253 0 0 3 0.0000000
## 254 NA NA NA NA
## 255 0 0 2 0.0000000
## 256 0 0 1 0.0000000
## 257 0 2 0 0.0000000
## 258 0 0 2 0.0000000
## 259 0 2 0 0.0000000
## 260 0 0 2 0.0000000
## 261 0 0 2 0.0000000
## 262 0 4 0 0.0000000
## 263 0 0 1 0.0000000
## 264 0 0 15 0.0000000
## 265 0 0 2 0.0000000
## 266 0 4 0 0.0000000
## 267 1 0 0 0.6931472
## 268 1 0 0 0.6931472
## 269 0 0 4 0.0000000
## 270 0 0 2 0.0000000
## 271 0 3 0 0.0000000
## 272 0 0 2 0.0000000
## 273 0 2 0 0.0000000
## 274 0 3 0 0.0000000
## 275 0 0 2 0.0000000
## 276 0 2 0 0.0000000
## 277 0 2 0 0.0000000
## 278 0 2 0 0.0000000
## 279 0 2 0 0.0000000
## 280 0 2 0 0.0000000
## 281 0 3 0 0.0000000
## 282 0 0 1 0.0000000
## 283 0 2 0 0.0000000
## 284 0 1 0 0.0000000
## 285 0 2 0 0.0000000
## 286 NA NA NA NA
## 287 0 3 0 0.0000000
## 288 0 5 0 0.0000000
## 289 0 0 2 0.0000000
## 290 0 0 2 0.0000000
## 291 NA NA NA NA
## 292 0 2 0 0.0000000
## 293 0 0 3 0.0000000
## 294 0 0 1 0.0000000
## 295 0 2 0 0.0000000
## 296 0 2 0 0.0000000
## 297 0 2 0 0.0000000
## 298 0 2 0 0.0000000
## 299 0 0 6 0.0000000
## 300 0 0 2 0.0000000
## 301 0 6 0 0.0000000
## 302 0 6 0 0.0000000
## 303 0 0 2 0.0000000
## 304 0 2 0 0.0000000
## 305 0 2 0 0.0000000
## 306 0 4 0 0.0000000
## 307 1 0 0 0.6931472
## 308 0 0 1 0.0000000
## 309 0 0 1 0.0000000
## 310 0 0 2 0.0000000
## 311 0 0 2 0.0000000
## 312 NA NA NA NA
## 313 0 0 2 0.0000000
## 314 0 0 1 0.0000000
## 315 0 0 2 0.0000000
## 316 0 0 1 0.0000000
## 317 0 4 0 0.0000000
## 318 0 0 1 0.0000000
## 319 0 4 0 0.0000000
## 320 0 0 2 0.0000000
## 321 0 2 0 0.0000000
## 322 0 2 0 0.0000000
## 323 0 5 0 0.0000000
## 324 0 0 2 0.0000000
## 325 0 3 0 0.0000000
## 326 0 0 3 0.0000000
## 327 NA NA NA NA
## 328 0 0 1 0.0000000
## 329 0 2 0 0.0000000
## 330 0 2 0 0.0000000
## 331 0 0 3 0.0000000
## 332 0 2 0 0.0000000
## 333 0 0 2 0.0000000
## 334 0 0 2 0.0000000
## 335 0 0 2 0.0000000
## 336 0 4 0 0.0000000
## 337 0 2 0 0.0000000
## 338 NA NA NA NA
## 339 0 0 2 0.0000000
## 340 0 0 2 0.0000000
## 341 0 0 2 0.0000000
## 342 0 0 2 0.0000000
## 343 0 4 0 0.0000000
## 344 0 4 0 0.0000000
## 345 NA NA NA NA
## 346 NA NA NA NA
## 347 0 0 1 0.0000000
## 348 0 0 2 0.0000000
## 349 0 4 0 0.0000000
## 350 0 2 0 0.0000000
## 351 0 2 0 0.0000000
## 352 0 0 2 0.0000000
## 353 0 0 2 0.0000000
## 354 0 0 3 0.0000000
## 355 0 2 0 0.0000000
## 356 0 0 2 0.0000000
## 357 0 2 0 0.0000000
## 358 0 0 2 0.0000000
## 359 0 6 0 0.0000000
## 360 0 0 1 0.0000000
## 361 0 0 3 0.0000000
## 362 0 1 0 0.0000000
## 363 0 0 2 0.0000000
## 364 0 4 0 0.0000000
## 365 0 4 0 0.0000000
## 366 NA NA NA NA
## 367 0 0 2 0.0000000
## 368 0 0 2 0.0000000
## 369 0 2 0 0.0000000
## 370 0 4 0 0.0000000
## 371 0 0 4 0.0000000
## 372 0 0 1 0.0000000
## 373 0 0 2 0.0000000
## 374 0 2 0 0.0000000
## 375 0 0 6 0.0000000
## 376 0 0 1 0.0000000
## 377 0 2 0 0.0000000
## 378 0 0 1 0.0000000
## 379 0 6 0 0.0000000
## 380 0 0 2 0.0000000
## 381 0 2 0 0.0000000
## 382 NA NA NA NA
## 383 NA NA NA NA
## 384 0 0 2 0.0000000
## 385 0 2 0 0.0000000
## 386 0 0 2 0.0000000
## 387 0 2 0 0.0000000
## 388 0 5 0 0.0000000
## 389 0 2 0 0.0000000
## 390 0 0 2 0.0000000
## 391 0 0 2 0.0000000
## 392 0 2 0 0.0000000
## 393 0 0 2 0.0000000
## 394 0 0 5 0.0000000
## 395 0 0 1 0.0000000
## 396 0 5 0 0.0000000
## 397 0 2 0 0.0000000
## 398 0 0 2 0.0000000
## 399 0 0 2 0.0000000
## 400 0 0 2 0.0000000
## 401 0 0 2 0.0000000
## 402 NA NA NA NA
## 403 NA NA NA NA
## 404 0 2 0 0.0000000
## 405 0 0 2 0.0000000
## 406 0 3 0 0.0000000
## 407 0 2 0 0.0000000
## 408 NA NA NA NA
## 409 0 0 2 0.0000000
## 410 6 0 0 1.9459101
## 411 0 2 0 0.0000000
## 412 0 3 0 0.0000000
## 413 0 2 0 0.0000000
## 414 0 2 0 0.0000000
## 415 0 2 0 0.0000000
## 416 0 2 0 0.0000000
## 417 0 2 0 0.0000000
## 418 0 0 2 0.0000000
## 419 NA NA NA NA
## 420 1 0 0 0.6931472
## 421 0 6 0 0.0000000
## 422 0 2 0 0.0000000
## 423 0 2 0 0.0000000
## 424 0 2 0 0.0000000
## 425 0 2 0 0.0000000
## 426 0 0 4 0.0000000
## 427 0 0 6 0.0000000
## 428 NA NA NA NA
## 429 0 4 0 0.0000000
## 430 0 0 1 0.0000000
## 431 6 0 0 1.9459101
## 432 0 0 3 0.0000000
## 433 0 4 0 0.0000000
## 434 0 4 0 0.0000000
## 435 0 0 2 0.0000000
## 436 0 0 4 0.0000000
## 437 0 4 0 0.0000000
## 438 0 5 0 0.0000000
## 439 0 4 0 0.0000000
## 440 0 5 0 0.0000000
## 441 0 2 0 0.0000000
## 442 0 0 1 0.0000000
## 443 0 2 0 0.0000000
## 444 0 0 2 0.0000000
## 445 16 0 0 2.8332133
## 446 0 4 0 0.0000000
## 447 0 2 0 0.0000000
## 448 0 2 0 0.0000000
## 449 0 4 0 0.0000000
## 450 0 4 0 0.0000000
## 451 0 2 0 0.0000000
## 452 0 0 2 0.0000000
## 453 0 0 3 0.0000000
## 454 0 0 1 0.0000000
## 455 NA NA NA NA
## 456 0 4 0 0.0000000
## 457 0 0 2 0.0000000
## 458 0 7 0 0.0000000
## 459 0 0 2 0.0000000
## 460 0 2 0 0.0000000
## 461 0 4 0 0.0000000
## 462 0 0 4 0.0000000
## 463 0 0 3 0.0000000
## 464 0 0 2 0.0000000
## 465 0 0 2 0.0000000
## 466 0 0 2 0.0000000
## 467 0 3 0 0.0000000
## 468 0 0 1 0.0000000
## 469 0 0 2 0.0000000
## 470 1 0 0 0.6931472
## 471 NA NA NA NA
## 472 0 2 0 0.0000000
## 473 NA NA NA NA
## 474 0 2 0 0.0000000
## 475 0 0 2 0.0000000
## 476 0 0 3 0.0000000
## 477 0 5 0 0.0000000
## 478 0 2 0 0.0000000
## 479 0 2 0 0.0000000
## 480 0 2 0 0.0000000
## 481 0 2 0 0.0000000
## 482 0 0 2 0.0000000
## 483 0 2 0 0.0000000
## 484 NA NA NA NA
## 485 NA NA NA NA
## 486 0 4 0 0.0000000
## 487 NA NA NA NA
## 488 NA NA NA NA
## 489 0 0 8 0.0000000
## 490 0 0 1 0.0000000
## 491 2 0 0 1.0986123
## 492 NA NA NA NA
## 493 0 0 2 0.0000000
## 494 0 6 0 0.0000000
## 495 0 2 0 0.0000000
## 496 0 0 2 0.0000000
## 497 0 0 2 0.0000000
## 498 0 0 1 0.0000000
## 499 0 0 1 0.0000000
## 500 0 2 0 0.0000000
## 501 0 2 0 0.0000000
## 502 0 4 0 0.0000000
## 503 0 0 2 0.0000000
## 504 0 0 1 0.0000000
## 505 0 0 4 0.0000000
## 506 0 2 0 0.0000000
## 507 NA NA NA NA
## 508 0 4 0 0.0000000
## 509 0 0 1 0.0000000
## 510 0 5 0 0.0000000
## 511 0 0 2 0.0000000
## 512 NA NA NA NA
## 513 0 2 0 0.0000000
## 514 2 0 0 1.0986123
## 515 0 0 2 0.0000000
## 516 0 0 1 0.0000000
## 517 NA NA NA NA
## 518 NA NA NA NA
## 519 0 0 1 0.0000000
## 520 0 6 0 0.0000000
## 521 0 3 0 0.0000000
## 522 0 2 0 0.0000000
## 523 0 2 0 0.0000000
## 524 0 4 0 0.0000000
## 525 0 0 2 0.0000000
## 526 0 2 0 0.0000000
## 527 0 0 2 0.0000000
## 528 0 0 2 0.0000000
## 529 0 3 0 0.0000000
## 530 0 5 0 0.0000000
## 531 0 2 0 0.0000000
## 532 0 0 1 0.0000000
## 533 0 4 0 0.0000000
## 534 NA NA NA NA
## 535 0 5 0 0.0000000
## 536 0 0 2 0.0000000
## 537 0 2 0 0.0000000
## 538 0 0 2 0.0000000
## 539 1 0 0 0.6931472
## 540 NA NA NA NA
## 541 16 0 0 2.8332133
## 542 0 5 0 0.0000000
## 543 0 0 2 0.0000000
## 544 0 0 2 0.0000000
## 545 0 0 2 0.0000000
## 546 0 0 1 0.0000000
## 547 0 0 2 0.0000000
## 548 0 0 2 0.0000000
## 549 0 0 2 0.0000000
## 550 0 7 0 0.0000000
## 551 0 2 0 0.0000000
## 552 0 2 0 0.0000000
## 553 0 2 0 0.0000000
## 554 0 2 0 0.0000000
## 555 NA NA NA NA
## 556 0 0 2 0.0000000
## 557 0 0 1 0.0000000
## 558 0 0 2 0.0000000
## 559 0 0 2 0.0000000
## 560 0 5 0 0.0000000
## 561 0 5 0 0.0000000
## 562 0 2 0 0.0000000
## 563 0 0 2 0.0000000
## 564 0 0 6 0.0000000
## 565 0 0 1 0.0000000
## 566 0 4 0 0.0000000
## 567 4 0 0 1.6094379
## 568 0 2 0 0.0000000
## 569 0 6 0 0.0000000
## 570 0 2 0 0.0000000
## 571 NA NA NA NA
## 572 0 2 0 0.0000000
## 573 0 0 2 0.0000000
## 574 0 3 0 0.0000000
## 575 0 2 0 0.0000000
## 576 0 0 1 0.0000000
## 577 0 0 4 0.0000000
## 578 NA NA NA NA
## 579 NA NA NA NA
## 580 0 0 2 0.0000000
## 581 0 0 2 0.0000000
## 582 0 0 1 0.0000000
## 583 0 2 0 0.0000000
## 584 0 0 3 0.0000000
## 585 NA NA NA NA
## 586 0 6 0 0.0000000
## 587 0 8 0 0.0000000
## 588 0 2 0 0.0000000
## 589 0 0 1 0.0000000
## 590 0 0 3 0.0000000
## 591 0 5 0 0.0000000
## 592 0 1 0 0.0000000
## 593 0 2 0 0.0000000
## 594 0 2 0 0.0000000
## 595 0 7 0 0.0000000
## 596 NA NA NA NA
## 597 0 4 0 0.0000000
## 598 0 2 0 0.0000000
## 599 0 0 2 0.0000000
## 600 0 0 2 0.0000000
## 601 0 2 0 0.0000000
## 602 NA NA NA NA
## 603 NA NA NA NA
## 604 0 0 3 0.0000000
## 605 0 7 0 0.0000000
## 606 0 2 0 0.0000000
## 607 0 2 0 0.0000000
## 608 0 0 1 0.0000000
## 609 0 4 0 0.0000000
## 610 0 2 0 0.0000000
## 611 NA NA NA NA
## 612 NA NA NA NA
## 613 1 0 0 0.6931472
## 614 0 0 2 0.0000000
## 615 NA NA NA NA
## 616 0 6 0 0.0000000
## 617 0 6 0 0.0000000
## 618 0 6 0 0.0000000
## 619 NA NA NA NA
## 620 0 0 1 0.0000000
## 621 2 0 0 1.0986123
## 622 0 7 0 0.0000000
## 623 0 0 1 0.0000000
## 624 0 5 0 0.0000000
## 625 0 0 1 0.0000000
## 626 0 2 0 0.0000000
## 627 0 4 0 0.0000000
## 628 0 0 2 0.0000000
## 629 0 5 0 0.0000000
## 630 0 2 0 0.0000000
## 631 0 2 0 0.0000000
## 632 0 2 0 0.0000000
## 633 0 2 0 0.0000000
## 634 0 0 2 0.0000000
## 635 NA NA NA NA
## 636 1 0 0 0.6931472
## 637 0 0 2 0.0000000
## 638 0 0 3 0.0000000
## 639 0 0 2 0.0000000
## 640 0 0 2 0.0000000
## 641 0 0 1 0.0000000
## 642 0 5 0 0.0000000
## 643 0 5 0 0.0000000
## 644 0 0 6 0.0000000
## 645 0 2 0 0.0000000
## 646 0 2 0 0.0000000
## 647 0 2 0 0.0000000
## 648 NA NA NA NA
## 649 0 4 0 0.0000000
## 650 0 0 2 0.0000000
## 651 0 4 0 0.0000000
## 652 0 0 2 0.0000000
## 653 0 5 0 0.0000000
## 654 0 2 0 0.0000000
## 655 NA NA NA NA
## 656 0 1 0 0.0000000
## 657 0 0 2 0.0000000
## 658 NA NA NA NA
## 659 0 2 0 0.0000000
## 660 NA NA NA NA
## 661 0 0 1 0.0000000
## 662 0 2 0 0.0000000
## 663 NA NA NA NA
## 664 NA NA NA NA
## 665 0 0 2 0.0000000
## 666 0 0 2 0.0000000
## 667 0 2 0 0.0000000
## 668 0 2 0 0.0000000
## 669 0 4 0 0.0000000
## 670 0 0 2 0.0000000
## 671 0 8 0 0.0000000
## 672 0 8 0 0.0000000
## 673 0 2 0 0.0000000
## 674 0 0 2 0.0000000
## 675 0 0 2 0.0000000
## 676 0 0 2 0.0000000
## 677 0 5 0 0.0000000
## 678 0 5 0 0.0000000
## 679 0 8 0 0.0000000
## 680 NA NA NA NA
## 681 0 2 0 0.0000000
## 682 0 4 0 0.0000000
## 683 0 2 0 0.0000000
## 684 0 0 2 0.0000000
## 685 0 0 2 0.0000000
## 686 0 3 0 0.0000000
## 687 0 2 0 0.0000000
## 688 0 0 2 0.0000000
## 689 0 2 0 0.0000000
## 690 0 0 3 0.0000000
## 691 0 6 0 0.0000000
## 692 0 0 1 0.0000000
## 693 NA NA NA NA
## 694 0 2 0 0.0000000
## 695 0 0 4 0.0000000
## 696 0 0 2 0.0000000
## 697 0 0 5 0.0000000
## 698 0 2 0 0.0000000
## 699 0 2 0 0.0000000
## 700 0 0 2 0.0000000
## 701 0 0 2 0.0000000
## 702 0 0 2 0.0000000
## 703 NA NA NA NA
## 704 0 0 2 0.0000000
## 705 0 2 0 0.0000000
## 706 0 0 3 0.0000000
## 707 0 2 0 0.0000000
## 708 0 1 0 0.0000000
## 709 NA NA NA NA
## 710 0 2 0 0.0000000
## 711 0 0 2 0.0000000
## 712 0 4 0 0.0000000
## 713 0 2 0 0.0000000
## 714 NA NA NA NA
## 715 0 5 0 0.0000000
## 716 0 0 2 0.0000000
## 717 NA NA NA NA
## 718 0 0 4 0.0000000
## 719 0 6 0 0.0000000
## 720 NA NA NA NA
## 721 NA NA NA NA
## 722 NA NA NA NA
## 723 0 2 0 0.0000000
## 724 0 0 2 0.0000000
## 725 0 0 2 0.0000000
## 726 0 4 0 0.0000000
## 727 0 0 2 0.0000000
## 728 0 0 2 0.0000000
## 729 0 8 0 0.0000000
## 730 0 2 0 0.0000000
## 731 0 2 0 0.0000000
## 732 0 2 0 0.0000000
## 733 6 0 0 1.9459101
## 734 0 4 0 0.0000000
## 735 0 5 0 0.0000000
## 736 0 0 1 0.0000000
## 737 0 3 0 0.0000000
## 738 0 4 0 0.0000000
## 739 0 0 4 0.0000000
## 740 0 0 2 0.0000000
## 741 0 0 2 0.0000000
## 742 0 0 1 0.0000000
## 743 0 3 0 0.0000000
## 744 0 0 1 0.0000000
## 745 0 0 2 0.0000000
## 746 0 2 0 0.0000000
## 747 0 0 2 0.0000000
## 748 0 0 1 0.0000000
## 749 0 0 1 0.0000000
## 750 0 0 2 0.0000000
## 751 0 0 8 0.0000000
## 752 0 0 1 0.0000000
## 753 2 0 0 1.0986123
## 754 10 0 0 2.3978953
## 755 0 2 0 0.0000000
## 756 0 0 2 0.0000000
## 757 0 0 2 0.0000000
## 758 0 2 0 0.0000000
## 759 0 3 0 0.0000000
## 760 0 1 0 0.0000000
## 761 0 0 2 0.0000000
## 762 0 0 2 0.0000000
## 763 0 0 2 0.0000000
## 764 NA NA NA NA
## 765 0 0 3 0.0000000
## 766 0 3 0 0.0000000
## 767 0 0 2 0.0000000
## 768 0 0 2 0.0000000
## 769 0 2 0 0.0000000
## 770 0 1 0 0.0000000
## 771 0 2 0 0.0000000
## 772 0 5 0 0.0000000
## 773 0 2 0 0.0000000
## 774 NA NA NA NA
## 775 0 0 1 0.0000000
## 776 0 6 0 0.0000000
## 777 0 2 0 0.0000000
## 778 0 6 0 0.0000000
## 779 0 4 0 0.0000000
## 780 0 0 2 0.0000000
## 781 NA NA NA NA
## 782 0 2 0 0.0000000
## 783 0 6 0 0.0000000
## 784 0 6 0 0.0000000
## 785 0 2 0 0.0000000
## 786 0 2 0 0.0000000
## 787 NA NA NA NA
## 788 0 0 1 0.0000000
## 789 NA NA NA NA
## 790 0 0 2 0.0000000
## 791 0 0 1 0.0000000
## 792 0 0 1 0.0000000
## 793 NA NA NA NA
## 794 0 0 1 0.0000000
## 795 0 0 3 0.0000000
## 796 0 8 0 0.0000000
## 797 0 2 0 0.0000000
## 798 0 2 0 0.0000000
## 799 0 4 0 0.0000000
## 800 0 0 1 0.0000000
## 801 0 0 2 0.0000000
## 802 0 0 2 0.0000000
## 803 0 0 2 0.0000000
## 804 0 3 0 0.0000000
## 805 0 4 0 0.0000000
## 806 0 0 2 0.0000000
## 807 0 3 0 0.0000000
## 808 0 0 1 0.0000000
## 809 0 2 0 0.0000000
## 810 0 2 0 0.0000000
## 811 0 0 1 0.0000000
## 812 0 6 0 0.0000000
## 813 0 0 2 0.0000000
## 814 0 0 3 0.0000000
## 815 0 0 2 0.0000000
## 816 0 0 2 0.0000000
## 817 0 3 0 0.0000000
## 818 0 0 1 0.0000000
## 819 0 2 0 0.0000000
## 820 0 3 0 0.0000000
## 821 0 2 0 0.0000000
## 822 0 0 3 0.0000000
## 823 0 0 3 0.0000000
## 824 0 0 6 0.0000000
## 825 0 0 2 0.0000000
## 826 1 0 0 0.6931472
## 827 NA NA NA NA
## 828 16 0 0 2.8332133
## 829 0 4 0 0.0000000
## 830 NA NA NA NA
## 831 0 0 4 0.0000000
## 832 0 2 0 0.0000000
## 833 0 2 0 0.0000000
## 834 0 0 2 0.0000000
## 835 0 0 3 0.0000000
## 836 0 0 3 0.0000000
## 837 16 0 0 2.8332133
## 838 NA NA NA NA
## 839 0 2 0 0.0000000
## 840 0 0 3 0.0000000
## 841 0 0 1 0.0000000
## 842 0 3 0 0.0000000
## 843 0 2 0 0.0000000
## 844 NA NA NA NA
## 845 0 5 0 0.0000000
## 846 0 0 1 0.0000000
## 847 0 2 0 0.0000000
## 848 NA NA NA NA
## 849 0 2 0 0.0000000
## 850 0 0 2 0.0000000
## 851 0 7 0 0.0000000
## 852 0 3 0 0.0000000
## 853 0 1 0 0.0000000
## 854 0 0 2 0.0000000
## 855 0 0 2 0.0000000
## 856 0 2 0 0.0000000
## 857 0 4 0 0.0000000
## 858 NA NA NA NA
## 859 0 0 2 0.0000000
## 860 0 0 2 0.0000000
## 861 0 0 1 0.0000000
## 862 NA NA NA NA
## 863 0 5 0 0.0000000
## 864 0 0 2 0.0000000
## 865 0 0 1 0.0000000
## 866 0 2 0 0.0000000
## 867 0 0 1 0.0000000
## 868 0 4 0 0.0000000
## 869 0 2 0 0.0000000
## 870 0 0 3 0.0000000
## 871 0 0 14 0.0000000
## 872 0 0 1 0.0000000
## 873 NA NA NA NA
## 874 NA NA NA NA
## 875 0 0 2 0.0000000
## 876 2 0 0 1.0986123
## 877 0 0 2 0.0000000
## 878 0 2 0 0.0000000
## 879 0 4 0 0.0000000
## 880 0 4 0 0.0000000
## 881 0 2 0 0.0000000
## 882 0 0 1 0.0000000
## 883 0 6 0 0.0000000
## 884 0 2 0 0.0000000
## 885 0 0 4 0.0000000
## 886 0 16 0 0.0000000
## 887 0 2 0 0.0000000
## 888 0 2 0 0.0000000
## 889 0 0 3 0.0000000
## 890 0 0 3 0.0000000
## 891 6 0 0 1.9459101
## 892 0 0 2 0.0000000
## 893 0 0 2 0.0000000
## 894 0 0 2 0.0000000
## 895 0 0 2 0.0000000
## 896 0 4 0 0.0000000
## 897 0 2 0 0.0000000
## 898 0 0 2 0.0000000
## 899 0 0 5 0.0000000
## 900 0 4 0 0.0000000
## 901 0 2 0 0.0000000
## 902 0 0 2 0.0000000
## 903 0 0 1 0.0000000
## 904 0 0 1 0.0000000
## 905 0 0 1 0.0000000
## 906 0 4 0 0.0000000
## 907 0 0 1 0.0000000
## 908 0 0 4 0.0000000
## 909 0 4 0 0.0000000
## 910 0 0 2 0.0000000
## 911 0 0 2 0.0000000
## 912 0 2 0 0.0000000
## 913 0 0 2 0.0000000
## 914 0 0 3 0.0000000
## 915 0 0 3 0.0000000
## 916 1 0 0 0.6931472
## 917 NA NA NA NA
## 918 NA NA NA NA
## 919 0 3 0 0.0000000
## 920 0 0 7 0.0000000
## 921 0 0 16 0.0000000
## 922 NA NA NA NA
## 923 16 0 0 2.8332133
## 924 0 0 2 0.0000000
## 925 0 6 0 0.0000000
## 926 0 4 0 0.0000000
## 927 6 0 0 1.9459101
## 928 0 0 1 0.0000000
## 929 0 0 3 0.0000000
## 930 0 0 1 0.0000000
## 931 0 6 0 0.0000000
## 932 0 0 1 0.0000000
## 933 NA NA NA NA
## 934 0 0 2 0.0000000
## 935 0 2 0 0.0000000
## 936 NA NA NA NA
## 937 0 0 3 0.0000000
## 938 0 0 2 0.0000000
## 939 0 0 3 0.0000000
## 940 0 0 2 0.0000000
## 941 NA NA NA NA
## 942 NA NA NA NA
## 943 0 4 0 0.0000000
## 944 0 2 0 0.0000000
## 945 0 0 2 0.0000000
## 946 0 0 3 0.0000000
## 947 0 2 0 0.0000000
## 948 0 0 2 0.0000000
## 949 0 0 4 0.0000000
## 950 0 0 1 0.0000000
## 951 0 3 0 0.0000000
## 952 0 0 2 0.0000000
## 953 0 0 3 0.0000000
## 954 NA NA NA NA
## 955 0 0 2 0.0000000
## 956 0 0 2 0.0000000
## 957 NA NA NA NA
## 958 0 0 3 0.0000000
## 959 0 0 3 0.0000000
## 960 0 6 0 0.0000000
## 961 0 0 4 0.0000000
## 962 0 2 0 0.0000000
## 963 0 0 2 0.0000000
## 964 0 4 0 0.0000000
## 965 0 0 2 0.0000000
## 966 0 6 0 0.0000000
## 967 0 5 0 0.0000000
## 968 0 3 0 0.0000000
## 969 0 3 0 0.0000000
## 970 0 2 0 0.0000000
## 971 0 2 0 0.0000000
## 972 0 5 0 0.0000000
## 973 0 3 0 0.0000000
## 974 0 0 1 0.0000000
## 975 NA NA NA NA
## 976 NA NA NA NA
## 977 0 5 0 0.0000000
## 978 0 2 0 0.0000000
## 979 0 0 1 0.0000000
## 980 0 0 2 0.0000000
## 981 0 2 0 0.0000000
## 982 0 2 0 0.0000000
## 983 0 2 0 0.0000000
## 984 0 2 0 0.0000000
## 985 NA NA NA NA
## 986 0 2 0 0.0000000
## 987 0 0 1 0.0000000
## 988 0 0 2 0.0000000
## 989 0 0 1 0.0000000
## 990 0 8 0 0.0000000
## 991 NA NA NA NA
## 992 0 0 1 0.0000000
## 993 0 4 0 0.0000000
## 994 0 0 3 0.0000000
## 995 0 0 3 0.0000000
## 996 0 0 2 0.0000000
## 997 0 2 0 0.0000000
## 998 0 4 0 0.0000000
## 999 0 2 0 0.0000000
## 1000 0 0 8 0.0000000
## 1001 0 6 0 0.0000000
## 1002 0 0 1 0.0000000
## 1003 0 2 0 0.0000000
## 1004 0 0 2 0.0000000
## 1005 0 2 0 0.0000000
## 1006 0 0 1 0.0000000
## 1007 0 0 8 0.0000000
## 1008 0 0 2 0.0000000
## 1009 0 0 1 0.0000000
## 1010 0 0 2 0.0000000
## 1011 0 5 0 0.0000000
## 1012 0 0 3 0.0000000
## 1013 0 0 2 0.0000000
## 1014 0 0 4 0.0000000
## 1015 0 0 3 0.0000000
## 1016 0 2 0 0.0000000
## 1017 0 4 0 0.0000000
## 1018 0 2 0 0.0000000
## 1019 0 2 0 0.0000000
## 1020 0 0 2 0.0000000
## 1021 0 0 2 0.0000000
## 1022 0 0 1 0.0000000
## 1023 0 0 2 0.0000000
## 1024 0 3 0 0.0000000
## 1025 0 0 2 0.0000000
## 1026 0 0 2 0.0000000
## 1027 0 3 0 0.0000000
## 1028 0 4 0 0.0000000
## 1029 0 0 1 0.0000000
## 1030 0 0 1 0.0000000
## 1031 0 0 4 0.0000000
## 1032 0 0 1 0.0000000
## 1033 0 0 1 0.0000000
## 1034 0 0 1 0.0000000
## 1035 0 0 3 0.0000000
## 1036 0 0 2 0.0000000
## 1037 0 6 0 0.0000000
## 1038 0 0 1 0.0000000
## 1039 0 0 2 0.0000000
## 1040 0 0 1 0.0000000
## 1041 0 6 0 0.0000000
## 1042 1 0 0 0.6931472
## 1043 1 0 0 0.6931472
## 1044 0 3 0 0.0000000
## 1045 2 0 0 1.0986123
## 1046 2 0 0 1.0986123
## 1047 0 2 0 0.0000000
## 1048 0 0 7 0.0000000
## 1049 0 0 1 0.0000000
## 1050 0 0 1 0.0000000
## 1051 1 0 0 0.6931472
## 1052 1 0 0 0.6931472
## 1053 16 0 0 2.8332133
## 1054 16 0 0 2.8332133
## 1055 0 0 4 0.0000000
## 1056 0 0 2 0.0000000
## 1057 0 5 0 0.0000000
## 1058 1 0 0 0.6931472
## 1059 0 0 1 0.0000000
## 1060 0 0 3 0.0000000
## 1061 0 0 1 0.0000000
## 1062 0 2 0 0.0000000
## 1063 0 2 0 0.0000000
## 1064 0 0 3 0.0000000
## 1065 0 0 2 0.0000000
## 1066 0 0 1 0.0000000
## 1067 0 0 2 0.0000000
## 1068 0 0 2 0.0000000
## 1069 0 2 0 0.0000000
## 1070 0 2 0 0.0000000
## 1071 0 6 0 0.0000000
## 1072 0 0 2 0.0000000
## 1073 0 0 1 0.0000000
## 1074 0 3 0 0.0000000
## 1075 16 0 0 2.8332133
## 1076 NA NA NA NA
## 1077 NA NA NA NA
## 1078 0 2 0 0.0000000
## 1079 0 0 3 0.0000000
## 1080 0 1 0 0.0000000
## 1081 3 0 0 1.3862944
## 1082 0 6 0 0.0000000
## 1083 0 0 1 0.0000000
## 1084 0 0 2 0.0000000
## 1085 NA NA NA NA
## 1086 0 2 0 0.0000000
## 1087 0 0 1 0.0000000
## 1088 0 0 3 0.0000000
## 1089 0 0 3 0.0000000
## 1090 0 6 0 0.0000000
## 1091 0 3 0 0.0000000
## 1092 0 0 4 0.0000000
## 1093 NA NA NA NA
## 1094 0 3 0 0.0000000
## 1095 0 0 1 0.0000000
## 1096 0 2 0 0.0000000
## 1097 0 2 0 0.0000000
## 1098 0 0 1 0.0000000
## 1099 0 0 1 0.0000000
## 1100 0 0 1 0.0000000
## 1101 NA NA NA NA
## 1102 NA NA NA NA
## 1103 0 2 0 0.0000000
## 1104 0 6 0 0.0000000
## 1105 NA NA NA NA
## 1106 NA NA NA NA
## 1107 0 0 4 0.0000000
## 1108 NA NA NA NA
## 1109 0 0 2 0.0000000
## 1110 0 0 2 0.0000000
## 1111 0 0 6 0.0000000
## 1112 0 0 2 0.0000000
## 1113 0 0 1 0.0000000
## 1114 0 0 2 0.0000000
## 1115 0 0 2 0.0000000
## 1116 0 0 2 0.0000000
## 1117 0 0 2 0.0000000
## 1118 0 0 3 0.0000000
## 1119 NA NA NA NA
## 1120 0 0 2 0.0000000
## 1121 0 3 0 0.0000000
## 1122 0 4 0 0.0000000
## 1123 0 0 2 0.0000000
## 1124 0 4 0 0.0000000
## 1125 0 0 2 0.0000000
## 1126 0 0 2 0.0000000
## 1127 0 2 0 0.0000000
## 1128 0 0 1 0.0000000
## 1129 0 0 2 0.0000000
## 1130 1 0 0 0.6931472
## 1131 NA NA NA NA
## 1132 NA NA NA NA
## 1133 0 0 1 0.0000000
## 1134 NA NA NA NA
## 1135 0 4 0 0.0000000
## 1136 0 4 0 0.0000000
## 1137 0 0 1 0.0000000
## 1138 0 0 1 0.0000000
## 1139 0 0 1 0.0000000
## 1140 0 0 1 0.0000000
## 1141 0 0 4 0.0000000
## 1142 0 0 2 0.0000000
## 1143 0 2 0 0.0000000
## 1144 0 4 0 0.0000000
## 1145 0 0 2 0.0000000
## 1146 0 4 0 0.0000000
## 1147 0 0 1 0.0000000
## 1148 0 2 0 0.0000000
## 1149 0 4 0 0.0000000
## 1150 0 2 0 0.0000000
## 1151 0 4 0 0.0000000
## 1152 0 4 0 0.0000000
## 1153 0 4 0 0.0000000
## 1154 0 0 1 0.0000000
## 1155 0 0 1 0.0000000
## 1156 0 5 0 0.0000000
## 1157 0 0 1 0.0000000
## 1158 0 0 1 0.0000000
## 1159 0 0 1 0.0000000
## 1160 0 4 0 0.0000000
## 1161 0 0 1 0.0000000
## 1162 0 0 1 0.0000000
## 1163 0 3 0 0.0000000
## 1164 0 0 2 0.0000000
## 1165 0 2 0 0.0000000
## 1166 0 0 1 0.0000000
## 1167 0 0 1 0.0000000
## 1168 NA NA NA NA
## 1169 0 6 0 0.0000000
## 1170 0 0 1 0.0000000
## 1171 4 0 0 1.6094379
## 1172 0 0 1 0.0000000
## 1173 0 2 0 0.0000000
## 1174 0 2 0 0.0000000
## 1175 0 0 1 0.0000000
## 1176 0 8 0 0.0000000
## 1177 0 6 0 0.0000000
## 1178 0 0 1 0.0000000
## 1179 0 4 0 0.0000000
## 1180 2 0 0 1.0986123
## 1181 0 2 0 0.0000000
## 1182 0 4 0 0.0000000
## 1183 0 0 1 0.0000000
## 1184 0 0 1 0.0000000
## 1185 0 2 0 0.0000000
## 1186 0 0 2 0.0000000
## 1187 0 2 0 0.0000000
## 1188 0 4 0 0.0000000
## 1189 NA NA NA NA
## 1190 0 0 2 0.0000000
## 1191 0 0 1 0.0000000
## 1192 0 0 1 0.0000000
## 1193 0 0 1 0.0000000
## 1194 0 3 0 0.0000000
## 1195 0 0 1 0.0000000
## 1196 0 0 1 0.0000000
## 1197 0 2 0 0.0000000
## 1198 0 2 0 0.0000000
## 1199 0 4 0 0.0000000
## 1200 0 2 0 0.0000000
## 1201 0 0 2 0.0000000
## 1202 0 0 1 0.0000000
## 1203 0 0 1 0.0000000
## 1204 0 7 0 0.0000000
## 1205 0 0 1 0.0000000
## 1206 0 0 2 0.0000000
## 1207 0 9 0 0.0000000
## 1208 0 2 0 0.0000000
## 1209 0 2 0 0.0000000
## 1210 0 3 0 0.0000000
## 1211 0 2 0 0.0000000
## 1212 0 2 0 0.0000000
## 1213 0 2 0 0.0000000
## 1214 4 0 0 1.6094379
## 1215 0 3 0 0.0000000
## 1216 0 2 0 0.0000000
## 1217 0 0 1 0.0000000
## 1218 0 0 2 0.0000000
## 1219 0 2 0 0.0000000
## 1220 0 0 4 0.0000000
## 1221 0 0 10 0.0000000
## 1222 1 0 0 0.6931472
## 1223 0 0 2 0.0000000
## 1224 0 0 2 0.0000000
## 1225 0 0 2 0.0000000
## 1226 0 2 0 0.0000000
## 1227 0 0 1 0.0000000
## 1228 0 0 2 0.0000000
## 1229 0 2 0 0.0000000
## 1230 0 0 4 0.0000000
## 1231 0 0 3 0.0000000
## 1232 0 0 3 0.0000000
## 1233 0 0 3 0.0000000
## 1234 0 0 3 0.0000000
## 1235 0 4 0 0.0000000
## 1236 0 3 0 0.0000000
## 1237 0 3 0 0.0000000
## 1238 0 3 0 0.0000000
## 1239 0 0 2 0.0000000
## 1240 0 0 2 0.0000000
## 1241 0 2 0 0.0000000
## 1242 0 2 0 0.0000000
## 1243 0 5 0 0.0000000
## 1244 0 6 0 0.0000000
## 1245 0 0 2 0.0000000
## 1246 0 0 3 0.0000000
## 1247 NA NA NA NA
## 1248 0 2 0 0.0000000
## 1249 0 0 2 0.0000000
## 1250 0 2 0 0.0000000
## 1251 0 0 1 0.0000000
## 1252 0 0 2 0.0000000
## 1253 0 0 1 0.0000000
## 1254 0 4 0 0.0000000
## 1255 0 0 1 0.0000000
## 1256 0 0 2 0.0000000
## 1257 0 0 6 0.0000000
## 1258 0 0 1 0.0000000
## 1259 0 5 0 0.0000000
## 1260 0 0 3 0.0000000
## 1261 0 0 4 0.0000000
## 1262 0 0 7 0.0000000
## 1263 0 2 0 0.0000000
## 1264 0 0 1 0.0000000
## 1265 0 4 0 0.0000000
## 1266 0 0 2 0.0000000
## 1267 0 2 0 0.0000000
## 1268 0 2 0 0.0000000
## 1269 0 0 2 0.0000000
## 1270 0 0 2 0.0000000
## 1271 0 4 0 0.0000000
## 1272 0 0 2 0.0000000
## 1273 0 5 0 0.0000000
## 1274 0 3 0 0.0000000
## 1275 0 0 4 0.0000000
## 1276 0 0 1 0.0000000
## 1277 0 0 2 0.0000000
## 1278 0 0 1 0.0000000
## 1279 0 0 4 0.0000000
## 1280 12 0 0 2.5649494
## 1281 0 0 1 0.0000000
## 1282 0 0 2 0.0000000
## 1283 0 3 0 0.0000000
## 1284 0 2 0 0.0000000
## 1285 0 3 0 0.0000000
## 1286 0 0 2 0.0000000
## 1287 0 0 1 0.0000000
## 1288 0 2 0 0.0000000
## 1289 0 0 1 0.0000000
## 1290 0 2 0 0.0000000
## 1291 0 0 2 0.0000000
## 1292 0 0 3 0.0000000
## 1293 0 0 3 0.0000000
## 1294 0 0 1 0.0000000
## 1295 0 0 3 0.0000000
## 1296 0 0 3 0.0000000
## 1297 1 0 0 0.6931472
## 1298 NA NA NA NA
## 1299 2 0 0 1.0986123
## 1300 2 0 0 1.0986123
## 1301 0 0 6 0.0000000
## 1302 1 0 0 0.6931472
## 1303 1 0 0 0.6931472
## 1304 NA NA NA NA
## 1305 NA NA NA NA
## 1306 0 0 1 0.0000000
## 1307 0 6 0 0.0000000
## 1308 1 0 0 0.6931472
## 1309 0 0 2 0.0000000
## 1310 16 0 0 2.8332133
## 1311 1 0 0 0.6931472
## 1312 1 0 0 0.6931472
## 1313 0 0 1 0.0000000
## 1314 0 2 0 0.0000000
## 1315 0 0 1 0.0000000
## 1316 0 0 1 0.0000000
## 1317 0 4 0 0.0000000
## 1318 3 0 0 1.3862944
## 1319 0 0 3 0.0000000
## 1320 0 0 1 0.0000000
## 1321 0 0 3 0.0000000
## 1322 0 0 1 0.0000000
## 1323 0 0 2 0.0000000
## 1324 0 4 0 0.0000000
## 1325 0 0 1 0.0000000
## 1326 0 4 0 0.0000000
## 1327 0 2 0 0.0000000
## 1328 0 4 0 0.0000000
## 1329 0 0 10 0.0000000
## 1330 0 0 4 0.0000000
## 1331 0 0 2 0.0000000
## 1332 NA NA NA NA
## 1333 0 0 16 0.0000000
## 1334 0 0 1 0.0000000
## 1335 0 6 0 0.0000000
## 1336 16 0 0 2.8332133
## 1337 0 0 1 0.0000000
## 1338 0 0 1 0.0000000
## 1339 0 0 2 0.0000000
## 1340 0 2 0 0.0000000
## 1341 0 6 0 0.0000000
## 1342 0 0 1 0.0000000
## 1343 0 0 1 0.0000000
## 1344 0 0 2 0.0000000
## 1345 0 0 1 0.0000000
## 1346 0 0 6 0.0000000
## 1347 0 0 4 0.0000000
## 1348 0 3 0 0.0000000
## 1349 0 0 1 0.0000000
## 1350 0 7 0 0.0000000
## 1351 0 0 1 0.0000000
## 1352 0 6 0 0.0000000
## 1353 NA NA NA NA
## 1354 NA NA NA NA
## 1355 NA NA NA NA
## 1356 0 0 1 0.0000000
## 1357 0 0 1 0.0000000
## 1358 0 0 2 0.0000000
## 1359 0 0 2 0.0000000
## 1360 0 0 1 0.0000000
## 1361 0 0 1 0.0000000
## 1362 NA NA NA NA
## 1363 0 0 2 0.0000000
## 1364 0 0 1 0.0000000
## 1365 0 0 1 0.0000000
## 1366 0 0 2 0.0000000
## 1367 0 4 0 0.0000000
## 1368 0 0 1 0.0000000
## 1369 0 0 1 0.0000000
## 1370 0 0 1 0.0000000
## 1371 0 2 0 0.0000000
## 1372 0 0 1 0.0000000
## 1373 0 2 0 0.0000000
## 1374 0 5 0 0.0000000
## 1375 0 0 2 0.0000000
## 1376 0 2 0 0.0000000
## 1377 0 0 1 0.0000000
## 1378 0 0 4 0.0000000
## 1379 0 0 2 0.0000000
## 1380 0 0 2 0.0000000
## 1381 0 0 6 0.0000000
## 1382 0 0 6 0.0000000
## 1383 0 0 2 0.0000000
## 1384 0 7 0 0.0000000
## 1385 0 5 0 0.0000000
## 1386 0 2 0 0.0000000
## 1387 0 0 1 0.0000000
## 1388 NA NA NA NA
## 1389 0 8 0 0.0000000
## 1390 0 0 1 0.0000000
## 1391 0 0 1 0.0000000
## 1392 0 4 0 0.0000000
## 1393 0 0 2 0.0000000
## 1394 0 0 1 0.0000000
## 1395 0 0 2 0.0000000
## 1396 0 0 2 0.0000000
## 1397 0 4 0 0.0000000
## 1398 0 0 1 0.0000000
## 1399 0 2 0 0.0000000
## 1400 0 0 2 0.0000000
## 1401 0 0 1 0.0000000
## 1402 0 0 1 0.0000000
## 1403 0 0 4 0.0000000
## 1404 0 3 0 0.0000000
## 1405 0 0 1 0.0000000
## 1406 0 0 2 0.0000000
## 1407 0 0 3 0.0000000
## 1408 0 4 0 0.0000000
## 1409 0 0 3 0.0000000
## 1410 0 3 0 0.0000000
## 1411 0 2 0 0.0000000
## 1412 0 0 2 0.0000000
## 1413 1 0 0 0.6931472
## 1414 0 0 6 0.0000000
## 1415 NA NA NA NA
## 1416 0 0 1 0.0000000
## 1417 0 0 4 0.0000000
## 1418 NA NA NA NA
## 1419 0 5 0 0.0000000
## 1420 NA NA NA NA
## 1421 0 2 0 0.0000000
## 1422 0 2 0 0.0000000
## 1423 0 2 0 0.0000000
## 1424 0 0 1 0.0000000
## 1425 0 2 0 0.0000000
## 1426 0 0 1 0.0000000
## 1427 0 0 1 0.0000000
## 1428 0 4 0 0.0000000
## 1429 0 0 2 0.0000000
## 1430 0 2 0 0.0000000
## 1431 0 2 0 0.0000000
## 1432 0 0 1 0.0000000
## 1433 NA NA NA NA
## 1434 0 0 1 0.0000000
## 1435 0 0 1 0.0000000
## 1436 0 0 1 0.0000000
## 1437 0 0 1 0.0000000
## 1438 0 0 1 0.0000000
## 1439 0 0 1 0.0000000
## 1440 0 0 1 0.0000000
## 1441 0 0 1 0.0000000
## 1442 0 0 1 0.0000000
## 1443 0 0 1 0.0000000
## 1444 0 2 0 0.0000000
## 1445 0 0 1 0.0000000
## 1446 0 0 2 0.0000000
## 1447 0 0 1 0.0000000
## 1448 0 0 4 0.0000000
## 1449 0 5 0 0.0000000
## 1450 0 6 0 0.0000000
## 1451 0 2 0 0.0000000
## 1452 0 0 2 0.0000000
## 1453 0 0 1 0.0000000
## 1454 0 4 0 0.0000000
## 1455 0 4 0 0.0000000
## 1456 0 0 1 0.0000000
## 1457 0 2 0 0.0000000
## 1458 0 2 0 0.0000000
## 1459 0 2 0 0.0000000
## 1460 0 6 0 0.0000000
## 1461 2 0 0 1.0986123
## 1462 0 0 1 0.0000000
## 1463 0 0 1 0.0000000
## 1464 0 0 1 0.0000000
## 1465 0 0 1 0.0000000
## 1466 0 6 0 0.0000000
## 1467 0 0 1 0.0000000
## 1468 0 3 0 0.0000000
## 1469 0 5 0 0.0000000
## 1470 0 2 0 0.0000000
## 1471 0 1 0 0.0000000
## 1472 0 0 1 0.0000000
## 1473 0 2 0 0.0000000
## 1474 0 0 2 0.0000000
## 1475 0 0 4 0.0000000
## 1476 0 0 1 0.0000000
## 1477 0 0 1 0.0000000
## 1478 0 0 1 0.0000000
## 1479 0 2 0 0.0000000
## 1480 0 0 1 0.0000000
## 1481 0 0 1 0.0000000
## 1482 0 0 2 0.0000000
## 1483 0 2 0 0.0000000
## 1484 0 3 0 0.0000000
## 1485 0 0 1 0.0000000
## 1486 0 0 1 0.0000000
## 1487 0 4 0 0.0000000
## 1488 NA NA NA NA
## 1489 0 0 1 0.0000000
## 1490 NA NA NA NA
## 1491 NA NA NA NA
## 1492 NA NA NA NA
## 1493 0 2 0 0.0000000
## 1494 0 2 0 0.0000000
## 1495 0 6 0 0.0000000
## 1496 0 0 2 0.0000000
## 1497 0 5 0 0.0000000
## 1498 0 3 0 0.0000000
## 1499 0 0 2 0.0000000
## 1500 0 7 0 0.0000000
## 1501 0 0 1 0.0000000
## 1502 0 6 0 0.0000000
## 1503 0 5 0 0.0000000
## 1504 0 0 1 0.0000000
## 1505 0 6 0 0.0000000
## 1506 0 2 0 0.0000000
## 1507 0 0 2 0.0000000
## 1508 0 8 0 0.0000000
## 1509 0 5 0 0.0000000
## 1510 0 2 0 0.0000000
## 1511 1 0 0 0.6931472
## 1512 6 0 0 1.9459101
## 1513 4 0 0 1.6094379
## 1514 0 2 0 0.0000000
## 1515 0 6 0 0.0000000
## 1516 0 0 1 0.0000000
## 1517 0 2 0 0.0000000
## 1518 0 2 0 0.0000000
## 1519 0 2 0 0.0000000
## 1520 0 0 1 0.0000000
## 1521 0 0 2 0.0000000
## 1522 0 0 2 0.0000000
## 1523 0 0 2 0.0000000
## 1524 0 0 1 0.0000000
## 1525 0 0 1 0.0000000
## 1526 0 0 2 0.0000000
## 1527 0 0 2 0.0000000
## 1528 0 2 0 0.0000000
## 1529 0 0 1 0.0000000
## 1530 0 0 2 0.0000000
## 1531 0 0 1 0.0000000
## 1532 6 0 0 1.9459101
## 1533 0 0 1 0.0000000
## 1534 0 2 0 0.0000000
## 1535 0 0 1 0.0000000
## 1536 0 2 0 0.0000000
## 1537 0 0 2 0.0000000
## 1538 0 0 1 0.0000000
## ln_Capacity_x_House_ind ln_Capacity_x_Private_ind reviews_since_2019
## 1 0.0000000 1.0986123 265
## 2 1.0986123 0.0000000 217
## 3 0.0000000 1.0986123 203
## 4 1.0986123 0.0000000 199
## 5 1.6094379 0.0000000 177
## 6 NA NA 176
## 7 0.0000000 1.0986123 167
## 8 1.0986123 0.0000000 163
## 9 1.0986123 0.0000000 149
## 10 1.3862944 0.0000000 144
## 11 NA NA 141
## 12 1.0986123 0.0000000 135
## 13 1.0986123 0.0000000 133
## 14 0.0000000 1.0986123 128
## 15 0.0000000 1.0986123 124
## 16 1.3862944 0.0000000 122
## 17 0.0000000 1.0986123 120
## 18 0.0000000 1.0986123 118
## 19 0.0000000 1.0986123 118
## 20 0.0000000 1.0986123 110
## 21 0.0000000 1.0986123 110
## 22 1.3862944 0.0000000 104
## 23 1.6094379 0.0000000 103
## 24 1.0986123 0.0000000 103
## 25 1.0986123 0.0000000 100
## 26 1.7917595 0.0000000 96
## 27 0.0000000 1.0986123 93
## 28 0.0000000 1.0986123 92
## 29 0.0000000 1.0986123 92
## 30 0.0000000 1.0986123 91
## 31 1.0986123 0.0000000 91
## 32 0.0000000 1.0986123 89
## 33 0.0000000 1.0986123 89
## 34 0.0000000 2.1972246 89
## 35 1.0986123 0.0000000 87
## 36 0.0000000 1.0986123 83
## 37 0.0000000 1.0986123 83
## 38 1.6094379 0.0000000 83
## 39 1.6094379 0.0000000 81
## 40 0.0000000 1.0986123 81
## 41 2.1972246 0.0000000 80
## 42 0.0000000 0.6931472 79
## 43 0.0000000 0.6931472 78
## 44 1.0986123 0.0000000 78
## 45 0.0000000 1.0986123 77
## 46 1.0986123 0.0000000 77
## 47 0.0000000 1.0986123 76
## 48 2.8332133 0.0000000 76
## 49 1.9459101 0.0000000 75
## 50 1.0986123 0.0000000 75
## 51 0.0000000 1.0986123 72
## 52 NA NA 70
## 53 1.0986123 0.0000000 69
## 54 1.0986123 0.0000000 69
## 55 1.0986123 0.0000000 68
## 56 1.6094379 0.0000000 68
## 57 1.0986123 0.0000000 68
## 58 0.0000000 0.6931472 67
## 59 1.0986123 0.0000000 66
## 60 1.6094379 0.0000000 66
## 61 2.1972246 0.0000000 66
## 62 2.1972246 0.0000000 66
## 63 1.0986123 0.0000000 65
## 64 1.7917595 0.0000000 63
## 65 1.7917595 0.0000000 62
## 66 0.0000000 1.0986123 62
## 67 NA NA 62
## 68 0.0000000 1.3862944 62
## 69 1.6094379 0.0000000 62
## 70 1.9459101 0.0000000 61
## 71 0.0000000 2.0794415 60
## 72 0.0000000 1.0986123 60
## 73 0.0000000 1.0986123 60
## 74 1.9459101 0.0000000 60
## 75 0.0000000 0.6931472 59
## 76 0.0000000 1.0986123 59
## 77 0.0000000 1.0986123 59
## 78 1.6094379 0.0000000 57
## 79 1.0986123 0.0000000 57
## 80 1.6094379 0.0000000 57
## 81 2.1972246 0.0000000 57
## 82 2.1972246 0.0000000 57
## 83 0.0000000 1.0986123 56
## 84 0.0000000 1.3862944 56
## 85 0.0000000 1.0986123 56
## 86 1.0986123 0.0000000 56
## 87 0.0000000 1.0986123 55
## 88 1.9459101 0.0000000 55
## 89 0.0000000 1.0986123 55
## 90 0.0000000 1.0986123 54
## 91 NA NA 54
## 92 0.6931472 0.0000000 53
## 93 0.0000000 0.6931472 53
## 94 1.0986123 0.0000000 53
## 95 1.6094379 0.0000000 53
## 96 1.6094379 0.0000000 53
## 97 2.1972246 0.0000000 53
## 98 2.1972246 0.0000000 53
## 99 2.3025851 0.0000000 53
## 100 0.0000000 1.0986123 52
## 101 0.0000000 0.6931472 52
## 102 0.0000000 0.6931472 51
## 103 0.0000000 1.0986123 51
## 104 0.0000000 1.3862944 50
## 105 0.0000000 0.0000000 50
## 106 1.6094379 0.0000000 50
## 107 0.0000000 1.3862944 49
## 108 1.9459101 0.0000000 49
## 109 1.0986123 0.0000000 49
## 110 0.0000000 0.6931472 48
## 111 1.3862944 0.0000000 48
## 112 0.0000000 1.0986123 47
## 113 1.0986123 0.0000000 47
## 114 0.0000000 1.0986123 47
## 115 0.0000000 1.0986123 47
## 116 0.0000000 1.3862944 47
## 117 0.0000000 1.3862944 47
## 118 1.0986123 0.0000000 47
## 119 NA NA 47
## 120 2.5649494 0.0000000 47
## 121 0.0000000 1.0986123 46
## 122 1.6094379 0.0000000 46
## 123 1.6094379 0.0000000 46
## 124 2.3025851 0.0000000 46
## 125 1.0986123 0.0000000 45
## 126 0.0000000 1.9459101 45
## 127 1.6094379 0.0000000 45
## 128 1.9459101 0.0000000 45
## 129 0.0000000 1.7917595 45
## 130 1.6094379 0.0000000 45
## 131 1.0986123 0.0000000 45
## 132 1.0986123 0.0000000 45
## 133 0.0000000 1.3862944 44
## 134 0.0000000 1.0986123 44
## 135 0.0000000 1.0986123 43
## 136 2.3025851 0.0000000 43
## 137 2.5649494 0.0000000 43
## 138 1.6094379 0.0000000 43
## 139 2.1972246 0.0000000 42
## 140 1.0986123 0.0000000 42
## 141 0.0000000 0.6931472 42
## 142 1.3862944 0.0000000 42
## 143 NA NA 42
## 144 1.0986123 0.0000000 42
## 145 0.0000000 1.0986123 42
## 146 0.0000000 1.3862944 41
## 147 0.0000000 0.6931472 41
## 148 1.6094379 0.0000000 41
## 149 NA NA 41
## 150 1.9459101 0.0000000 41
## 151 0.0000000 0.0000000 41
## 152 1.3862944 0.0000000 40
## 153 0.0000000 0.6931472 40
## 154 0.0000000 1.0986123 40
## 155 0.0000000 1.0986123 40
## 156 NA NA 40
## 157 0.0000000 1.0986123 39
## 158 2.3025851 0.0000000 39
## 159 1.6094379 0.0000000 39
## 160 0.0000000 1.7917595 38
## 161 NA NA 38
## 162 1.9459101 0.0000000 38
## 163 1.6094379 0.0000000 38
## 164 0.0000000 0.0000000 37
## 165 0.0000000 1.0986123 37
## 166 1.0986123 0.0000000 37
## 167 1.0986123 0.0000000 37
## 168 1.9459101 0.0000000 37
## 169 0.0000000 1.9459101 36
## 170 1.7917595 0.0000000 36
## 171 0.0000000 1.3862944 36
## 172 1.6094379 0.0000000 36
## 173 NA NA 36
## 174 1.0986123 0.0000000 36
## 175 1.0986123 0.0000000 35
## 176 1.0986123 0.0000000 35
## 177 1.0986123 0.0000000 35
## 178 0.0000000 1.0986123 35
## 179 0.0000000 1.3862944 35
## 180 1.9459101 0.0000000 35
## 181 1.0986123 0.0000000 34
## 182 NA NA 34
## 183 0.0000000 0.6931472 34
## 184 0.0000000 1.3862944 34
## 185 0.0000000 1.6094379 34
## 186 0.0000000 1.3862944 34
## 187 0.0000000 1.0986123 34
## 188 0.0000000 2.0794415 33
## 189 1.7917595 0.0000000 33
## 190 0.0000000 1.0986123 33
## 191 1.0986123 0.0000000 33
## 192 0.0000000 1.0986123 33
## 193 0.0000000 0.0000000 33
## 194 1.0986123 0.0000000 33
## 195 0.0000000 1.0986123 33
## 196 0.0000000 1.0986123 33
## 197 0.0000000 1.0986123 32
## 198 0.0000000 1.0986123 32
## 199 0.0000000 1.3862944 32
## 200 0.0000000 1.0986123 32
## 201 1.0986123 0.0000000 32
## 202 0.0000000 1.3862944 32
## 203 0.0000000 1.0986123 32
## 204 0.0000000 0.0000000 32
## 205 1.6094379 0.0000000 32
## 206 0.0000000 1.0986123 31
## 207 1.0986123 0.0000000 31
## 208 0.0000000 1.0986123 31
## 209 0.0000000 0.6931472 31
## 210 1.0986123 0.0000000 31
## 211 1.0986123 0.0000000 30
## 212 NA NA 30
## 213 0.0000000 1.0986123 30
## 214 0.0000000 1.3862944 30
## 215 0.0000000 1.0986123 30
## 216 1.6094379 0.0000000 30
## 217 1.7917595 0.0000000 30
## 218 0.0000000 1.0986123 30
## 219 0.0000000 0.6931472 29
## 220 1.7917595 0.0000000 29
## 221 NA NA 29
## 222 0.0000000 1.3862944 29
## 223 0.0000000 1.0986123 28
## 224 1.0986123 0.0000000 28
## 225 0.0000000 0.6931472 28
## 226 0.0000000 0.0000000 28
## 227 0.0000000 1.0986123 28
## 228 0.0000000 0.6931472 28
## 229 NA NA 28
## 230 1.0986123 0.0000000 28
## 231 0.0000000 1.0986123 27
## 232 0.0000000 1.0986123 27
## 233 0.0000000 1.3862944 27
## 234 1.0986123 0.0000000 27
## 235 1.0986123 0.0000000 27
## 236 0.0000000 1.0986123 27
## 237 0.0000000 1.0986123 26
## 238 1.0986123 0.0000000 26
## 239 0.0000000 1.0986123 26
## 240 1.6094379 0.0000000 26
## 241 1.7917595 0.0000000 26
## 242 1.7917595 0.0000000 26
## 243 0.0000000 1.0986123 26
## 244 0.0000000 1.0986123 26
## 245 NA NA 26
## 246 0.0000000 1.3862944 26
## 247 0.0000000 0.6931472 26
## 248 0.0000000 1.0986123 26
## 249 1.0986123 0.0000000 25
## 250 0.0000000 0.6931472 25
## 251 1.0986123 0.0000000 25
## 252 0.0000000 1.3862944 25
## 253 0.0000000 1.3862944 25
## 254 NA NA 25
## 255 0.0000000 1.0986123 25
## 256 0.0000000 0.6931472 25
## 257 1.0986123 0.0000000 25
## 258 0.0000000 1.0986123 25
## 259 1.0986123 0.0000000 25
## 260 0.0000000 1.0986123 25
## 261 0.0000000 1.0986123 25
## 262 1.6094379 0.0000000 25
## 263 0.0000000 0.6931472 24
## 264 0.0000000 2.7725887 24
## 265 0.0000000 1.0986123 24
## 266 1.6094379 0.0000000 24
## 267 0.0000000 0.0000000 24
## 268 0.0000000 0.0000000 24
## 269 0.0000000 1.6094379 24
## 270 0.0000000 1.0986123 24
## 271 1.3862944 0.0000000 24
## 272 0.0000000 1.0986123 24
## 273 1.0986123 0.0000000 23
## 274 1.3862944 0.0000000 23
## 275 0.0000000 1.0986123 23
## 276 1.0986123 0.0000000 23
## 277 1.0986123 0.0000000 23
## 278 1.0986123 0.0000000 23
## 279 1.0986123 0.0000000 23
## 280 1.0986123 0.0000000 23
## 281 1.3862944 0.0000000 23
## 282 0.0000000 0.6931472 23
## 283 1.0986123 0.0000000 23
## 284 0.6931472 0.0000000 23
## 285 1.0986123 0.0000000 23
## 286 NA NA 23
## 287 1.3862944 0.0000000 23
## 288 1.7917595 0.0000000 23
## 289 0.0000000 1.0986123 23
## 290 0.0000000 1.0986123 23
## 291 NA NA 22
## 292 1.0986123 0.0000000 22
## 293 0.0000000 1.3862944 22
## 294 0.0000000 0.6931472 22
## 295 1.0986123 0.0000000 22
## 296 1.0986123 0.0000000 22
## 297 1.0986123 0.0000000 22
## 298 1.0986123 0.0000000 22
## 299 0.0000000 1.9459101 22
## 300 0.0000000 1.0986123 22
## 301 1.9459101 0.0000000 22
## 302 1.9459101 0.0000000 22
## 303 0.0000000 1.0986123 21
## 304 1.0986123 0.0000000 21
## 305 1.0986123 0.0000000 21
## 306 1.6094379 0.0000000 21
## 307 0.0000000 0.0000000 21
## 308 0.0000000 0.6931472 21
## 309 0.0000000 0.6931472 21
## 310 0.0000000 1.0986123 21
## 311 0.0000000 1.0986123 21
## 312 NA NA 21
## 313 0.0000000 1.0986123 21
## 314 0.0000000 0.6931472 21
## 315 0.0000000 1.0986123 21
## 316 0.0000000 0.6931472 21
## 317 1.6094379 0.0000000 21
## 318 0.0000000 0.6931472 21
## 319 1.6094379 0.0000000 21
## 320 0.0000000 1.0986123 21
## 321 1.0986123 0.0000000 20
## 322 1.0986123 0.0000000 20
## 323 1.7917595 0.0000000 20
## 324 0.0000000 1.0986123 20
## 325 1.3862944 0.0000000 20
## 326 0.0000000 1.3862944 20
## 327 NA NA 20
## 328 0.0000000 0.6931472 20
## 329 1.0986123 0.0000000 20
## 330 1.0986123 0.0000000 20
## 331 0.0000000 1.3862944 19
## 332 1.0986123 0.0000000 19
## 333 0.0000000 1.0986123 19
## 334 0.0000000 1.0986123 19
## 335 0.0000000 1.0986123 19
## 336 1.6094379 0.0000000 19
## 337 1.0986123 0.0000000 19
## 338 NA NA 19
## 339 0.0000000 1.0986123 19
## 340 0.0000000 1.0986123 19
## 341 0.0000000 1.0986123 19
## 342 0.0000000 1.0986123 18
## 343 1.6094379 0.0000000 18
## 344 1.6094379 0.0000000 18
## 345 NA NA 18
## 346 NA NA 18
## 347 0.0000000 0.6931472 18
## 348 0.0000000 1.0986123 18
## 349 1.6094379 0.0000000 18
## 350 1.0986123 0.0000000 18
## 351 1.0986123 0.0000000 18
## 352 0.0000000 1.0986123 18
## 353 0.0000000 1.0986123 17
## 354 0.0000000 1.3862944 17
## 355 1.0986123 0.0000000 17
## 356 0.0000000 1.0986123 17
## 357 1.0986123 0.0000000 17
## 358 0.0000000 1.0986123 17
## 359 1.9459101 0.0000000 17
## 360 0.0000000 0.6931472 17
## 361 0.0000000 1.3862944 17
## 362 0.6931472 0.0000000 17
## 363 0.0000000 1.0986123 17
## 364 1.6094379 0.0000000 17
## 365 1.6094379 0.0000000 17
## 366 NA NA 17
## 367 0.0000000 1.0986123 17
## 368 0.0000000 1.0986123 17
## 369 1.0986123 0.0000000 16
## 370 1.6094379 0.0000000 16
## 371 0.0000000 1.6094379 16
## 372 0.0000000 0.6931472 16
## 373 0.0000000 1.0986123 16
## 374 1.0986123 0.0000000 16
## 375 0.0000000 1.9459101 16
## 376 0.0000000 0.6931472 16
## 377 1.0986123 0.0000000 16
## 378 0.0000000 0.6931472 16
## 379 1.9459101 0.0000000 16
## 380 0.0000000 1.0986123 16
## 381 1.0986123 0.0000000 16
## 382 NA NA 16
## 383 NA NA 16
## 384 0.0000000 1.0986123 16
## 385 1.0986123 0.0000000 16
## 386 0.0000000 1.0986123 16
## 387 1.0986123 0.0000000 16
## 388 1.7917595 0.0000000 16
## 389 1.0986123 0.0000000 16
## 390 0.0000000 1.0986123 15
## 391 0.0000000 1.0986123 15
## 392 1.0986123 0.0000000 15
## 393 0.0000000 1.0986123 15
## 394 0.0000000 1.7917595 15
## 395 0.0000000 0.6931472 15
## 396 1.7917595 0.0000000 15
## 397 1.0986123 0.0000000 15
## 398 0.0000000 1.0986123 15
## 399 0.0000000 1.0986123 15
## 400 0.0000000 1.0986123 15
## 401 0.0000000 1.0986123 15
## 402 NA NA 15
## 403 NA NA 15
## 404 1.0986123 0.0000000 15
## 405 0.0000000 1.0986123 15
## 406 1.3862944 0.0000000 15
## 407 1.0986123 0.0000000 15
## 408 NA NA 15
## 409 0.0000000 1.0986123 15
## 410 0.0000000 0.0000000 15
## 411 1.0986123 0.0000000 15
## 412 1.3862944 0.0000000 15
## 413 1.0986123 0.0000000 14
## 414 1.0986123 0.0000000 14
## 415 1.0986123 0.0000000 14
## 416 1.0986123 0.0000000 14
## 417 1.0986123 0.0000000 14
## 418 0.0000000 1.0986123 14
## 419 NA NA 14
## 420 0.0000000 0.0000000 14
## 421 1.9459101 0.0000000 14
## 422 1.0986123 0.0000000 14
## 423 1.0986123 0.0000000 14
## 424 1.0986123 0.0000000 14
## 425 1.0986123 0.0000000 14
## 426 0.0000000 1.6094379 14
## 427 0.0000000 1.9459101 14
## 428 NA NA 14
## 429 1.6094379 0.0000000 14
## 430 0.0000000 0.6931472 14
## 431 0.0000000 0.0000000 14
## 432 0.0000000 1.3862944 14
## 433 1.6094379 0.0000000 14
## 434 1.6094379 0.0000000 14
## 435 0.0000000 1.0986123 14
## 436 0.0000000 1.6094379 14
## 437 1.6094379 0.0000000 14
## 438 1.7917595 0.0000000 14
## 439 1.6094379 0.0000000 14
## 440 1.7917595 0.0000000 14
## 441 1.0986123 0.0000000 13
## 442 0.0000000 0.6931472 13
## 443 1.0986123 0.0000000 13
## 444 0.0000000 1.0986123 13
## 445 0.0000000 0.0000000 13
## 446 1.6094379 0.0000000 13
## 447 1.0986123 0.0000000 13
## 448 1.0986123 0.0000000 13
## 449 1.6094379 0.0000000 13
## 450 1.6094379 0.0000000 13
## 451 1.0986123 0.0000000 13
## 452 0.0000000 1.0986123 13
## 453 0.0000000 1.3862944 13
## 454 0.0000000 0.6931472 13
## 455 NA NA 13
## 456 1.6094379 0.0000000 13
## 457 0.0000000 1.0986123 13
## 458 2.0794415 0.0000000 13
## 459 0.0000000 1.0986123 13
## 460 1.0986123 0.0000000 13
## 461 1.6094379 0.0000000 13
## 462 0.0000000 1.6094379 13
## 463 0.0000000 1.3862944 13
## 464 0.0000000 1.0986123 13
## 465 0.0000000 1.0986123 13
## 466 0.0000000 1.0986123 12
## 467 1.3862944 0.0000000 12
## 468 0.0000000 0.6931472 12
## 469 0.0000000 1.0986123 12
## 470 0.0000000 0.0000000 12
## 471 NA NA 12
## 472 1.0986123 0.0000000 12
## 473 NA NA 12
## 474 1.0986123 0.0000000 12
## 475 0.0000000 1.0986123 12
## 476 0.0000000 1.3862944 12
## 477 1.7917595 0.0000000 12
## 478 1.0986123 0.0000000 12
## 479 1.0986123 0.0000000 12
## 480 1.0986123 0.0000000 12
## 481 1.0986123 0.0000000 12
## 482 0.0000000 1.0986123 12
## 483 1.0986123 0.0000000 12
## 484 NA NA 12
## 485 NA NA 12
## 486 1.6094379 0.0000000 12
## 487 NA NA 12
## 488 NA NA 12
## 489 0.0000000 2.1972246 12
## 490 0.0000000 0.6931472 12
## 491 0.0000000 0.0000000 12
## 492 NA NA 12
## 493 0.0000000 1.0986123 12
## 494 1.9459101 0.0000000 12
## 495 1.0986123 0.0000000 12
## 496 0.0000000 1.0986123 12
## 497 0.0000000 1.0986123 12
## 498 0.0000000 0.6931472 11
## 499 0.0000000 0.6931472 11
## 500 1.0986123 0.0000000 11
## 501 1.0986123 0.0000000 11
## 502 1.6094379 0.0000000 11
## 503 0.0000000 1.0986123 11
## 504 0.0000000 0.6931472 11
## 505 0.0000000 1.6094379 11
## 506 1.0986123 0.0000000 11
## 507 NA NA 11
## 508 1.6094379 0.0000000 11
## 509 0.0000000 0.6931472 11
## 510 1.7917595 0.0000000 11
## 511 0.0000000 1.0986123 11
## 512 NA NA 11
## 513 1.0986123 0.0000000 11
## 514 0.0000000 0.0000000 11
## 515 0.0000000 1.0986123 11
## 516 0.0000000 0.6931472 11
## 517 NA NA 11
## 518 NA NA 11
## 519 0.0000000 0.6931472 11
## 520 1.9459101 0.0000000 11
## 521 1.3862944 0.0000000 11
## 522 1.0986123 0.0000000 11
## 523 1.0986123 0.0000000 11
## 524 1.6094379 0.0000000 11
## 525 0.0000000 1.0986123 11
## 526 1.0986123 0.0000000 11
## 527 0.0000000 1.0986123 11
## 528 0.0000000 1.0986123 11
## 529 1.3862944 0.0000000 10
## 530 1.7917595 0.0000000 10
## 531 1.0986123 0.0000000 10
## 532 0.0000000 0.6931472 10
## 533 1.6094379 0.0000000 10
## 534 NA NA 10
## 535 1.7917595 0.0000000 10
## 536 0.0000000 1.0986123 10
## 537 1.0986123 0.0000000 10
## 538 0.0000000 1.0986123 10
## 539 0.0000000 0.0000000 10
## 540 NA NA 10
## 541 0.0000000 0.0000000 10
## 542 1.7917595 0.0000000 10
## 543 0.0000000 1.0986123 10
## 544 0.0000000 1.0986123 10
## 545 0.0000000 1.0986123 10
## 546 0.0000000 0.6931472 10
## 547 0.0000000 1.0986123 10
## 548 0.0000000 1.0986123 10
## 549 0.0000000 1.0986123 10
## 550 2.0794415 0.0000000 10
## 551 1.0986123 0.0000000 10
## 552 1.0986123 0.0000000 10
## 553 1.0986123 0.0000000 10
## 554 1.0986123 0.0000000 10
## 555 NA NA 10
## 556 0.0000000 1.0986123 10
## 557 0.0000000 0.6931472 10
## 558 0.0000000 1.0986123 10
## 559 0.0000000 1.0986123 10
## 560 1.7917595 0.0000000 10
## 561 1.7917595 0.0000000 10
## 562 1.0986123 0.0000000 10
## 563 0.0000000 1.0986123 10
## 564 0.0000000 1.9459101 9
## 565 0.0000000 0.6931472 9
## 566 1.6094379 0.0000000 9
## 567 0.0000000 0.0000000 9
## 568 1.0986123 0.0000000 9
## 569 1.9459101 0.0000000 9
## 570 1.0986123 0.0000000 9
## 571 NA NA 9
## 572 1.0986123 0.0000000 9
## 573 0.0000000 1.0986123 9
## 574 1.3862944 0.0000000 9
## 575 1.0986123 0.0000000 9
## 576 0.0000000 0.6931472 9
## 577 0.0000000 1.6094379 9
## 578 NA NA 9
## 579 NA NA 9
## 580 0.0000000 1.0986123 9
## 581 0.0000000 1.0986123 9
## 582 0.0000000 0.6931472 9
## 583 1.0986123 0.0000000 9
## 584 0.0000000 1.3862944 9
## 585 NA NA 9
## 586 1.9459101 0.0000000 9
## 587 2.1972246 0.0000000 9
## 588 1.0986123 0.0000000 9
## 589 0.0000000 0.6931472 9
## 590 0.0000000 1.3862944 9
## 591 1.7917595 0.0000000 9
## 592 0.6931472 0.0000000 8
## 593 1.0986123 0.0000000 8
## 594 1.0986123 0.0000000 8
## 595 2.0794415 0.0000000 8
## 596 NA NA 8
## 597 1.6094379 0.0000000 8
## 598 1.0986123 0.0000000 8
## 599 0.0000000 1.0986123 8
## 600 0.0000000 1.0986123 8
## 601 1.0986123 0.0000000 8
## 602 NA NA 8
## 603 NA NA 8
## 604 0.0000000 1.3862944 8
## 605 2.0794415 0.0000000 8
## 606 1.0986123 0.0000000 8
## 607 1.0986123 0.0000000 8
## 608 0.0000000 0.6931472 8
## 609 1.6094379 0.0000000 8
## 610 1.0986123 0.0000000 8
## 611 NA NA 8
## 612 NA NA 8
## 613 0.0000000 0.0000000 8
## 614 0.0000000 1.0986123 8
## 615 NA NA 8
## 616 1.9459101 0.0000000 8
## 617 1.9459101 0.0000000 8
## 618 1.9459101 0.0000000 8
## 619 NA NA 8
## 620 0.0000000 0.6931472 8
## 621 0.0000000 0.0000000 8
## 622 2.0794415 0.0000000 8
## 623 0.0000000 0.6931472 8
## 624 1.7917595 0.0000000 8
## 625 0.0000000 0.6931472 8
## 626 1.0986123 0.0000000 8
## 627 1.6094379 0.0000000 8
## 628 0.0000000 1.0986123 8
## 629 1.7917595 0.0000000 7
## 630 1.0986123 0.0000000 7
## 631 1.0986123 0.0000000 7
## 632 1.0986123 0.0000000 7
## 633 1.0986123 0.0000000 7
## 634 0.0000000 1.0986123 7
## 635 NA NA 7
## 636 0.0000000 0.0000000 7
## 637 0.0000000 1.0986123 7
## 638 0.0000000 1.3862944 7
## 639 0.0000000 1.0986123 7
## 640 0.0000000 1.0986123 7
## 641 0.0000000 0.6931472 7
## 642 1.7917595 0.0000000 7
## 643 1.7917595 0.0000000 7
## 644 0.0000000 1.9459101 7
## 645 1.0986123 0.0000000 7
## 646 1.0986123 0.0000000 7
## 647 1.0986123 0.0000000 7
## 648 NA NA 7
## 649 1.6094379 0.0000000 7
## 650 0.0000000 1.0986123 7
## 651 1.6094379 0.0000000 7
## 652 0.0000000 1.0986123 7
## 653 1.7917595 0.0000000 7
## 654 1.0986123 0.0000000 7
## 655 NA NA 7
## 656 0.6931472 0.0000000 7
## 657 0.0000000 1.0986123 7
## 658 NA NA 7
## 659 1.0986123 0.0000000 7
## 660 NA NA 7
## 661 0.0000000 0.6931472 7
## 662 1.0986123 0.0000000 7
## 663 NA NA 7
## 664 NA NA 7
## 665 0.0000000 1.0986123 7
## 666 0.0000000 1.0986123 7
## 667 1.0986123 0.0000000 7
## 668 1.0986123 0.0000000 7
## 669 1.6094379 0.0000000 7
## 670 0.0000000 1.0986123 7
## 671 2.1972246 0.0000000 7
## 672 2.1972246 0.0000000 7
## 673 1.0986123 0.0000000 7
## 674 0.0000000 1.0986123 7
## 675 0.0000000 1.0986123 7
## 676 0.0000000 1.0986123 7
## 677 1.7917595 0.0000000 7
## 678 1.7917595 0.0000000 7
## 679 2.1972246 0.0000000 7
## 680 NA NA 6
## 681 1.0986123 0.0000000 6
## 682 1.6094379 0.0000000 6
## 683 1.0986123 0.0000000 6
## 684 0.0000000 1.0986123 6
## 685 0.0000000 1.0986123 6
## 686 1.3862944 0.0000000 6
## 687 1.0986123 0.0000000 6
## 688 0.0000000 1.0986123 6
## 689 1.0986123 0.0000000 6
## 690 0.0000000 1.3862944 6
## 691 1.9459101 0.0000000 6
## 692 0.0000000 0.6931472 6
## 693 NA NA 6
## 694 1.0986123 0.0000000 6
## 695 0.0000000 1.6094379 6
## 696 0.0000000 1.0986123 6
## 697 0.0000000 1.7917595 6
## 698 1.0986123 0.0000000 6
## 699 1.0986123 0.0000000 6
## 700 0.0000000 1.0986123 6
## 701 0.0000000 1.0986123 6
## 702 0.0000000 1.0986123 6
## 703 NA NA 6
## 704 0.0000000 1.0986123 6
## 705 1.0986123 0.0000000 6
## 706 0.0000000 1.3862944 6
## 707 1.0986123 0.0000000 6
## 708 0.6931472 0.0000000 6
## 709 NA NA 6
## 710 1.0986123 0.0000000 6
## 711 0.0000000 1.0986123 6
## 712 1.6094379 0.0000000 6
## 713 1.0986123 0.0000000 6
## 714 NA NA 6
## 715 1.7917595 0.0000000 6
## 716 0.0000000 1.0986123 6
## 717 NA NA 6
## 718 0.0000000 1.6094379 6
## 719 1.9459101 0.0000000 6
## 720 NA NA 6
## 721 NA NA 6
## 722 NA NA 6
## 723 1.0986123 0.0000000 6
## 724 0.0000000 1.0986123 6
## 725 0.0000000 1.0986123 6
## 726 1.6094379 0.0000000 6
## 727 0.0000000 1.0986123 6
## 728 0.0000000 1.0986123 6
## 729 2.1972246 0.0000000 6
## 730 1.0986123 0.0000000 6
## 731 1.0986123 0.0000000 6
## 732 1.0986123 0.0000000 6
## 733 0.0000000 0.0000000 6
## 734 1.6094379 0.0000000 6
## 735 1.7917595 0.0000000 6
## 736 0.0000000 0.6931472 6
## 737 1.3862944 0.0000000 6
## 738 1.6094379 0.0000000 6
## 739 0.0000000 1.6094379 6
## 740 0.0000000 1.0986123 6
## 741 0.0000000 1.0986123 6
## 742 0.0000000 0.6931472 6
## 743 1.3862944 0.0000000 6
## 744 0.0000000 0.6931472 5
## 745 0.0000000 1.0986123 5
## 746 1.0986123 0.0000000 5
## 747 0.0000000 1.0986123 5
## 748 0.0000000 0.6931472 5
## 749 0.0000000 0.6931472 5
## 750 0.0000000 1.0986123 5
## 751 0.0000000 2.1972246 5
## 752 0.0000000 0.6931472 5
## 753 0.0000000 0.0000000 5
## 754 0.0000000 0.0000000 5
## 755 1.0986123 0.0000000 5
## 756 0.0000000 1.0986123 5
## 757 0.0000000 1.0986123 5
## 758 1.0986123 0.0000000 5
## 759 1.3862944 0.0000000 5
## 760 0.6931472 0.0000000 5
## 761 0.0000000 1.0986123 5
## 762 0.0000000 1.0986123 5
## 763 0.0000000 1.0986123 5
## 764 NA NA 5
## 765 0.0000000 1.3862944 5
## 766 1.3862944 0.0000000 5
## 767 0.0000000 1.0986123 5
## 768 0.0000000 1.0986123 5
## 769 1.0986123 0.0000000 5
## 770 0.6931472 0.0000000 5
## 771 1.0986123 0.0000000 5
## 772 1.7917595 0.0000000 5
## 773 1.0986123 0.0000000 5
## 774 NA NA 5
## 775 0.0000000 0.6931472 5
## 776 1.9459101 0.0000000 5
## 777 1.0986123 0.0000000 5
## 778 1.9459101 0.0000000 5
## 779 1.6094379 0.0000000 5
## 780 0.0000000 1.0986123 5
## 781 NA NA 5
## 782 1.0986123 0.0000000 5
## 783 1.9459101 0.0000000 5
## 784 1.9459101 0.0000000 5
## 785 1.0986123 0.0000000 5
## 786 1.0986123 0.0000000 5
## 787 NA NA 5
## 788 0.0000000 0.6931472 5
## 789 NA NA 5
## 790 0.0000000 1.0986123 5
## 791 0.0000000 0.6931472 5
## 792 0.0000000 0.6931472 5
## 793 NA NA 5
## 794 0.0000000 0.6931472 5
## 795 0.0000000 1.3862944 5
## 796 2.1972246 0.0000000 5
## 797 1.0986123 0.0000000 5
## 798 1.0986123 0.0000000 5
## 799 1.6094379 0.0000000 5
## 800 0.0000000 0.6931472 5
## 801 0.0000000 1.0986123 5
## 802 0.0000000 1.0986123 5
## 803 0.0000000 1.0986123 5
## 804 1.3862944 0.0000000 5
## 805 1.6094379 0.0000000 5
## 806 0.0000000 1.0986123 5
## 807 1.3862944 0.0000000 5
## 808 0.0000000 0.6931472 5
## 809 1.0986123 0.0000000 5
## 810 1.0986123 0.0000000 5
## 811 0.0000000 0.6931472 5
## 812 1.9459101 0.0000000 5
## 813 0.0000000 1.0986123 5
## 814 0.0000000 1.3862944 4
## 815 0.0000000 1.0986123 4
## 816 0.0000000 1.0986123 4
## 817 1.3862944 0.0000000 4
## 818 0.0000000 0.6931472 4
## 819 1.0986123 0.0000000 4
## 820 1.3862944 0.0000000 4
## 821 1.0986123 0.0000000 4
## 822 0.0000000 1.3862944 4
## 823 0.0000000 1.3862944 4
## 824 0.0000000 1.9459101 4
## 825 0.0000000 1.0986123 4
## 826 0.0000000 0.0000000 4
## 827 NA NA 4
## 828 0.0000000 0.0000000 4
## 829 1.6094379 0.0000000 4
## 830 NA NA 4
## 831 0.0000000 1.6094379 4
## 832 1.0986123 0.0000000 4
## 833 1.0986123 0.0000000 4
## 834 0.0000000 1.0986123 4
## 835 0.0000000 1.3862944 4
## 836 0.0000000 1.3862944 4
## 837 0.0000000 0.0000000 4
## 838 NA NA 4
## 839 1.0986123 0.0000000 4
## 840 0.0000000 1.3862944 4
## 841 0.0000000 0.6931472 4
## 842 1.3862944 0.0000000 4
## 843 1.0986123 0.0000000 4
## 844 NA NA 4
## 845 1.7917595 0.0000000 4
## 846 0.0000000 0.6931472 4
## 847 1.0986123 0.0000000 4
## 848 NA NA 4
## 849 1.0986123 0.0000000 4
## 850 0.0000000 1.0986123 4
## 851 2.0794415 0.0000000 4
## 852 1.3862944 0.0000000 4
## 853 0.6931472 0.0000000 4
## 854 0.0000000 1.0986123 4
## 855 0.0000000 1.0986123 4
## 856 1.0986123 0.0000000 4
## 857 1.6094379 0.0000000 4
## 858 NA NA 4
## 859 0.0000000 1.0986123 4
## 860 0.0000000 1.0986123 4
## 861 0.0000000 0.6931472 4
## 862 NA NA 4
## 863 1.7917595 0.0000000 4
## 864 0.0000000 1.0986123 4
## 865 0.0000000 0.6931472 4
## 866 1.0986123 0.0000000 4
## 867 0.0000000 0.6931472 4
## 868 1.6094379 0.0000000 4
## 869 1.0986123 0.0000000 4
## 870 0.0000000 1.3862944 4
## 871 0.0000000 2.7080502 4
## 872 0.0000000 0.6931472 4
## 873 NA NA 4
## 874 NA NA 4
## 875 0.0000000 1.0986123 4
## 876 0.0000000 0.0000000 4
## 877 0.0000000 1.0986123 4
## 878 1.0986123 0.0000000 4
## 879 1.6094379 0.0000000 4
## 880 1.6094379 0.0000000 4
## 881 1.0986123 0.0000000 4
## 882 0.0000000 0.6931472 4
## 883 1.9459101 0.0000000 4
## 884 1.0986123 0.0000000 4
## 885 0.0000000 1.6094379 4
## 886 2.8332133 0.0000000 4
## 887 1.0986123 0.0000000 4
## 888 1.0986123 0.0000000 4
## 889 0.0000000 1.3862944 4
## 890 0.0000000 1.3862944 4
## 891 0.0000000 0.0000000 4
## 892 0.0000000 1.0986123 4
## 893 0.0000000 1.0986123 4
## 894 0.0000000 1.0986123 4
## 895 0.0000000 1.0986123 4
## 896 1.6094379 0.0000000 4
## 897 1.0986123 0.0000000 4
## 898 0.0000000 1.0986123 4
## 899 0.0000000 1.7917595 4
## 900 1.6094379 0.0000000 4
## 901 1.0986123 0.0000000 4
## 902 0.0000000 1.0986123 4
## 903 0.0000000 0.6931472 4
## 904 0.0000000 0.6931472 3
## 905 0.0000000 0.6931472 3
## 906 1.6094379 0.0000000 3
## 907 0.0000000 0.6931472 3
## 908 0.0000000 1.6094379 3
## 909 1.6094379 0.0000000 3
## 910 0.0000000 1.0986123 3
## 911 0.0000000 1.0986123 3
## 912 1.0986123 0.0000000 3
## 913 0.0000000 1.0986123 3
## 914 0.0000000 1.3862944 3
## 915 0.0000000 1.3862944 3
## 916 0.0000000 0.0000000 3
## 917 NA NA 3
## 918 NA NA 3
## 919 1.3862944 0.0000000 3
## 920 0.0000000 2.0794415 3
## 921 0.0000000 2.8332133 3
## 922 NA NA 3
## 923 0.0000000 0.0000000 3
## 924 0.0000000 1.0986123 3
## 925 1.9459101 0.0000000 3
## 926 1.6094379 0.0000000 3
## 927 0.0000000 0.0000000 3
## 928 0.0000000 0.6931472 3
## 929 0.0000000 1.3862944 3
## 930 0.0000000 0.6931472 3
## 931 1.9459101 0.0000000 3
## 932 0.0000000 0.6931472 3
## 933 NA NA 3
## 934 0.0000000 1.0986123 3
## 935 1.0986123 0.0000000 3
## 936 NA NA 3
## 937 0.0000000 1.3862944 3
## 938 0.0000000 1.0986123 3
## 939 0.0000000 1.3862944 3
## 940 0.0000000 1.0986123 3
## 941 NA NA 3
## 942 NA NA 3
## 943 1.6094379 0.0000000 3
## 944 1.0986123 0.0000000 3
## 945 0.0000000 1.0986123 3
## 946 0.0000000 1.3862944 3
## 947 1.0986123 0.0000000 3
## 948 0.0000000 1.0986123 3
## 949 0.0000000 1.6094379 3
## 950 0.0000000 0.6931472 3
## 951 1.3862944 0.0000000 3
## 952 0.0000000 1.0986123 3
## 953 0.0000000 1.3862944 3
## 954 NA NA 3
## 955 0.0000000 1.0986123 3
## 956 0.0000000 1.0986123 3
## 957 NA NA 3
## 958 0.0000000 1.3862944 3
## 959 0.0000000 1.3862944 3
## 960 1.9459101 0.0000000 3
## 961 0.0000000 1.6094379 3
## 962 1.0986123 0.0000000 3
## 963 0.0000000 1.0986123 3
## 964 1.6094379 0.0000000 3
## 965 0.0000000 1.0986123 3
## 966 1.9459101 0.0000000 3
## 967 1.7917595 0.0000000 3
## 968 1.3862944 0.0000000 3
## 969 1.3862944 0.0000000 3
## 970 1.0986123 0.0000000 3
## 971 1.0986123 0.0000000 3
## 972 1.7917595 0.0000000 3
## 973 1.3862944 0.0000000 3
## 974 0.0000000 0.6931472 3
## 975 NA NA 3
## 976 NA NA 3
## 977 1.7917595 0.0000000 3
## 978 1.0986123 0.0000000 3
## 979 0.0000000 0.6931472 3
## 980 0.0000000 1.0986123 3
## 981 1.0986123 0.0000000 3
## 982 1.0986123 0.0000000 3
## 983 1.0986123 0.0000000 3
## 984 1.0986123 0.0000000 3
## 985 NA NA 3
## 986 1.0986123 0.0000000 3
## 987 0.0000000 0.6931472 3
## 988 0.0000000 1.0986123 3
## 989 0.0000000 0.6931472 3
## 990 2.1972246 0.0000000 3
## 991 NA NA 3
## 992 0.0000000 0.6931472 3
## 993 1.6094379 0.0000000 3
## 994 0.0000000 1.3862944 3
## 995 0.0000000 1.3862944 3
## 996 0.0000000 1.0986123 3
## 997 1.0986123 0.0000000 3
## 998 1.6094379 0.0000000 3
## 999 1.0986123 0.0000000 3
## 1000 0.0000000 2.1972246 3
## 1001 1.9459101 0.0000000 3
## 1002 0.0000000 0.6931472 3
## 1003 1.0986123 0.0000000 3
## 1004 0.0000000 1.0986123 3
## 1005 1.0986123 0.0000000 3
## 1006 0.0000000 0.6931472 3
## 1007 0.0000000 2.1972246 3
## 1008 0.0000000 1.0986123 3
## 1009 0.0000000 0.6931472 3
## 1010 0.0000000 1.0986123 3
## 1011 1.7917595 0.0000000 3
## 1012 0.0000000 1.3862944 3
## 1013 0.0000000 1.0986123 3
## 1014 0.0000000 1.6094379 3
## 1015 0.0000000 1.3862944 3
## 1016 1.0986123 0.0000000 3
## 1017 1.6094379 0.0000000 3
## 1018 1.0986123 0.0000000 3
## 1019 1.0986123 0.0000000 3
## 1020 0.0000000 1.0986123 3
## 1021 0.0000000 1.0986123 3
## 1022 0.0000000 0.6931472 3
## 1023 0.0000000 1.0986123 3
## 1024 1.3862944 0.0000000 3
## 1025 0.0000000 1.0986123 3
## 1026 0.0000000 1.0986123 3
## 1027 1.3862944 0.0000000 3
## 1028 1.6094379 0.0000000 3
## 1029 0.0000000 0.6931472 2
## 1030 0.0000000 0.6931472 2
## 1031 0.0000000 1.6094379 2
## 1032 0.0000000 0.6931472 2
## 1033 0.0000000 0.6931472 2
## 1034 0.0000000 0.6931472 2
## 1035 0.0000000 1.3862944 2
## 1036 0.0000000 1.0986123 2
## 1037 1.9459101 0.0000000 2
## 1038 0.0000000 0.6931472 2
## 1039 0.0000000 1.0986123 2
## 1040 0.0000000 0.6931472 2
## 1041 1.9459101 0.0000000 2
## 1042 0.0000000 0.0000000 2
## 1043 0.0000000 0.0000000 2
## 1044 1.3862944 0.0000000 2
## 1045 0.0000000 0.0000000 2
## 1046 0.0000000 0.0000000 2
## 1047 1.0986123 0.0000000 2
## 1048 0.0000000 2.0794415 2
## 1049 0.0000000 0.6931472 2
## 1050 0.0000000 0.6931472 2
## 1051 0.0000000 0.0000000 2
## 1052 0.0000000 0.0000000 2
## 1053 0.0000000 0.0000000 2
## 1054 0.0000000 0.0000000 2
## 1055 0.0000000 1.6094379 2
## 1056 0.0000000 1.0986123 2
## 1057 1.7917595 0.0000000 2
## 1058 0.0000000 0.0000000 2
## 1059 0.0000000 0.6931472 2
## 1060 0.0000000 1.3862944 2
## 1061 0.0000000 0.6931472 2
## 1062 1.0986123 0.0000000 2
## 1063 1.0986123 0.0000000 2
## 1064 0.0000000 1.3862944 2
## 1065 0.0000000 1.0986123 2
## 1066 0.0000000 0.6931472 2
## 1067 0.0000000 1.0986123 2
## 1068 0.0000000 1.0986123 2
## 1069 1.0986123 0.0000000 2
## 1070 1.0986123 0.0000000 2
## 1071 1.9459101 0.0000000 2
## 1072 0.0000000 1.0986123 2
## 1073 0.0000000 0.6931472 2
## 1074 1.3862944 0.0000000 2
## 1075 0.0000000 0.0000000 2
## 1076 NA NA 2
## 1077 NA NA 2
## 1078 1.0986123 0.0000000 2
## 1079 0.0000000 1.3862944 2
## 1080 0.6931472 0.0000000 2
## 1081 0.0000000 0.0000000 2
## 1082 1.9459101 0.0000000 2
## 1083 0.0000000 0.6931472 2
## 1084 0.0000000 1.0986123 2
## 1085 NA NA 2
## 1086 1.0986123 0.0000000 2
## 1087 0.0000000 0.6931472 2
## 1088 0.0000000 1.3862944 2
## 1089 0.0000000 1.3862944 2
## 1090 1.9459101 0.0000000 2
## 1091 1.3862944 0.0000000 2
## 1092 0.0000000 1.6094379 2
## 1093 NA NA 2
## 1094 1.3862944 0.0000000 2
## 1095 0.0000000 0.6931472 2
## 1096 1.0986123 0.0000000 2
## 1097 1.0986123 0.0000000 2
## 1098 0.0000000 0.6931472 2
## 1099 0.0000000 0.6931472 2
## 1100 0.0000000 0.6931472 2
## 1101 NA NA 2
## 1102 NA NA 2
## 1103 1.0986123 0.0000000 2
## 1104 1.9459101 0.0000000 2
## 1105 NA NA 2
## 1106 NA NA 2
## 1107 0.0000000 1.6094379 2
## 1108 NA NA 2
## 1109 0.0000000 1.0986123 2
## 1110 0.0000000 1.0986123 2
## 1111 0.0000000 1.9459101 2
## 1112 0.0000000 1.0986123 2
## 1113 0.0000000 0.6931472 2
## 1114 0.0000000 1.0986123 2
## 1115 0.0000000 1.0986123 2
## 1116 0.0000000 1.0986123 2
## 1117 0.0000000 1.0986123 2
## 1118 0.0000000 1.3862944 2
## 1119 NA NA 2
## 1120 0.0000000 1.0986123 2
## 1121 1.3862944 0.0000000 2
## 1122 1.6094379 0.0000000 2
## 1123 0.0000000 1.0986123 2
## 1124 1.6094379 0.0000000 2
## 1125 0.0000000 1.0986123 2
## 1126 0.0000000 1.0986123 2
## 1127 1.0986123 0.0000000 2
## 1128 0.0000000 0.6931472 2
## 1129 0.0000000 1.0986123 2
## 1130 0.0000000 0.0000000 2
## 1131 NA NA 2
## 1132 NA NA 2
## 1133 0.0000000 0.6931472 2
## 1134 NA NA 2
## 1135 1.6094379 0.0000000 2
## 1136 1.6094379 0.0000000 2
## 1137 0.0000000 0.6931472 2
## 1138 0.0000000 0.6931472 2
## 1139 0.0000000 0.6931472 2
## 1140 0.0000000 0.6931472 2
## 1141 0.0000000 1.6094379 2
## 1142 0.0000000 1.0986123 2
## 1143 1.0986123 0.0000000 2
## 1144 1.6094379 0.0000000 2
## 1145 0.0000000 1.0986123 2
## 1146 1.6094379 0.0000000 2
## 1147 0.0000000 0.6931472 2
## 1148 1.0986123 0.0000000 2
## 1149 1.6094379 0.0000000 2
## 1150 1.0986123 0.0000000 2
## 1151 1.6094379 0.0000000 2
## 1152 1.6094379 0.0000000 2
## 1153 1.6094379 0.0000000 2
## 1154 0.0000000 0.6931472 2
## 1155 0.0000000 0.6931472 2
## 1156 1.7917595 0.0000000 2
## 1157 0.0000000 0.6931472 2
## 1158 0.0000000 0.6931472 2
## 1159 0.0000000 0.6931472 2
## 1160 1.6094379 0.0000000 2
## 1161 0.0000000 0.6931472 2
## 1162 0.0000000 0.6931472 2
## 1163 1.3862944 0.0000000 2
## 1164 0.0000000 1.0986123 2
## 1165 1.0986123 0.0000000 2
## 1166 0.0000000 0.6931472 2
## 1167 0.0000000 0.6931472 2
## 1168 NA NA 2
## 1169 1.9459101 0.0000000 2
## 1170 0.0000000 0.6931472 2
## 1171 0.0000000 0.0000000 2
## 1172 0.0000000 0.6931472 2
## 1173 1.0986123 0.0000000 2
## 1174 1.0986123 0.0000000 2
## 1175 0.0000000 0.6931472 2
## 1176 2.1972246 0.0000000 2
## 1177 1.9459101 0.0000000 2
## 1178 0.0000000 0.6931472 2
## 1179 1.6094379 0.0000000 2
## 1180 0.0000000 0.0000000 2
## 1181 1.0986123 0.0000000 2
## 1182 1.6094379 0.0000000 2
## 1183 0.0000000 0.6931472 2
## 1184 0.0000000 0.6931472 2
## 1185 1.0986123 0.0000000 2
## 1186 0.0000000 1.0986123 2
## 1187 1.0986123 0.0000000 2
## 1188 1.6094379 0.0000000 2
## 1189 NA NA 2
## 1190 0.0000000 1.0986123 2
## 1191 0.0000000 0.6931472 2
## 1192 0.0000000 0.6931472 2
## 1193 0.0000000 0.6931472 2
## 1194 1.3862944 0.0000000 2
## 1195 0.0000000 0.6931472 2
## 1196 0.0000000 0.6931472 2
## 1197 1.0986123 0.0000000 2
## 1198 1.0986123 0.0000000 2
## 1199 1.6094379 0.0000000 2
## 1200 1.0986123 0.0000000 2
## 1201 0.0000000 1.0986123 2
## 1202 0.0000000 0.6931472 2
## 1203 0.0000000 0.6931472 2
## 1204 2.0794415 0.0000000 2
## 1205 0.0000000 0.6931472 2
## 1206 0.0000000 1.0986123 2
## 1207 2.3025851 0.0000000 2
## 1208 1.0986123 0.0000000 2
## 1209 1.0986123 0.0000000 2
## 1210 1.3862944 0.0000000 2
## 1211 1.0986123 0.0000000 2
## 1212 1.0986123 0.0000000 2
## 1213 1.0986123 0.0000000 2
## 1214 0.0000000 0.0000000 2
## 1215 1.3862944 0.0000000 2
## 1216 1.0986123 0.0000000 2
## 1217 0.0000000 0.6931472 2
## 1218 0.0000000 1.0986123 2
## 1219 1.0986123 0.0000000 2
## 1220 0.0000000 1.6094379 2
## 1221 0.0000000 2.3978953 2
## 1222 0.0000000 0.0000000 2
## 1223 0.0000000 1.0986123 2
## 1224 0.0000000 1.0986123 2
## 1225 0.0000000 1.0986123 2
## 1226 1.0986123 0.0000000 2
## 1227 0.0000000 0.6931472 2
## 1228 0.0000000 1.0986123 2
## 1229 1.0986123 0.0000000 2
## 1230 0.0000000 1.6094379 2
## 1231 0.0000000 1.3862944 2
## 1232 0.0000000 1.3862944 2
## 1233 0.0000000 1.3862944 2
## 1234 0.0000000 1.3862944 2
## 1235 1.6094379 0.0000000 2
## 1236 1.3862944 0.0000000 2
## 1237 1.3862944 0.0000000 2
## 1238 1.3862944 0.0000000 2
## 1239 0.0000000 1.0986123 2
## 1240 0.0000000 1.0986123 2
## 1241 1.0986123 0.0000000 2
## 1242 1.0986123 0.0000000 2
## 1243 1.7917595 0.0000000 2
## 1244 1.9459101 0.0000000 2
## 1245 0.0000000 1.0986123 2
## 1246 0.0000000 1.3862944 2
## 1247 NA NA 2
## 1248 1.0986123 0.0000000 2
## 1249 0.0000000 1.0986123 2
## 1250 1.0986123 0.0000000 2
## 1251 0.0000000 0.6931472 2
## 1252 0.0000000 1.0986123 2
## 1253 0.0000000 0.6931472 2
## 1254 1.6094379 0.0000000 2
## 1255 0.0000000 0.6931472 2
## 1256 0.0000000 1.0986123 2
## 1257 0.0000000 1.9459101 2
## 1258 0.0000000 0.6931472 2
## 1259 1.7917595 0.0000000 2
## 1260 0.0000000 1.3862944 2
## 1261 0.0000000 1.6094379 2
## 1262 0.0000000 2.0794415 2
## 1263 1.0986123 0.0000000 2
## 1264 0.0000000 0.6931472 2
## 1265 1.6094379 0.0000000 2
## 1266 0.0000000 1.0986123 2
## 1267 1.0986123 0.0000000 2
## 1268 1.0986123 0.0000000 2
## 1269 0.0000000 1.0986123 2
## 1270 0.0000000 1.0986123 2
## 1271 1.6094379 0.0000000 2
## 1272 0.0000000 1.0986123 2
## 1273 1.7917595 0.0000000 2
## 1274 1.3862944 0.0000000 2
## 1275 0.0000000 1.6094379 1
## 1276 0.0000000 0.6931472 1
## 1277 0.0000000 1.0986123 1
## 1278 0.0000000 0.6931472 1
## 1279 0.0000000 1.6094379 1
## 1280 0.0000000 0.0000000 1
## 1281 0.0000000 0.6931472 1
## 1282 0.0000000 1.0986123 1
## 1283 1.3862944 0.0000000 1
## 1284 1.0986123 0.0000000 1
## 1285 1.3862944 0.0000000 1
## 1286 0.0000000 1.0986123 1
## 1287 0.0000000 0.6931472 1
## 1288 1.0986123 0.0000000 1
## 1289 0.0000000 0.6931472 1
## 1290 1.0986123 0.0000000 1
## 1291 0.0000000 1.0986123 1
## 1292 0.0000000 1.3862944 1
## 1293 0.0000000 1.3862944 1
## 1294 0.0000000 0.6931472 1
## 1295 0.0000000 1.3862944 1
## 1296 0.0000000 1.3862944 1
## 1297 0.0000000 0.0000000 1
## 1298 NA NA 1
## 1299 0.0000000 0.0000000 1
## 1300 0.0000000 0.0000000 1
## 1301 0.0000000 1.9459101 1
## 1302 0.0000000 0.0000000 1
## 1303 0.0000000 0.0000000 1
## 1304 NA NA 1
## 1305 NA NA 1
## 1306 0.0000000 0.6931472 1
## 1307 1.9459101 0.0000000 1
## 1308 0.0000000 0.0000000 1
## 1309 0.0000000 1.0986123 1
## 1310 0.0000000 0.0000000 1
## 1311 0.0000000 0.0000000 1
## 1312 0.0000000 0.0000000 1
## 1313 0.0000000 0.6931472 1
## 1314 1.0986123 0.0000000 1
## 1315 0.0000000 0.6931472 1
## 1316 0.0000000 0.6931472 1
## 1317 1.6094379 0.0000000 1
## 1318 0.0000000 0.0000000 1
## 1319 0.0000000 1.3862944 1
## 1320 0.0000000 0.6931472 1
## 1321 0.0000000 1.3862944 1
## 1322 0.0000000 0.6931472 1
## 1323 0.0000000 1.0986123 1
## 1324 1.6094379 0.0000000 1
## 1325 0.0000000 0.6931472 1
## 1326 1.6094379 0.0000000 1
## 1327 1.0986123 0.0000000 1
## 1328 1.6094379 0.0000000 1
## 1329 0.0000000 2.3978953 1
## 1330 0.0000000 1.6094379 1
## 1331 0.0000000 1.0986123 1
## 1332 NA NA 1
## 1333 0.0000000 2.8332133 1
## 1334 0.0000000 0.6931472 1
## 1335 1.9459101 0.0000000 1
## 1336 0.0000000 0.0000000 1
## 1337 0.0000000 0.6931472 1
## 1338 0.0000000 0.6931472 1
## 1339 0.0000000 1.0986123 1
## 1340 1.0986123 0.0000000 1
## 1341 1.9459101 0.0000000 1
## 1342 0.0000000 0.6931472 1
## 1343 0.0000000 0.6931472 1
## 1344 0.0000000 1.0986123 1
## 1345 0.0000000 0.6931472 1
## 1346 0.0000000 1.9459101 1
## 1347 0.0000000 1.6094379 1
## 1348 1.3862944 0.0000000 1
## 1349 0.0000000 0.6931472 1
## 1350 2.0794415 0.0000000 1
## 1351 0.0000000 0.6931472 1
## 1352 1.9459101 0.0000000 1
## 1353 NA NA 1
## 1354 NA NA 1
## 1355 NA NA 1
## 1356 0.0000000 0.6931472 1
## 1357 0.0000000 0.6931472 1
## 1358 0.0000000 1.0986123 1
## 1359 0.0000000 1.0986123 1
## 1360 0.0000000 0.6931472 1
## 1361 0.0000000 0.6931472 1
## 1362 NA NA 1
## 1363 0.0000000 1.0986123 1
## 1364 0.0000000 0.6931472 1
## 1365 0.0000000 0.6931472 1
## 1366 0.0000000 1.0986123 1
## 1367 1.6094379 0.0000000 1
## 1368 0.0000000 0.6931472 1
## 1369 0.0000000 0.6931472 1
## 1370 0.0000000 0.6931472 1
## 1371 1.0986123 0.0000000 1
## 1372 0.0000000 0.6931472 1
## 1373 1.0986123 0.0000000 1
## 1374 1.7917595 0.0000000 1
## 1375 0.0000000 1.0986123 1
## 1376 1.0986123 0.0000000 1
## 1377 0.0000000 0.6931472 1
## 1378 0.0000000 1.6094379 1
## 1379 0.0000000 1.0986123 1
## 1380 0.0000000 1.0986123 1
## 1381 0.0000000 1.9459101 1
## 1382 0.0000000 1.9459101 1
## 1383 0.0000000 1.0986123 1
## 1384 2.0794415 0.0000000 1
## 1385 1.7917595 0.0000000 1
## 1386 1.0986123 0.0000000 1
## 1387 0.0000000 0.6931472 1
## 1388 NA NA 1
## 1389 2.1972246 0.0000000 1
## 1390 0.0000000 0.6931472 1
## 1391 0.0000000 0.6931472 1
## 1392 1.6094379 0.0000000 1
## 1393 0.0000000 1.0986123 1
## 1394 0.0000000 0.6931472 1
## 1395 0.0000000 1.0986123 1
## 1396 0.0000000 1.0986123 1
## 1397 1.6094379 0.0000000 1
## 1398 0.0000000 0.6931472 1
## 1399 1.0986123 0.0000000 1
## 1400 0.0000000 1.0986123 1
## 1401 0.0000000 0.6931472 1
## 1402 0.0000000 0.6931472 1
## 1403 0.0000000 1.6094379 1
## 1404 1.3862944 0.0000000 1
## 1405 0.0000000 0.6931472 1
## 1406 0.0000000 1.0986123 1
## 1407 0.0000000 1.3862944 1
## 1408 1.6094379 0.0000000 1
## 1409 0.0000000 1.3862944 1
## 1410 1.3862944 0.0000000 1
## 1411 1.0986123 0.0000000 1
## 1412 0.0000000 1.0986123 1
## 1413 0.0000000 0.0000000 1
## 1414 0.0000000 1.9459101 1
## 1415 NA NA 1
## 1416 0.0000000 0.6931472 1
## 1417 0.0000000 1.6094379 1
## 1418 NA NA 1
## 1419 1.7917595 0.0000000 1
## 1420 NA NA 1
## 1421 1.0986123 0.0000000 1
## 1422 1.0986123 0.0000000 1
## 1423 1.0986123 0.0000000 1
## 1424 0.0000000 0.6931472 1
## 1425 1.0986123 0.0000000 1
## 1426 0.0000000 0.6931472 1
## 1427 0.0000000 0.6931472 1
## 1428 1.6094379 0.0000000 1
## 1429 0.0000000 1.0986123 1
## 1430 1.0986123 0.0000000 1
## 1431 1.0986123 0.0000000 1
## 1432 0.0000000 0.6931472 1
## 1433 NA NA 1
## 1434 0.0000000 0.6931472 1
## 1435 0.0000000 0.6931472 1
## 1436 0.0000000 0.6931472 1
## 1437 0.0000000 0.6931472 1
## 1438 0.0000000 0.6931472 1
## 1439 0.0000000 0.6931472 1
## 1440 0.0000000 0.6931472 1
## 1441 0.0000000 0.6931472 1
## 1442 0.0000000 0.6931472 1
## 1443 0.0000000 0.6931472 1
## 1444 1.0986123 0.0000000 1
## 1445 0.0000000 0.6931472 1
## 1446 0.0000000 1.0986123 1
## 1447 0.0000000 0.6931472 1
## 1448 0.0000000 1.6094379 1
## 1449 1.7917595 0.0000000 1
## 1450 1.9459101 0.0000000 1
## 1451 1.0986123 0.0000000 1
## 1452 0.0000000 1.0986123 1
## 1453 0.0000000 0.6931472 1
## 1454 1.6094379 0.0000000 1
## 1455 1.6094379 0.0000000 1
## 1456 0.0000000 0.6931472 1
## 1457 1.0986123 0.0000000 1
## 1458 1.0986123 0.0000000 1
## 1459 1.0986123 0.0000000 1
## 1460 1.9459101 0.0000000 1
## 1461 0.0000000 0.0000000 1
## 1462 0.0000000 0.6931472 1
## 1463 0.0000000 0.6931472 1
## 1464 0.0000000 0.6931472 1
## 1465 0.0000000 0.6931472 1
## 1466 1.9459101 0.0000000 1
## 1467 0.0000000 0.6931472 1
## 1468 1.3862944 0.0000000 1
## 1469 1.7917595 0.0000000 1
## 1470 1.0986123 0.0000000 1
## 1471 0.6931472 0.0000000 1
## 1472 0.0000000 0.6931472 1
## 1473 1.0986123 0.0000000 1
## 1474 0.0000000 1.0986123 1
## 1475 0.0000000 1.6094379 1
## 1476 0.0000000 0.6931472 1
## 1477 0.0000000 0.6931472 1
## 1478 0.0000000 0.6931472 1
## 1479 1.0986123 0.0000000 1
## 1480 0.0000000 0.6931472 1
## 1481 0.0000000 0.6931472 1
## 1482 0.0000000 1.0986123 1
## 1483 1.0986123 0.0000000 1
## 1484 1.3862944 0.0000000 1
## 1485 0.0000000 0.6931472 1
## 1486 0.0000000 0.6931472 1
## 1487 1.6094379 0.0000000 1
## 1488 NA NA 1
## 1489 0.0000000 0.6931472 1
## 1490 NA NA 1
## 1491 NA NA 1
## 1492 NA NA 1
## 1493 1.0986123 0.0000000 1
## 1494 1.0986123 0.0000000 1
## 1495 1.9459101 0.0000000 1
## 1496 0.0000000 1.0986123 1
## 1497 1.7917595 0.0000000 1
## 1498 1.3862944 0.0000000 1
## 1499 0.0000000 1.0986123 1
## 1500 2.0794415 0.0000000 1
## 1501 0.0000000 0.6931472 1
## 1502 1.9459101 0.0000000 1
## 1503 1.7917595 0.0000000 1
## 1504 0.0000000 0.6931472 1
## 1505 1.9459101 0.0000000 1
## 1506 1.0986123 0.0000000 1
## 1507 0.0000000 1.0986123 1
## 1508 2.1972246 0.0000000 1
## 1509 1.7917595 0.0000000 1
## 1510 1.0986123 0.0000000 1
## 1511 0.0000000 0.0000000 1
## 1512 0.0000000 0.0000000 1
## 1513 0.0000000 0.0000000 1
## 1514 1.0986123 0.0000000 1
## 1515 1.9459101 0.0000000 1
## 1516 0.0000000 0.6931472 1
## 1517 1.0986123 0.0000000 1
## 1518 1.0986123 0.0000000 1
## 1519 1.0986123 0.0000000 1
## 1520 0.0000000 0.6931472 1
## 1521 0.0000000 1.0986123 1
## 1522 0.0000000 1.0986123 1
## 1523 0.0000000 1.0986123 1
## 1524 0.0000000 0.6931472 1
## 1525 0.0000000 0.6931472 1
## 1526 0.0000000 1.0986123 1
## 1527 0.0000000 1.0986123 1
## 1528 1.0986123 0.0000000 1
## 1529 0.0000000 0.6931472 1
## 1530 0.0000000 1.0986123 1
## 1531 0.0000000 0.6931472 1
## 1532 0.0000000 0.0000000 1
## 1533 0.0000000 0.6931472 1
## 1534 1.0986123 0.0000000 1
## 1535 0.0000000 0.6931472 1
## 1536 1.0986123 0.0000000 1
## 1537 0.0000000 1.0986123 1
## 1538 0.0000000 0.6931472 1
## bookings_since_2019
## 1 530
## 2 434
## 3 406
## 4 398
## 5 354
## 6 352
## 7 334
## 8 326
## 9 298
## 10 288
## 11 282
## 12 270
## 13 266
## 14 256
## 15 248
## 16 244
## 17 240
## 18 236
## 19 236
## 20 220
## 21 220
## 22 208
## 23 206
## 24 206
## 25 200
## 26 192
## 27 186
## 28 184
## 29 184
## 30 182
## 31 182
## 32 178
## 33 178
## 34 178
## 35 174
## 36 166
## 37 166
## 38 166
## 39 162
## 40 162
## 41 160
## 42 158
## 43 156
## 44 156
## 45 154
## 46 154
## 47 152
## 48 152
## 49 150
## 50 150
## 51 144
## 52 140
## 53 138
## 54 138
## 55 136
## 56 136
## 57 136
## 58 134
## 59 132
## 60 132
## 61 132
## 62 132
## 63 130
## 64 126
## 65 124
## 66 124
## 67 124
## 68 124
## 69 124
## 70 122
## 71 120
## 72 120
## 73 120
## 74 120
## 75 118
## 76 118
## 77 118
## 78 114
## 79 114
## 80 114
## 81 114
## 82 114
## 83 112
## 84 112
## 85 112
## 86 112
## 87 110
## 88 110
## 89 110
## 90 108
## 91 108
## 92 106
## 93 106
## 94 106
## 95 106
## 96 106
## 97 106
## 98 106
## 99 106
## 100 104
## 101 104
## 102 102
## 103 102
## 104 100
## 105 100
## 106 100
## 107 98
## 108 98
## 109 98
## 110 96
## 111 96
## 112 94
## 113 94
## 114 94
## 115 94
## 116 94
## 117 94
## 118 94
## 119 94
## 120 94
## 121 92
## 122 92
## 123 92
## 124 92
## 125 90
## 126 90
## 127 90
## 128 90
## 129 90
## 130 90
## 131 90
## 132 90
## 133 88
## 134 88
## 135 86
## 136 86
## 137 86
## 138 86
## 139 84
## 140 84
## 141 84
## 142 84
## 143 84
## 144 84
## 145 84
## 146 82
## 147 82
## 148 82
## 149 82
## 150 82
## 151 82
## 152 80
## 153 80
## 154 80
## 155 80
## 156 80
## 157 78
## 158 78
## 159 78
## 160 76
## 161 76
## 162 76
## 163 76
## 164 74
## 165 74
## 166 74
## 167 74
## 168 74
## 169 72
## 170 72
## 171 72
## 172 72
## 173 72
## 174 72
## 175 70
## 176 70
## 177 70
## 178 70
## 179 70
## 180 70
## 181 68
## 182 68
## 183 68
## 184 68
## 185 68
## 186 68
## 187 68
## 188 66
## 189 66
## 190 66
## 191 66
## 192 66
## 193 66
## 194 66
## 195 66
## 196 66
## 197 64
## 198 64
## 199 64
## 200 64
## 201 64
## 202 64
## 203 64
## 204 64
## 205 64
## 206 62
## 207 62
## 208 62
## 209 62
## 210 62
## 211 60
## 212 60
## 213 60
## 214 60
## 215 60
## 216 60
## 217 60
## 218 60
## 219 58
## 220 58
## 221 58
## 222 58
## 223 56
## 224 56
## 225 56
## 226 56
## 227 56
## 228 56
## 229 56
## 230 56
## 231 54
## 232 54
## 233 54
## 234 54
## 235 54
## 236 54
## 237 52
## 238 52
## 239 52
## 240 52
## 241 52
## 242 52
## 243 52
## 244 52
## 245 52
## 246 52
## 247 52
## 248 52
## 249 50
## 250 50
## 251 50
## 252 50
## 253 50
## 254 50
## 255 50
## 256 50
## 257 50
## 258 50
## 259 50
## 260 50
## 261 50
## 262 50
## 263 48
## 264 48
## 265 48
## 266 48
## 267 48
## 268 48
## 269 48
## 270 48
## 271 48
## 272 48
## 273 46
## 274 46
## 275 46
## 276 46
## 277 46
## 278 46
## 279 46
## 280 46
## 281 46
## 282 46
## 283 46
## 284 46
## 285 46
## 286 46
## 287 46
## 288 46
## 289 46
## 290 46
## 291 44
## 292 44
## 293 44
## 294 44
## 295 44
## 296 44
## 297 44
## 298 44
## 299 44
## 300 44
## 301 44
## 302 44
## 303 42
## 304 42
## 305 42
## 306 42
## 307 42
## 308 42
## 309 42
## 310 42
## 311 42
## 312 42
## 313 42
## 314 42
## 315 42
## 316 42
## 317 42
## 318 42
## 319 42
## 320 42
## 321 40
## 322 40
## 323 40
## 324 40
## 325 40
## 326 40
## 327 40
## 328 40
## 329 40
## 330 40
## 331 38
## 332 38
## 333 38
## 334 38
## 335 38
## 336 38
## 337 38
## 338 38
## 339 38
## 340 38
## 341 38
## 342 36
## 343 36
## 344 36
## 345 36
## 346 36
## 347 36
## 348 36
## 349 36
## 350 36
## 351 36
## 352 36
## 353 34
## 354 34
## 355 34
## 356 34
## 357 34
## 358 34
## 359 34
## 360 34
## 361 34
## 362 34
## 363 34
## 364 34
## 365 34
## 366 34
## 367 34
## 368 34
## 369 32
## 370 32
## 371 32
## 372 32
## 373 32
## 374 32
## 375 32
## 376 32
## 377 32
## 378 32
## 379 32
## 380 32
## 381 32
## 382 32
## 383 32
## 384 32
## 385 32
## 386 32
## 387 32
## 388 32
## 389 32
## 390 30
## 391 30
## 392 30
## 393 30
## 394 30
## 395 30
## 396 30
## 397 30
## 398 30
## 399 30
## 400 30
## 401 30
## 402 30
## 403 30
## 404 30
## 405 30
## 406 30
## 407 30
## 408 30
## 409 30
## 410 30
## 411 30
## 412 30
## 413 28
## 414 28
## 415 28
## 416 28
## 417 28
## 418 28
## 419 28
## 420 28
## 421 28
## 422 28
## 423 28
## 424 28
## 425 28
## 426 28
## 427 28
## 428 28
## 429 28
## 430 28
## 431 28
## 432 28
## 433 28
## 434 28
## 435 28
## 436 28
## 437 28
## 438 28
## 439 28
## 440 28
## 441 26
## 442 26
## 443 26
## 444 26
## 445 26
## 446 26
## 447 26
## 448 26
## 449 26
## 450 26
## 451 26
## 452 26
## 453 26
## 454 26
## 455 26
## 456 26
## 457 26
## 458 26
## 459 26
## 460 26
## 461 26
## 462 26
## 463 26
## 464 26
## 465 26
## 466 24
## 467 24
## 468 24
## 469 24
## 470 24
## 471 24
## 472 24
## 473 24
## 474 24
## 475 24
## 476 24
## 477 24
## 478 24
## 479 24
## 480 24
## 481 24
## 482 24
## 483 24
## 484 24
## 485 24
## 486 24
## 487 24
## 488 24
## 489 24
## 490 24
## 491 24
## 492 24
## 493 24
## 494 24
## 495 24
## 496 24
## 497 24
## 498 22
## 499 22
## 500 22
## 501 22
## 502 22
## 503 22
## 504 22
## 505 22
## 506 22
## 507 22
## 508 22
## 509 22
## 510 22
## 511 22
## 512 22
## 513 22
## 514 22
## 515 22
## 516 22
## 517 22
## 518 22
## 519 22
## 520 22
## 521 22
## 522 22
## 523 22
## 524 22
## 525 22
## 526 22
## 527 22
## 528 22
## 529 20
## 530 20
## 531 20
## 532 20
## 533 20
## 534 20
## 535 20
## 536 20
## 537 20
## 538 20
## 539 20
## 540 20
## 541 20
## 542 20
## 543 20
## 544 20
## 545 20
## 546 20
## 547 20
## 548 20
## 549 20
## 550 20
## 551 20
## 552 20
## 553 20
## 554 20
## 555 20
## 556 20
## 557 20
## 558 20
## 559 20
## 560 20
## 561 20
## 562 20
## 563 20
## 564 18
## 565 18
## 566 18
## 567 18
## 568 18
## 569 18
## 570 18
## 571 18
## 572 18
## 573 18
## 574 18
## 575 18
## 576 18
## 577 18
## 578 18
## 579 18
## 580 18
## 581 18
## 582 18
## 583 18
## 584 18
## 585 18
## 586 18
## 587 18
## 588 18
## 589 18
## 590 18
## 591 18
## 592 16
## 593 16
## 594 16
## 595 16
## 596 16
## 597 16
## 598 16
## 599 16
## 600 16
## 601 16
## 602 16
## 603 16
## 604 16
## 605 16
## 606 16
## 607 16
## 608 16
## 609 16
## 610 16
## 611 16
## 612 16
## 613 16
## 614 16
## 615 16
## 616 16
## 617 16
## 618 16
## 619 16
## 620 16
## 621 16
## 622 16
## 623 16
## 624 16
## 625 16
## 626 16
## 627 16
## 628 16
## 629 14
## 630 14
## 631 14
## 632 14
## 633 14
## 634 14
## 635 14
## 636 14
## 637 14
## 638 14
## 639 14
## 640 14
## 641 14
## 642 14
## 643 14
## 644 14
## 645 14
## 646 14
## 647 14
## 648 14
## 649 14
## 650 14
## 651 14
## 652 14
## 653 14
## 654 14
## 655 14
## 656 14
## 657 14
## 658 14
## 659 14
## 660 14
## 661 14
## 662 14
## 663 14
## 664 14
## 665 14
## 666 14
## 667 14
## 668 14
## 669 14
## 670 14
## 671 14
## 672 14
## 673 14
## 674 14
## 675 14
## 676 14
## 677 14
## 678 14
## 679 14
## 680 12
## 681 12
## 682 12
## 683 12
## 684 12
## 685 12
## 686 12
## 687 12
## 688 12
## 689 12
## 690 12
## 691 12
## 692 12
## 693 12
## 694 12
## 695 12
## 696 12
## 697 12
## 698 12
## 699 12
## 700 12
## 701 12
## 702 12
## 703 12
## 704 12
## 705 12
## 706 12
## 707 12
## 708 12
## 709 12
## 710 12
## 711 12
## 712 12
## 713 12
## 714 12
## 715 12
## 716 12
## 717 12
## 718 12
## 719 12
## 720 12
## 721 12
## 722 12
## 723 12
## 724 12
## 725 12
## 726 12
## 727 12
## 728 12
## 729 12
## 730 12
## 731 12
## 732 12
## 733 12
## 734 12
## 735 12
## 736 12
## 737 12
## 738 12
## 739 12
## 740 12
## 741 12
## 742 12
## 743 12
## 744 10
## 745 10
## 746 10
## 747 10
## 748 10
## 749 10
## 750 10
## 751 10
## 752 10
## 753 10
## 754 10
## 755 10
## 756 10
## 757 10
## 758 10
## 759 10
## 760 10
## 761 10
## 762 10
## 763 10
## 764 10
## 765 10
## 766 10
## 767 10
## 768 10
## 769 10
## 770 10
## 771 10
## 772 10
## 773 10
## 774 10
## 775 10
## 776 10
## 777 10
## 778 10
## 779 10
## 780 10
## 781 10
## 782 10
## 783 10
## 784 10
## 785 10
## 786 10
## 787 10
## 788 10
## 789 10
## 790 10
## 791 10
## 792 10
## 793 10
## 794 10
## 795 10
## 796 10
## 797 10
## 798 10
## 799 10
## 800 10
## 801 10
## 802 10
## 803 10
## 804 10
## 805 10
## 806 10
## 807 10
## 808 10
## 809 10
## 810 10
## 811 10
## 812 10
## 813 10
## 814 8
## 815 8
## 816 8
## 817 8
## 818 8
## 819 8
## 820 8
## 821 8
## 822 8
## 823 8
## 824 8
## 825 8
## 826 8
## 827 8
## 828 8
## 829 8
## 830 8
## 831 8
## 832 8
## 833 8
## 834 8
## 835 8
## 836 8
## 837 8
## 838 8
## 839 8
## 840 8
## 841 8
## 842 8
## 843 8
## 844 8
## 845 8
## 846 8
## 847 8
## 848 8
## 849 8
## 850 8
## 851 8
## 852 8
## 853 8
## 854 8
## 855 8
## 856 8
## 857 8
## 858 8
## 859 8
## 860 8
## 861 8
## 862 8
## 863 8
## 864 8
## 865 8
## 866 8
## 867 8
## 868 8
## 869 8
## 870 8
## 871 8
## 872 8
## 873 8
## 874 8
## 875 8
## 876 8
## 877 8
## 878 8
## 879 8
## 880 8
## 881 8
## 882 8
## 883 8
## 884 8
## 885 8
## 886 8
## 887 8
## 888 8
## 889 8
## 890 8
## 891 8
## 892 8
## 893 8
## 894 8
## 895 8
## 896 8
## 897 8
## 898 8
## 899 8
## 900 8
## 901 8
## 902 8
## 903 8
## 904 6
## 905 6
## 906 6
## 907 6
## 908 6
## 909 6
## 910 6
## 911 6
## 912 6
## 913 6
## 914 6
## 915 6
## 916 6
## 917 6
## 918 6
## 919 6
## 920 6
## 921 6
## 922 6
## 923 6
## 924 6
## 925 6
## 926 6
## 927 6
## 928 6
## 929 6
## 930 6
## 931 6
## 932 6
## 933 6
## 934 6
## 935 6
## 936 6
## 937 6
## 938 6
## 939 6
## 940 6
## 941 6
## 942 6
## 943 6
## 944 6
## 945 6
## 946 6
## 947 6
## 948 6
## 949 6
## 950 6
## 951 6
## 952 6
## 953 6
## 954 6
## 955 6
## 956 6
## 957 6
## 958 6
## 959 6
## 960 6
## 961 6
## 962 6
## 963 6
## 964 6
## 965 6
## 966 6
## 967 6
## 968 6
## 969 6
## 970 6
## 971 6
## 972 6
## 973 6
## 974 6
## 975 6
## 976 6
## 977 6
## 978 6
## 979 6
## 980 6
## 981 6
## 982 6
## 983 6
## 984 6
## 985 6
## 986 6
## 987 6
## 988 6
## 989 6
## 990 6
## 991 6
## 992 6
## 993 6
## 994 6
## 995 6
## 996 6
## 997 6
## 998 6
## 999 6
## 1000 6
## 1001 6
## 1002 6
## 1003 6
## 1004 6
## 1005 6
## 1006 6
## 1007 6
## 1008 6
## 1009 6
## 1010 6
## 1011 6
## 1012 6
## 1013 6
## 1014 6
## 1015 6
## 1016 6
## 1017 6
## 1018 6
## 1019 6
## 1020 6
## 1021 6
## 1022 6
## 1023 6
## 1024 6
## 1025 6
## 1026 6
## 1027 6
## 1028 6
## 1029 4
## 1030 4
## 1031 4
## 1032 4
## 1033 4
## 1034 4
## 1035 4
## 1036 4
## 1037 4
## 1038 4
## 1039 4
## 1040 4
## 1041 4
## 1042 4
## 1043 4
## 1044 4
## 1045 4
## 1046 4
## 1047 4
## 1048 4
## 1049 4
## 1050 4
## 1051 4
## 1052 4
## 1053 4
## 1054 4
## 1055 4
## 1056 4
## 1057 4
## 1058 4
## 1059 4
## 1060 4
## 1061 4
## 1062 4
## 1063 4
## 1064 4
## 1065 4
## 1066 4
## 1067 4
## 1068 4
## 1069 4
## 1070 4
## 1071 4
## 1072 4
## 1073 4
## 1074 4
## 1075 4
## 1076 4
## 1077 4
## 1078 4
## 1079 4
## 1080 4
## 1081 4
## 1082 4
## 1083 4
## 1084 4
## 1085 4
## 1086 4
## 1087 4
## 1088 4
## 1089 4
## 1090 4
## 1091 4
## 1092 4
## 1093 4
## 1094 4
## 1095 4
## 1096 4
## 1097 4
## 1098 4
## 1099 4
## 1100 4
## 1101 4
## 1102 4
## 1103 4
## 1104 4
## 1105 4
## 1106 4
## 1107 4
## 1108 4
## 1109 4
## 1110 4
## 1111 4
## 1112 4
## 1113 4
## 1114 4
## 1115 4
## 1116 4
## 1117 4
## 1118 4
## 1119 4
## 1120 4
## 1121 4
## 1122 4
## 1123 4
## 1124 4
## 1125 4
## 1126 4
## 1127 4
## 1128 4
## 1129 4
## 1130 4
## 1131 4
## 1132 4
## 1133 4
## 1134 4
## 1135 4
## 1136 4
## 1137 4
## 1138 4
## 1139 4
## 1140 4
## 1141 4
## 1142 4
## 1143 4
## 1144 4
## 1145 4
## 1146 4
## 1147 4
## 1148 4
## 1149 4
## 1150 4
## 1151 4
## 1152 4
## 1153 4
## 1154 4
## 1155 4
## 1156 4
## 1157 4
## 1158 4
## 1159 4
## 1160 4
## 1161 4
## 1162 4
## 1163 4
## 1164 4
## 1165 4
## 1166 4
## 1167 4
## 1168 4
## 1169 4
## 1170 4
## 1171 4
## 1172 4
## 1173 4
## 1174 4
## 1175 4
## 1176 4
## 1177 4
## 1178 4
## 1179 4
## 1180 4
## 1181 4
## 1182 4
## 1183 4
## 1184 4
## 1185 4
## 1186 4
## 1187 4
## 1188 4
## 1189 4
## 1190 4
## 1191 4
## 1192 4
## 1193 4
## 1194 4
## 1195 4
## 1196 4
## 1197 4
## 1198 4
## 1199 4
## 1200 4
## 1201 4
## 1202 4
## 1203 4
## 1204 4
## 1205 4
## 1206 4
## 1207 4
## 1208 4
## 1209 4
## 1210 4
## 1211 4
## 1212 4
## 1213 4
## 1214 4
## 1215 4
## 1216 4
## 1217 4
## 1218 4
## 1219 4
## 1220 4
## 1221 4
## 1222 4
## 1223 4
## 1224 4
## 1225 4
## 1226 4
## 1227 4
## 1228 4
## 1229 4
## 1230 4
## 1231 4
## 1232 4
## 1233 4
## 1234 4
## 1235 4
## 1236 4
## 1237 4
## 1238 4
## 1239 4
## 1240 4
## 1241 4
## 1242 4
## 1243 4
## 1244 4
## 1245 4
## 1246 4
## 1247 4
## 1248 4
## 1249 4
## 1250 4
## 1251 4
## 1252 4
## 1253 4
## 1254 4
## 1255 4
## 1256 4
## 1257 4
## 1258 4
## 1259 4
## 1260 4
## 1261 4
## 1262 4
## 1263 4
## 1264 4
## 1265 4
## 1266 4
## 1267 4
## 1268 4
## 1269 4
## 1270 4
## 1271 4
## 1272 4
## 1273 4
## 1274 4
## 1275 2
## 1276 2
## 1277 2
## 1278 2
## 1279 2
## 1280 2
## 1281 2
## 1282 2
## 1283 2
## 1284 2
## 1285 2
## 1286 2
## 1287 2
## 1288 2
## 1289 2
## 1290 2
## 1291 2
## 1292 2
## 1293 2
## 1294 2
## 1295 2
## 1296 2
## 1297 2
## 1298 2
## 1299 2
## 1300 2
## 1301 2
## 1302 2
## 1303 2
## 1304 2
## 1305 2
## 1306 2
## 1307 2
## 1308 2
## 1309 2
## 1310 2
## 1311 2
## 1312 2
## 1313 2
## 1314 2
## 1315 2
## 1316 2
## 1317 2
## 1318 2
## 1319 2
## 1320 2
## 1321 2
## 1322 2
## 1323 2
## 1324 2
## 1325 2
## 1326 2
## 1327 2
## 1328 2
## 1329 2
## 1330 2
## 1331 2
## 1332 2
## 1333 2
## 1334 2
## 1335 2
## 1336 2
## 1337 2
## 1338 2
## 1339 2
## 1340 2
## 1341 2
## 1342 2
## 1343 2
## 1344 2
## 1345 2
## 1346 2
## 1347 2
## 1348 2
## 1349 2
## 1350 2
## 1351 2
## 1352 2
## 1353 2
## 1354 2
## 1355 2
## 1356 2
## 1357 2
## 1358 2
## 1359 2
## 1360 2
## 1361 2
## 1362 2
## 1363 2
## 1364 2
## 1365 2
## 1366 2
## 1367 2
## 1368 2
## 1369 2
## 1370 2
## 1371 2
## 1372 2
## 1373 2
## 1374 2
## 1375 2
## 1376 2
## 1377 2
## 1378 2
## 1379 2
## 1380 2
## 1381 2
## 1382 2
## 1383 2
## 1384 2
## 1385 2
## 1386 2
## 1387 2
## 1388 2
## 1389 2
## 1390 2
## 1391 2
## 1392 2
## 1393 2
## 1394 2
## 1395 2
## 1396 2
## 1397 2
## 1398 2
## 1399 2
## 1400 2
## 1401 2
## 1402 2
## 1403 2
## 1404 2
## 1405 2
## 1406 2
## 1407 2
## 1408 2
## 1409 2
## 1410 2
## 1411 2
## 1412 2
## 1413 2
## 1414 2
## 1415 2
## 1416 2
## 1417 2
## 1418 2
## 1419 2
## 1420 2
## 1421 2
## 1422 2
## 1423 2
## 1424 2
## 1425 2
## 1426 2
## 1427 2
## 1428 2
## 1429 2
## 1430 2
## 1431 2
## 1432 2
## 1433 2
## 1434 2
## 1435 2
## 1436 2
## 1437 2
## 1438 2
## 1439 2
## 1440 2
## 1441 2
## 1442 2
## 1443 2
## 1444 2
## 1445 2
## 1446 2
## 1447 2
## 1448 2
## 1449 2
## 1450 2
## 1451 2
## 1452 2
## 1453 2
## 1454 2
## 1455 2
## 1456 2
## 1457 2
## 1458 2
## 1459 2
## 1460 2
## 1461 2
## 1462 2
## 1463 2
## 1464 2
## 1465 2
## 1466 2
## 1467 2
## 1468 2
## 1469 2
## 1470 2
## 1471 2
## 1472 2
## 1473 2
## 1474 2
## 1475 2
## 1476 2
## 1477 2
## 1478 2
## 1479 2
## 1480 2
## 1481 2
## 1482 2
## 1483 2
## 1484 2
## 1485 2
## 1486 2
## 1487 2
## 1488 2
## 1489 2
## 1490 2
## 1491 2
## 1492 2
## 1493 2
## 1494 2
## 1495 2
## 1496 2
## 1497 2
## 1498 2
## 1499 2
## 1500 2
## 1501 2
## 1502 2
## 1503 2
## 1504 2
## 1505 2
## 1506 2
## 1507 2
## 1508 2
## 1509 2
## 1510 2
## 1511 2
## 1512 2
## 1513 2
## 1514 2
## 1515 2
## 1516 2
## 1517 2
## 1518 2
## 1519 2
## 1520 2
## 1521 2
## 1522 2
## 1523 2
## 1524 2
## 1525 2
## 1526 2
## 1527 2
## 1528 2
## 1529 2
## 1530 2
## 1531 2
## 1532 2
## 1533 2
## 1534 2
## 1535 2
## 1536 2
## 1537 2
## 1538 2
## [ reached 'max' / getOption("max.print") -- omitted 187 rows ]
list_after_2019.sin %>% filter(Property_Type == "Boat") %>% arrange (desc(reviews_since_2019))
## id Price Reviews Beds Baths Capacity Monthly_Reviews Property_Type
## 1 31527262 344 217 1 NA 2 6.24 Boat
## 2 37907711 199 177 3 NA 4 6.23 Boat
## 3 20247516 2500 55 4 NA 5 1.05 Boat
## 4 50433019 288 7 2 NA 5 2.50 Boat
## Room_Type Rating Neighbourhood host_response_time host_response_rate
## 1 Entire home/apt 4.94 Southern Islands within an hour <NA>
## 2 Entire home/apt 4.49 Punggol within an hour <NA>
## 3 Entire home/apt 4.74 Bukit Merah within a day <NA>
## 4 Entire home/apt 5.00 Punggol within a few hours <NA>
## host_acceptance_rate host_Superhost latitude longitude
## 1 1.00 1 1.24535 103.8387
## 2 0.96 0 1.41585 103.9001
## 3 0.98 0 1.26520 103.8190
## 4 0.92 0 1.41480 103.8986
## amenities
## 1 Toaster,Sound system,Hangers,Bed linens,Hot water kettle,Coffee maker,Carbon monoxide alarm,Hair dryer,TV,Outdoor furniture,Dining table,Security cameras on property,Outdoor dining area,Private entrance,Refrigerator,Microwave,Waterfront,Wifi,Smoke alarm,Shampoo,Portable fans,Paid parking off premises,Hot water,Mini fridge,Essentials,First aid kit,Dishes and silverware,Air conditioning,Shower gel,Fire extinguisher
## 2 Sound system,Hangers,Bed linens,Coffee maker,Hair dryer,TV,Paid parking on premises,Lockbox,Room-darkening shades,Security cameras on property,Long term stays allowed,Patio or balcony,Pour-over coffee,Microwave,Waterfront,Wifi,Smoke alarm,Shampoo,Extra pillows and blankets,Hot water,Mini fridge,Essentials,Kitchen,EV charger,First aid kit,Air conditioning,Shower gel,Fire extinguisher
## 3 Shampoo,Essentials,Long term stays allowed,Carbon monoxide alarm,Hair dryer,Host greets you,Hot water,Pool,TV,Paid parking on premises,Air conditioning,Smoke alarm,Fire extinguisher
## 4 Toaster,Bidet,Sound system,Rice maker,Hangers,Bed linens,Hot water kettle,Cooking basics,Freezer,Washer,Bathtub,Hair dryer,TV,Outdoor furniture,Dining table,Dedicated workspace,Free parking on premises,Lockbox,Cleaning products,Clothing storage: closet,dresser,and wardrobe,Long term stays allowed,Outdoor dining area,Private entrance,Pocket wifi,Refrigerator,Waterfront,Wifi,Smoke alarm,Induction stove,Dishwasher,Extra pillows and blankets,Portable fans,Hot water,Mini fridge,Iron,Essentials,Boat slip,Kitchen,EV charger,First aid kit,Air conditioning,Dishes and silverware,Fire extinguisher
## last_review no_of_am Amenities_Wifi Amenities_Shampoo Amenities_Kitchen
## 1 2021-09-15 30 1 1 0
## 2 2021-12-12 28 1 1 1
## 3 2020-07-28 13 0 1 0
## 4 2021-12-07 45 1 0 1
## Amenities_Long_Term Amenities_Washer Amenities_HairDryer Amenities_HotWater
## 1 0 0 1 1
## 2 1 0 1 1
## 3 1 0 1 1
## 4 1 1 1 1
## Amenities_TV Amenities_AC
## 1 1 1
## 2 1 1
## 3 1 1
## 4 1 1
## host_verifications
## 1 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 2 'email','phone','jumio','offline_government_id','selfie','government_id','identity_manual'
## 3 'email','phone','reviews','jumio','selfie','government_id','identity_manual'
## 4 'phone'
## hv_email hv_phone hv_facebook hv_reviews hv_manual_offline hv_manual_jumio
## 1 1 1 0 0 0 1
## 2 1 1 0 0 0 1
## 3 1 1 0 1 0 1
## 4 0 1 0 0 0 0
## hv_manual_off_gov hv_manual_gov hv_manual_work_email no_of_vf
## 1 1 1 0 7
## 2 1 1 0 7
## 3 0 1 0 7
## 4 0 0 0 1
## host_response_hours 1 0 host_response_day host_response_few_days
## 1 NA 1 0 NA NA
## 2 NA 1 0 NA NA
## 3 NA 1 0 NA NA
## 4 NA 1 0 NA NA
## Days_since_last_review Capacity_Sqr Beds_Sqr Baths_Sqr ln_Price ln_Beds
## 1 107 4 1 NA 5.843544 0.6931472
## 2 19 16 9 NA 5.298317 1.3862944
## 3 521 25 16 NA 7.824446 1.6094379
## 4 24 25 4 NA 5.666427 1.0986123
## ln_Baths ln_Capacity ln_Rating Shared_ind House_ind Private_ind
## 1 NA 1.098612 1.781709 0 1 0
## 2 NA 1.609438 1.702928 0 1 0
## 3 NA 1.791759 1.747459 0 1 0
## 4 NA 1.791759 1.791759 0 1 0
## Capacity_x_Shared_ind H_Cap P_Cap ln_Capacity_x_Shared_ind
## 1 0 2 0 0
## 2 0 4 0 0
## 3 0 5 0 0
## 4 0 5 0 0
## ln_Capacity_x_House_ind ln_Capacity_x_Private_ind reviews_since_2019
## 1 1.098612 0 217
## 2 1.609438 0 177
## 3 1.791759 0 26
## 4 1.791759 0 7
## bookings_since_2019
## 1 434
## 2 354
## 3 52
## 4 14
list_after_2019.sin %>% group_by(id, Property_Type, bookings_since_2019) %>% summarise(percent_of_total = bookings_since_2019*100/sum(list_after_2019.sin$bookings_since_2019)) %>% filter(Property_Type == "Boat") %>% arrange (desc(bookings_since_2019))
## `summarise()` has grouped output by 'id', 'Property_Type'. You can override
## using the `.groups` argument.
## # A tibble: 4 × 4
## # Groups: id, Property_Type [4]
## id Property_Type bookings_since_2019 percent_of_total
## <int> <chr> <dbl> <dbl>
## 1 31527262 Boat 434 0.967
## 2 37907711 Boat 354 0.788
## 3 20247516 Boat 52 0.116
## 4 50433019 Boat 14 0.0312
There are four boats listed on Airbnb Singapore. Together, they form roughly 2% of all bookings since 2019.
list_of_vars = c("reviews_since_2019", "Rating", "Reviews", "Beds", "Capacity", "Monthly_Reviews","host_acceptance_rate",
"host_Superhost", "no_of_am","Amenities_Wifi","Amenities_Shampoo","Amenities_Kitchen","Amenities_Long_Term","Amenities_Washer",
"Amenities_HairDryer", "Amenities_HotWater", "Amenities_TV", "Amenities_AC", "hv_email", "hv_phone", "hv_facebook", "hv_reviews",
"hv_manual_offline", "hv_manual_jumio", "hv_manual_off_gov", "hv_manual_gov", "hv_manual_work_email", "no_of_vf", "Days_since_last_review",
"Shared_ind", "House_ind", "Private_ind", "reviews_since_2019","bookings_since_2019")
list_after_2019.sin %>% select_(.dots = c(list_of_vars), "Price")
## Warning: `select_()` was deprecated in dplyr 0.7.0.
## Please use `select()` instead.
## This warning is displayed once every 8 hours.
## Call `lifecycle::last_lifecycle_warnings()` to see where this warning was generated.
## reviews_since_2019 Rating Reviews Beds Capacity Monthly_Reviews
## 1 9 4.44 20 3 6 0.16
## 2 4 4.16 24 1 3 0.19
## 3 19 4.41 47 2 3 0.36
## 4 5 4.39 20 1 1 0.19
## 5 3 4.55 13 1 1 0.11
## 6 17 4.43 133 1 2 1.10
## 7 2 4.20 14 1 1 0.12
## 8 2 4.67 10 1 1 0.10
## 9 24 4.58 58 1 1 0.49
## 10 15 4.43 81 1 2 0.81
## 11 21 4.39 165 1 2 1.40
## 12 26 4.82 80 1 2 0.89
## 13 1 4.63 72 1 4 0.65
## 14 5 4.73 70 1 2 0.64
## 15 1 4.00 2 1 1 0.02
## 16 3 4.14 14 1 1 0.14
## 17 3 4.78 40 2 4 0.37
## 18 4 4.54 71 1 2 0.65
## 19 1 5.00 2 2 2 0.03
## 20 53 4.87 247 1 1 2.32
## 21 149 4.84 255 1 2 2.57
## 22 7 4.42 45 4 5 0.46
## 23 13 4.79 39 1 2 0.40
## 24 10 4.58 36 2 3 0.37
## 25 10 4.90 91 2 5 0.88
## 26 1 4.14 9 1 1 0.10
## 27 3 4.40 5 1 1 0.11
## 28 37 4.56 150 1 1 1.52
## 29 22 4.67 93 1 1 0.97
## 30 10 4.79 28 1 2 0.29
## 31 2 4.51 77 1 4 0.81
## 32 96 4.93 369 3 5 3.81
## 33 10 4.79 14 1 1 0.16
## 34 25 4.06 50 1 2 0.53
## 35 1 3.00 2 4 4 0.05
## 36 20 4.75 61 1 2 0.66
## 37 11 4.54 13 1 1 0.18
## 38 2 4.89 9 1 1 0.10
## 39 2 5.00 7 1 1 0.08
## 40 1 4.78 18 12 12 0.20
## 41 13 4.85 13 1 1 0.46
## 42 2 4.00 2 1 1 0.06
## 43 3 4.51 49 4 4 0.56
## 44 5 4.85 26 1 2 0.30
## 45 14 4.69 81 1 2 0.91
## 46 19 4.85 67 1 2 0.75
## 47 1 5.00 2 1 1 0.02
## 48 10 4.77 35 3 4 0.40
## 49 10 4.40 49 12 12 0.57
## 50 6 4.35 21 12 12 0.24
## 51 1 4.79 14 1 2 0.16
## 52 62 4.59 312 3 5 3.57
## 53 20 4.75 59 1 2 0.68
## 54 21 4.79 66 1 2 0.76
## 55 46 4.41 133 1 2 1.53
## 56 62 4.21 210 1 2 2.42
## 57 4 4.38 8 1 2 0.09
## 58 42 4.79 66 1 8 0.76
## 59 1 5.00 5 1 3 0.06
## 60 4 4.69 16 2 3 0.19
## 61 91 4.77 124 1 2 1.43
## 62 5 4.25 16 1 2 0.23
## 63 163 4.81 226 1 2 2.62
## 64 26 4.71 62 1 2 0.75
## 65 6 4.73 77 1 2 0.90
## 66 17 4.33 87 1 3 1.01
## 67 6 4.38 9 6 4 0.11
## 68 6 4.63 27 1 2 0.31
## 69 21 4.75 96 1 2 1.12
## 70 15 4.20 50 1 2 0.59
## 71 18 4.27 49 1 2 0.58
## 72 45 4.57 102 1 2 1.20
## 73 10 4.62 26 4 5 0.31
## 74 24 4.80 124 8 15 1.46
## 75 7 4.78 24 1 2 0.29
## 76 2 3.67 4 1 3 0.10
## 77 41 4.44 168 2 3 1.99
## 78 1 4.83 6 1 2 0.08
## 79 68 4.72 119 1 2 1.43
## 80 7 4.55 22 1 2 0.26
## 81 27 4.20 81 1 2 0.96
## 82 4 4.80 5 1 1 0.07
## 83 18 4.72 78 2 4 0.96
## 84 7 4.78 9 1 2 0.11
## 85 24 4.13 67 1 2 0.80
## 86 7 4.82 12 1 2 0.15
## 87 4 4.70 12 1 2 0.15
## 88 100 4.69 251 1 2 3.02
## 89 69 4.73 205 1 2 2.51
## 90 91 4.75 294 1 2 3.54
## 91 1 4.33 3 1 3 0.06
## 92 4 4.86 7 1 3 0.10
## 93 6 4.91 11 1 2 0.15
## 94 60 4.77 266 3 7 3.22
## 95 45 4.80 209 3 6 2.55
## 96 11 4.67 18 1 1 0.22
## 97 6 4.59 112 1 2 1.38
## 98 9 4.63 69 1 1 0.86
## 99 4 4.76 42 1 2 0.51
## 100 33 4.86 151 1 7 1.91
## 101 38 4.82 286 1 5 3.53
## 102 44 4.84 296 1 3 3.62
## 103 12 4.43 23 1 2 0.30
## 104 40 4.80 212 3 3 2.60
## 105 45 4.60 77 2 4 0.97
## 106 36 4.83 247 1 6 3.04
## 107 35 4.82 147 1 2 1.81
## 108 16 4.68 130 1 2 1.60
## 109 11 4.73 66 1 2 0.81
## 110 22 4.61 66 NA 2 0.84
## 111 14 4.65 31 1 2 0.38
## 112 8 4.82 33 1 1 0.41
## 113 11 4.74 86 1 2 1.08
## 114 12 4.62 17 3 3 0.22
## 115 1 5.00 1 1 2 0.05
## 116 1 4.90 10 1 1 0.13
## 117 13 4.73 33 1 2 0.42
## 118 3 4.80 11 2 4 0.15
## 119 15 4.63 51 1 2 0.73
## 120 12 4.76 25 1 1 0.32
## 121 49 4.56 126 1 3 2.14
## 122 23 4.87 60 1 2 0.75
## 123 16 4.68 60 2 4 0.76
## 124 14 4.72 65 1 2 0.82
## 125 8 4.78 55 1 2 0.69
## 126 23 4.69 35 NA 3 0.44
## 127 10 4.92 38 2 2 0.48
## 128 2 4.44 9 1 2 0.12
## 129 14 4.78 64 1 2 0.83
## 130 1 5.00 3 1 2 0.05
## 131 23 4.90 99 1 2 1.28
## 132 5 5.00 15 1 1 0.19
## 133 3 4.61 18 1 2 0.23
## 134 11 4.57 49 2 4 0.62
## 135 13 4.91 58 2 2 0.74
## 136 12 4.88 75 1 2 0.95
## 137 2 3.63 9 4 6 0.12
## 138 6 4.65 23 1 3 0.29
## 139 10 4.67 61 1 2 0.77
## 140 2 4.75 4 1 1 0.06
## 141 23 4.71 55 1 2 0.71
## 142 8 4.76 38 1 2 0.48
## 143 17 4.82 45 1 2 0.58
## 144 14 4.78 88 1 2 1.12
## 145 6 4.81 32 1 2 0.42
## 146 9 4.73 11 2 4 0.14
## 147 3 4.60 5 5 2 0.08
## 148 4 4.76 25 1 3 0.36
## 149 6 4.94 34 1 2 0.46
## 150 24 4.73 57 2 4 0.73
## 151 1 4.85 20 1 1 0.26
## 152 6 4.82 11 1 2 0.15
## 153 1 4.92 12 1 2 0.15
## 154 34 4.87 83 1 2 1.09
## 155 3 4.60 25 1 2 0.33
## 156 2 4.43 7 2 2 0.10
## 157 15 4.58 66 1 2 0.86
## 158 5 5.00 12 1 1 0.16
## 159 1 1.00 1 1 2 0.03
## 160 2 4.62 29 2 1 0.38
## 161 7 4.23 13 1 2 0.17
## 162 11 4.38 34 1 2 0.44
## 163 10 4.23 22 1 2 0.29
## 164 21 4.76 58 2 4 0.77
## 165 1 4.25 5 2 3 0.07
## 166 3 4.75 29 1 2 0.39
## 167 8 4.39 34 5 7 0.49
## 168 110 4.67 167 1 2 2.26
## 169 2 4.42 21 3 6 0.28
## 170 3 4.38 8 1 3 0.11
## 171 1 5.00 1 1 3 0.25
## 172 1 4.33 3 1 1 0.05
## 173 3 5.00 5 1 3 0.11
## 174 1 4.75 4 1 3 0.06
## 175 1 4.83 6 1 3 0.09
## 176 4 4.50 6 1 3 0.09
## 177 6 4.58 12 1 3 0.16
## 178 32 4.83 203 1 2 2.67
## 179 24 4.09 131 1 1 1.71
## 180 12 4.12 25 1 1 0.33
## 181 1 3.33 3 1 1 0.05
## 182 10 4.30 40 1 1 0.53
## 183 36 4.45 190 4 5 2.48
## 184 9 4.00 31 4 4 0.42
## 185 14 4.88 148 1 2 1.94
## 186 144 4.72 174 1 3 2.28
## 187 37 4.22 95 1 2 1.25
## 188 17 4.22 72 1 2 0.95
## 189 5 3.88 8 1 2 0.11
## 190 2 3.67 6 1 1 0.09
## 191 24 4.09 80 8 1 1.08
## 192 2 3.63 8 1 1 0.11
## 193 3 4.00 13 1 1 0.18
## 194 12 4.89 35 4 5 0.46
## 195 2 4.84 32 2 3 0.43
## 196 3 4.38 8 9 9 0.12
## 197 3 4.53 17 6 6 0.24
## 198 10 4.51 38 8 8 0.51
## 199 7 4.43 21 8 8 0.28
## 200 3 4.20 10 1 3 0.14
## 201 6 4.75 20 2 6 0.30
## 202 16 4.51 45 4 4 0.61
## 203 1 5.00 1 7 7 0.03
## 204 12 4.77 13 1 2 0.24
## 205 7 4.17 23 1 1 0.31
## 206 2 4.00 2 2 2 0.06
## 207 2 4.50 26 1 2 0.35
## 208 2 5.00 9 1 2 0.12
## 209 15 4.43 35 5 5 0.49
## 210 4 4.00 8 6 6 0.12
## 211 2 4.60 15 7 7 0.21
## 212 5 4.67 9 8 8 0.13
## 213 3 4.50 4 7 7 0.07
## 214 3 4.71 7 16 16 0.10
## 215 2 4.86 29 1 1 0.39
## 216 26 4.75 95 2 2 1.30
## 217 4 4.46 24 1 2 0.33
## 218 55 4.33 107 1 2 1.77
## 219 53 4.70 206 NA 1 2.82
## 220 2 4.57 23 1 1 0.32
## 221 15 4.56 95 1 1 1.29
## 222 11 5.00 12 1 1 0.32
## 223 51 4.64 188 NA 1 2.55
## 224 1 4.20 5 1 2 0.08
## 225 2 4.15 13 4 1 0.18
## 226 21 4.93 92 1 1 1.26
## 227 1 4.75 4 2 2 0.06
## 228 1 5.00 1 6 6 0.04
## 229 48 4.77 157 1 1 2.18
## 230 6 4.89 10 1 1 0.14
## 231 1 5.00 13 1 1 0.18
## 232 1 4.85 26 1 1 0.39
## 233 4 4.84 70 1 1 0.98
## 234 2 5.00 13 1 1 0.18
## 235 1 3.25 4 2 2 0.09
## 236 81 4.65 179 3 4 2.46
## 237 17 4.89 92 1 2 1.26
## 238 4 4.48 24 5 10 0.33
## 239 10 4.65 44 4 16 0.60
## 240 1 4.13 15 16 16 0.21
## 241 2 4.18 33 16 16 0.46
## 242 3 4.18 28 16 16 0.39
## 243 6 4.27 30 16 16 0.41
## 244 4 4.09 67 16 16 0.94
## 245 2 4.00 7 16 16 0.11
## 246 8 4.12 59 16 16 0.81
## 247 14 4.21 34 16 16 0.47
## 248 2 4.00 6 4 4 0.12
## 249 45 4.52 71 5 6 1.26
## 250 1 4.50 2 1 1 0.04
## 251 1 4.17 6 2 6 0.08
## 252 56 4.74 215 1 2 3.17
## 253 2 4.00 14 1 2 0.20
## 254 23 4.89 36 NA 2 0.51
## 255 54 4.83 145 1 2 2.05
## 256 110 4.83 354 1 2 4.99
## 257 29 4.78 83 1 1 1.23
## 258 1 3.80 5 8 1 0.07
## 259 7 4.60 46 1 2 0.65
## 260 56 4.86 164 2 3 2.33
## 261 32 4.56 40 2 2 0.69
## 262 6 4.89 10 1 2 0.23
## 263 47 4.84 103 1 2 1.48
## 264 6 4.83 6 2 4 0.17
## 265 7 4.50 8 1 3 0.21
## 266 2 4.67 9 4 5 0.13
## 267 1 5.00 2 1 2 0.04
## 268 66 4.68 133 1 2 1.94
## 269 42 4.71 77 1 2 1.12
## 270 47 4.53 98 1 2 1.41
## 271 17 4.60 30 1 2 0.44
## 272 59 4.81 179 1 1 2.61
## 273 78 4.75 227 1 1 3.25
## 274 21 4.87 71 1 1 1.10
## 275 5 4.80 11 1 1 0.20
## 276 103 4.85 253 3 4 3.80
## 277 5 4.26 25 12 2 0.36
## 278 3 4.44 39 16 16 0.57
## 279 3 5.00 6 1 2 0.10
## 280 14 4.45 92 1 1 1.34
## 281 2 4.42 67 1 1 0.98
## 282 1 4.00 9 16 16 0.14
## 283 1 4.50 4 1 1 0.06
## 284 5 4.42 26 10 10 0.38
## 285 1 4.00 4 1 1 0.07
## 286 34 4.38 72 10 10 1.08
## 287 54 4.34 158 12 12 2.31
## 288 2 4.75 5 1 1 0.07
## 289 34 4.71 72 1 1 1.05
## 290 118 4.84 274 1 2 4.60
## 291 2 5.00 2 1 3 0.11
## 292 23 4.85 71 1 2 1.03
## 293 19 4.72 74 1 2 1.09
## 294 6 4.00 7 1 2 0.10
## 295 1 4.67 9 1 1 0.13
## 296 25 4.44 62 1 1 0.92
## 297 35 4.80 83 1 2 1.22
## 298 1 3.63 9 1 2 0.14
## 299 47 4.87 101 2 2 1.50
## 300 2 5.00 2 1 1 0.07
## 301 14 4.90 31 3 6 0.45
## 302 18 4.85 47 1 4 0.69
## 303 2 4.75 16 1 2 0.24
## 304 2 4.75 12 1 2 0.20
## 305 1 4.00 3 1 1 0.08
## 306 2 5.00 3 2 3 0.05
## 307 2 3.00 3 2 2 0.05
## 308 2 5.00 4 1 1 0.09
## 309 4 4.72 49 3 4 0.79
## 310 4 4.44 16 13 13 0.24
## 311 12 4.41 17 13 13 0.25
## 312 5 4.73 56 1 2 0.84
## 313 3 4.75 65 4 6 0.96
## 314 21 4.86 50 1 1 0.75
## 315 1 5.00 2 1 1 0.04
## 316 10 5.00 15 1 5 0.25
## 317 35 4.80 92 1 2 1.48
## 318 6 4.10 10 1 5 0.18
## 319 2 4.71 8 2 2 0.12
## 320 3 4.93 14 2 4 0.26
## 321 1 4.60 5 3 4 0.09
## 322 31 4.67 59 2 2 1.06
## 323 16 4.58 24 1 1 0.62
## 324 2 4.89 19 1 2 0.31
## 325 1 4.50 6 1 3 0.09
## 326 8 4.91 11 2 4 0.23
## 327 1 4.75 4 1 3 0.08
## 328 4 4.42 12 4 4 0.18
## 329 1 5.00 2 1 1 0.03
## 330 1 4.00 1 1 3 0.13
## 331 5 4.80 15 1 2 0.29
## 332 11 4.82 38 2 4 0.59
## 333 63 4.82 148 3 5 2.39
## 334 30 4.77 48 1 2 0.73
## 335 3 4.10 33 6 6 0.50
## 336 3 4.33 4 1 1 0.08
## 337 13 4.51 60 20 16 0.92
## 338 36 4.74 85 1 3 1.31
## 339 2 5.00 9 1 2 0.14
## 340 1 4.50 4 1 1 0.06
## 341 4 4.33 9 1 2 0.18
## 342 2 4.82 22 1 2 0.34
## 343 9 4.87 39 1 2 0.61
## 344 1 4.50 2 1 2 0.05
## 345 1 4.50 2 4 4 0.04
## 346 6 4.80 20 1 2 0.31
## 347 14 4.63 62 1 2 0.97
## 348 14 4.88 26 1 2 0.42
## 349 20 4.57 52 2 5 0.84
## 350 6 4.73 11 2 2 0.19
## 351 33 4.35 57 3 5 0.90
## 352 3 5.00 4 1 3 0.08
## 353 1 4.25 4 1 1 0.06
## 354 6 4.63 24 1 2 0.38
## 355 3 4.83 6 1 1 0.09
## 356 15 4.68 19 3 5 0.33
## 357 2 3.50 4 5 6 0.07
## 358 15 4.42 32 1 2 0.53
## 359 6 5.00 6 1 2 0.22
## 360 1 5.00 1 2 4 0.28
## 361 37 4.69 61 1 2 0.99
## 362 3 4.60 5 3 6 0.08
## 363 2 4.50 4 1 2 0.07
## 364 2 5.00 2 1 1 0.08
## 365 79 4.80 105 1 1 1.71
## 366 118 4.77 146 1 2 2.40
## 367 2 4.50 2 2 3 0.07
## 368 3 4.63 17 1 1 0.27
## 369 40 4.89 45 1 1 0.72
## 370 4 4.00 4 1 2 0.23
## 371 8 4.44 9 1 2 0.16
## 372 1 4.00 1 1 2 0.09
## 373 1 3.00 2 2 4 0.03
## 374 4 4.00 6 1 2 0.12
## 375 8 4.79 29 1 2 0.47
## 376 8 4.83 12 1 2 0.25
## 377 5 4.50 12 1 2 0.21
## 378 5 4.59 17 1 2 0.29
## 379 6 4.91 11 1 2 0.18
## 380 7 4.36 14 1 2 0.23
## 381 9 4.80 35 4 6 0.65
## 382 1 4.00 10 10 10 0.17
## 383 11 4.93 15 1 2 0.24
## 384 17 4.21 28 2 6 0.49
## 385 1 5.00 1 2 4 0.04
## 386 4 4.75 4 1 3 0.14
## 387 4 5.00 4 1 3 0.13
## 388 2 4.22 89 16 16 1.44
## 389 3 4.18 11 16 16 0.19
## 390 2 4.06 18 10 10 0.30
## 391 40 4.86 167 1 2 2.72
## 392 16 4.85 88 2 2 1.43
## 393 27 4.90 127 2 2 2.09
## 394 21 4.87 98 1 2 1.63
## 395 12 4.75 24 1 2 0.41
## 396 3 4.80 5 1 2 0.09
## 397 9 4.85 34 1 2 0.56
## 398 41 4.84 69 1 1 1.14
## 399 19 4.97 32 1 2 0.54
## 400 16 4.84 32 1 2 0.53
## 401 76 4.55 141 2 2 2.47
## 402 1 4.00 1 1 2 0.03
## 403 17 4.59 18 2 1 0.49
## 404 1 4.13 15 12 12 0.25
## 405 2 4.73 11 10 10 0.18
## 406 32 4.50 81 1 3 1.35
## 407 55 4.76 113 2 6 1.97
## 408 3 4.91 35 1 2 0.64
## 409 6 4.75 12 1 2 0.20
## 410 3 4.50 19 1 2 0.32
## 411 2 4.75 8 1 2 0.14
## 412 7 4.93 14 1 2 0.23
## 413 12 4.43 38 1 2 0.64
## 414 5 4.93 16 2 3 0.27
## 415 8 4.50 23 1 2 0.40
## 416 92 4.74 233 1 2 3.89
## 417 26 4.60 89 3 4 1.49
## 418 9 4.32 36 10 12 0.61
## 419 10 4.86 28 2 2 0.47
## 420 1 3.50 2 16 16 0.04
## 421 1 4.00 3 2 1 0.05
## 422 2 4.75 4 1 3 0.07
## 423 3 4.50 4 2 3 0.07
## 424 3 4.00 5 2 2 0.12
## 425 1 5.00 1 2 6 0.04
## 426 10 4.75 12 1 2 0.29
## 427 5 5.00 8 1 1 0.15
## 428 6 4.73 15 1 2 0.26
## 429 1 4.00 16 NA 16 0.29
## 430 16 4.41 58 2 6 1.00
## 431 1 4.50 2 1 1 0.03
## 432 10 4.50 24 1 2 0.41
## 433 29 4.59 56 4 5 0.97
## 434 2 5.00 5 1 1 0.12
## 435 4 4.21 43 16 16 0.74
## 436 6 4.98 47 1 2 0.92
## 437 15 4.93 32 1 2 0.59
## 438 1 4.50 2 1 1 0.03
## 439 3 4.38 10 2 3 0.18
## 440 34 4.51 104 2 3 1.80
## 441 2 4.44 9 1 3 0.17
## 442 1 4.86 7 1 2 0.12
## 443 3 5.00 7 1 2 0.12
## 444 26 4.52 67 1 5 1.18
## 445 5 5.00 8 1 2 0.16
## 446 83 4.85 96 1 2 1.71
## 447 42 4.86 50 1 1 0.88
## 448 4 4.75 4 2 2 0.13
## 449 3 3.75 4 2 2 0.11
## 450 8 4.00 8 2 3 0.22
## 451 3 4.33 3 2 4 0.12
## 452 11 4.73 11 1 1 0.36
## 453 21 4.60 50 1 2 1.10
## 454 33 4.70 52 1 2 0.92
## 455 1 4.00 9 NA 2 0.17
## 456 2 5.00 9 4 6 0.16
## 457 5 4.33 15 1 2 0.27
## 458 7 4.79 15 1 1 0.28
## 459 1 4.25 4 2 6 0.07
## 460 5 4.50 6 1 2 0.14
## 461 34 4.38 117 3 4 2.08
## 462 10 4.40 10 1 1 0.29
## 463 28 4.79 29 1 2 0.78
## 464 2 4.10 10 1 1 0.18
## 465 52 4.75 138 1 2 2.41
## 466 1 5.00 2 1 1 0.04
## 467 44 4.79 127 1 2 2.26
## 468 32 4.49 68 1 2 1.24
## 469 3 4.86 21 1 4 0.37
## 470 22 4.82 40 2 3 0.72
## 471 2 5.00 2 1 2 0.07
## 472 1 5.00 1 1 1 0.03
## 473 11 5.00 31 2 4 0.56
## 474 13 4.88 24 1 4 0.46
## 475 1 5.00 7 1 2 0.13
## 476 15 4.82 22 1 2 0.50
## 477 2 4.43 7 1 2 0.13
## 478 8 4.50 16 1 2 0.30
## 479 2 4.55 11 1 2 0.20
## 480 5 4.50 8 1 2 0.15
## 481 22 5.00 31 NA 1 0.62
## 482 2 4.80 11 1 1 0.20
## 483 1 4.50 2 1 1 0.05
## 484 11 4.55 11 1 1 0.31
## 485 53 4.74 80 2 2 1.46
## 486 4 4.73 30 1 2 0.55
## 487 1 4.67 3 3 6 0.06
## 488 1 5.00 1 1 4 0.04
## 489 6 4.43 7 1 3 0.19
## 490 4 5.00 4 1 3 0.11
## 491 5 4.62 13 2 3 0.28
## 492 2 4.90 10 2 3 0.20
## 493 8 4.57 21 1 3 0.39
## 494 12 4.76 21 1 3 0.39
## 495 4 4.86 7 1 1 0.13
## 496 14 4.38 16 1 2 0.39
## 497 22 4.72 25 1 2 0.60
## 498 2 4.00 2 1 3 0.29
## 499 4 4.82 28 2 3 0.53
## 500 5 4.78 9 1 3 0.19
## 501 12 4.84 19 3 5 0.39
## 502 16 4.77 35 1 1 0.65
## 503 6 4.85 13 1 2 0.25
## 504 11 4.70 20 3 5 0.39
## 505 25 4.86 44 1 2 0.81
## 506 9 4.93 15 1 2 0.28
## 507 1 3.67 6 1 3 0.12
## 508 10 5.00 17 1 2 0.31
## 509 11 4.93 15 1 2 0.28
## 510 9 5.00 10 1 2 0.24
## 511 10 4.95 19 1 2 0.38
## 512 1 5.00 2 1 1 0.04
## 513 42 4.73 90 2 3 1.67
## 514 4 4.00 5 1 2 0.10
## 515 4 3.80 5 3 3 0.13
## 516 2 4.50 2 3 6 0.41
## 517 1 4.00 4 3 7 0.07
## 518 8 4.82 11 4 7 0.21
## 519 13 4.91 23 1 2 0.43
## 520 1 3.00 1 1 1 0.06
## 521 2 4.67 3 2 3 0.06
## 522 23 4.84 37 1 2 0.70
## 523 3 5.00 7 1 2 0.14
## 524 16 4.97 33 1 2 0.61
## 525 14 4.92 25 1 2 0.47
## 526 22 4.94 32 1 2 0.60
## 527 2 3.67 4 2 4 0.08
## 528 13 4.95 20 1 2 0.40
## 529 7 4.90 10 3 5 0.22
## 530 1 4.00 1 3 6 0.13
## 531 4 4.00 6 3 5 0.12
## 532 7 4.79 14 3 5 0.27
## 533 1 4.33 3 12 12 0.06
## 534 1 4.00 1 12 12 0.04
## 535 1 5.00 1 10 10 0.03
## 536 9 5.00 13 1 3 0.28
## 537 26 4.74 55 4 5 1.05
## 538 14 4.89 19 1 4 0.42
## 539 5 4.17 6 1 2 0.13
## 540 3 3.50 4 1 2 0.08
## 541 7 5.00 11 1 6 0.22
## 542 25 4.97 38 1 3 0.78
## 543 1 4.81 21 1 1 0.40
## 544 3 3.67 3 2 3 0.09
## 545 1 5.00 1 1 1 0.04
## 546 5 4.29 7 1 2 0.17
## 547 1 3.75 4 1 2 0.08
## 548 2 3.67 3 1 2 0.07
## 549 3 4.40 5 NA 2 0.10
## 550 33 4.70 53 1 2 1.04
## 551 1 4.10 41 2 2 0.79
## 552 47 4.79 99 1 2 1.92
## 553 133 4.74 153 3 2 3.05
## 554 4 4.25 4 1 1 0.11
## 555 1 4.00 1 1 1 0.03
## 556 5 5.00 6 1 2 0.15
## 557 8 4.82 11 1 2 0.23
## 558 12 4.94 17 1 2 0.35
## 559 22 4.97 30 1 2 0.63
## 560 7 4.88 8 1 2 0.19
## 561 9 5.00 9 1 2 0.25
## 562 10 4.93 29 1 2 0.58
## 563 41 4.82 83 2 4 1.61
## 564 3 4.67 3 1 2 0.09
## 565 4 5.00 10 1 2 0.20
## 566 1 0.00 1 1 1 0.04
## 567 4 4.22 10 1 2 0.20
## 568 5 4.82 11 1 1 0.22
## 569 6 4.67 6 1 1 0.18
## 570 12 4.73 22 1 2 0.44
## 571 59 4.59 86 1 2 1.72
## 572 2 5.00 2 2 3 0.06
## 573 176 4.68 206 1 1 4.24
## 574 18 4.67 48 1 1 0.98
## 575 11 4.14 14 1 2 0.29
## 576 6 5.00 7 1 1 0.14
## 577 38 4.56 59 1 2 1.23
## 578 1 5.00 2 4 8 0.04
## 579 8 4.94 16 1 2 0.33
## 580 1 4.50 2 2 2 0.04
## 581 30 4.52 54 1 2 1.10
## 582 10 4.86 21 4 7 0.44
## 583 4 5.00 5 1 2 0.14
## 584 2 5.00 2 1 1 0.07
## 585 22 4.84 32 1 2 0.66
## 586 2 5.00 2 1 2 0.06
## 587 1 5.00 1 1 1 0.04
## 588 23 4.80 41 1 2 0.82
## 589 10 4.83 12 1 2 0.26
## 590 41 4.48 69 1 1 1.41
## 591 7 4.88 16 1 2 0.34
## 592 28 4.82 57 1 2 1.16
## 593 32 4.88 51 1 2 1.05
## 594 12 4.80 25 1 2 0.51
## 595 26 4.76 90 2 2 1.81
## 596 26 4.63 46 1 2 1.07
## 597 2 4.88 25 1 2 0.51
## 598 1 5.00 1 1 1 0.04
## 599 2 4.67 3 1 1 0.07
## 600 16 4.91 25 1 1 0.51
## 601 10 4.78 18 1 2 0.37
## 602 9 4.78 9 1 1 0.26
## 603 62 4.26 95 1 2 1.93
## 604 77 4.67 159 1 2 3.29
## 605 1 5.00 1 2 2 0.03
## 606 1 4.00 2 2 4 0.05
## 607 50 4.52 79 1 3 1.62
## 608 14 4.82 28 2 6 0.57
## 609 47 4.55 77 2 3 1.57
## 610 17 4.48 31 1 3 0.66
## 611 1 3.50 2 1 1 0.05
## 612 11 4.83 18 1 2 0.37
## 613 1 5.00 2 1 1 0.04
## 614 25 4.54 50 1 3 1.05
## 615 2 4.50 2 1 1 0.07
## 616 2 4.00 2 1 1 0.06
## 617 61 4.73 97 3 6 2.02
## 618 6 4.90 10 1 2 0.22
## 619 2 4.60 5 1 2 0.11
## 620 4 4.56 10 NA 2 0.22
## 621 1 4.00 2 1 1 0.04
## 622 2 4.75 4 1 2 0.08
## 623 3 3.25 5 4 4 0.11
## 624 47 4.53 67 1 3 1.42
## 625 1 5.00 1 1 2 0.04
## 626 1 5.00 2 1 1 0.05
## 627 122 4.93 143 1 3 2.99
## 628 4 4.88 8 4 7 0.17
## 629 1 5.00 2 1 2 0.04
## 630 1 5.00 1 3 5 0.08
## 631 7 4.67 9 1 2 0.21
## 632 20 4.97 32 1 2 0.68
## 633 28 4.44 46 1 1 1.08
## 634 4 4.40 6 2 3 0.13
## 635 5 4.80 5 1 2 0.28
## 636 2 5.00 2 1 2 0.25
## 637 40 4.58 66 1 2 1.46
## 638 2 2.50 2 3 6 0.06
## 639 5 4.71 7 3 5 0.15
## 640 3 4.60 5 1 1 0.11
## 641 32 4.39 51 2 3 1.10
## 642 1 5.00 1 1 2 0.03
## 643 27 4.50 50 2 3 1.07
## 644 37 4.79 38 1 2 0.88
## 645 1 5.00 2 1 2 0.05
## 646 17 4.79 24 1 1 0.58
## 647 2 4.00 3 1 16 0.08
## 648 1 0.00 1 1 1 0.04
## 649 4 4.80 10 2 1 0.22
## 650 7 4.60 10 1 2 0.23
## 651 3 5.00 8 2 3 0.18
## 652 15 4.78 19 1 2 0.42
## 653 80 4.78 120 3 8 2.62
## 654 8 4.47 17 1 1 0.37
## 655 5 5.00 7 1 2 0.15
## 656 1 3.00 1 2 4 0.03
## 657 8 4.89 9 3 4 0.23
## 658 12 4.83 30 1 2 0.66
## 659 48 4.65 51 2 3 1.15
## 660 4 5.00 5 1 2 0.12
## 661 89 4.72 89 1 2 2.55
## 662 1 5.00 2 1 2 0.05
## 663 38 4.40 69 5 6 1.52
## 664 21 4.90 30 1 2 0.66
## 665 3 2.75 4 1 2 0.09
## 666 9 4.67 9 2 4 0.25
## 667 2 3.86 7 2 4 0.17
## 668 2 3.33 3 2 4 0.08
## 669 3 4.67 3 2 3 0.09
## 670 2 4.33 3 2 3 0.07
## 671 1 5.00 1 2 2 0.08
## 672 6 3.91 11 2 2 0.26
## 673 3 4.33 3 2 2 0.09
## 674 2 3.60 5 1 2 0.11
## 675 17 4.17 23 1 2 0.51
## 676 12 4.16 25 1 2 0.55
## 677 2 4.10 10 1 2 0.23
## 678 1 3.00 1 3 6 0.04
## 679 2 5.00 4 3 6 0.10
## 680 1 4.00 2 3 6 0.05
## 681 1 4.00 2 1 2 0.05
## 682 10 4.86 14 1 2 0.32
## 683 10 4.76 17 1 2 0.39
## 684 2 4.33 3 1 2 0.07
## 685 7 5.00 10 2 4 0.24
## 686 6 4.86 7 2 4 0.17
## 687 14 4.68 19 1 2 0.45
## 688 1 5.00 1 3 7 0.08
## 689 1 5.00 3 2 5 0.08
## 690 53 4.64 73 2 4 1.64
## 691 23 4.43 30 3 3 0.68
## 692 1 3.00 2 1 2 0.05
## 693 1 5.00 3 1 1 0.07
## 694 2 4.20 6 1 1 0.13
## 695 2 4.00 3 1 2 0.08
## 696 5 3.57 7 1 1 0.17
## 697 28 4.18 38 1 1 0.88
## 698 43 4.50 76 1 2 1.71
## 699 55 4.45 82 1 2 1.86
## 700 60 4.47 89 2 2 1.99
## 701 1 4.50 2 1 2 0.05
## 702 1 4.00 1 4 8 0.08
## 703 1 3.00 1 1 1 0.06
## 704 1 3.50 2 1 1 0.05
## 705 31 4.19 36 1 2 0.87
## 706 135 4.72 181 1 2 4.10
## 707 14 4.71 21 2 4 0.49
## 708 103 4.63 134 2 2 3.10
## 709 13 4.44 28 2 4 0.65
## 710 1 3.14 7 2 4 0.16
## 711 36 4.73 46 1 4 1.05
## 712 89 4.60 129 2 2 2.93
## 713 2 4.00 6 1 2 0.14
## 714 19 4.14 22 1 2 0.50
## 715 3 4.40 5 1 2 0.12
## 716 3 4.33 3 1 2 0.08
## 717 2 4.00 2 1 2 0.07
## 718 7 3.88 8 1 2 0.20
## 719 42 4.29 48 2 2 1.20
## 720 4 4.57 7 2 2 0.16
## 721 2 4.50 2 2 2 0.08
## 722 1 3.00 1 2 2 0.04
## 723 4 4.83 6 1 2 0.15
## 724 2 5.00 2 2 3 0.07
## 725 24 4.28 52 2 4 1.18
## 726 7 4.86 7 2 4 0.26
## 727 16 4.43 36 2 6 0.84
## 728 5 4.20 5 1 1 0.17
## 729 21 4.54 37 1 2 0.85
## 730 3 4.50 6 3 4 0.15
## 731 15 4.55 20 1 2 0.46
## 732 83 4.62 113 1 2 2.59
## 733 77 4.69 110 1 2 2.51
## 734 5 4.43 8 2 6 0.19
## 735 1 5.00 2 1 1 0.05
## 736 34 4.67 48 1 3 1.11
## 737 3 4.80 5 1 3 0.12
## 738 3 4.67 3 1 3 0.16
## 739 30 4.22 45 1 2 1.04
## 740 4 4.45 15 2 4 0.35
## 741 8 4.88 13 1 2 0.31
## 742 62 4.73 103 4 3 2.36
## 743 2 3.50 2 1 2 0.07
## 744 1 4.25 5 2 2 0.12
## 745 32 5.00 52 1 2 1.23
## 746 2 3.00 5 1 2 0.12
## 747 1 4.56 9 1 2 0.21
## 748 13 4.72 31 2 4 0.72
## 749 1 4.00 1 2 4 0.03
## 750 5 4.86 7 1 2 0.16
## 751 2 5.00 4 1 3 0.10
## 752 199 4.78 224 1 2 5.31
## 753 11 4.75 16 2 2 0.37
## 754 9 4.30 33 1 2 0.77
## 755 1 5.00 1 1 1 0.04
## 756 6 4.38 8 1 2 0.19
## 757 5 4.00 5 3 6 0.14
## 758 19 4.57 23 2 4 0.59
## 759 57 4.64 78 3 4 1.81
## 760 1 5.00 1 1 2 0.03
## 761 8 4.40 15 1 2 0.35
## 762 5 4.31 13 1 4 0.30
## 763 2 5.00 2 2 4 0.06
## 764 124 4.90 168 1 2 3.91
## 765 9 4.38 16 2 4 0.38
## 766 1 4.00 1 1 2 0.05
## 767 17 4.78 23 1 4 0.55
## 768 1 5.00 2 1 1 0.05
## 769 26 4.55 41 1 2 1.00
## 770 9 4.82 17 1 2 0.42
## 771 42 4.89 63 1 2 1.48
## 772 8 4.80 10 1 2 0.25
## 773 4 4.71 7 4 5 0.17
## 774 23 4.70 30 1 1 0.73
## 775 5 5.00 5 1 2 0.16
## 776 51 4.75 69 1 2 1.64
## 777 1 3.50 2 1 1 0.05
## 778 3 4.80 5 4 6 0.13
## 779 1 4.33 4 1 4 0.10
## 780 2 5.00 6 1 2 0.14
## 781 1 5.00 1 2 3 0.04
## 782 23 4.50 36 1 2 0.88
## 783 25 4.45 39 1 2 0.96
## 784 2 4.50 2 2 4 0.08
## 785 18 4.50 32 2 4 0.77
## 786 1 5.00 1 1 1 0.03
## 787 19 4.70 20 1 2 0.54
## 788 4 4.00 6 1 2 0.15
## 789 35 4.56 43 1 2 1.04
## 790 5 4.86 7 2 3 0.17
## 791 17 4.55 20 1 4 0.49
## 792 30 4.56 40 1 3 1.00
## 793 3 5.00 6 2 4 0.15
## 794 50 4.52 50 3 3 1.51
## 795 4 5.00 5 2 2 0.12
## 796 2 5.00 2 1 2 0.06
## 797 5 4.86 7 1 2 0.18
## 798 26 4.48 29 2 3 0.73
## 799 1 4.00 1 1 2 0.04
## 800 1 3.00 2 1 3 0.05
## 801 9 4.64 11 1 2 0.27
## 802 40 4.39 46 36 6 1.15
## 803 2 4.00 2 1 2 0.06
## 804 20 4.69 26 1 3 0.65
## 805 35 4.56 39 1 3 1.02
## 806 83 4.84 106 2 4 2.65
## 807 28 4.86 28 2 2 0.80
## 808 7 5.00 9 2 2 0.23
## 809 15 4.27 15 1 3 0.94
## 810 1 5.00 1 2 4 0.04
## 811 2 5.00 2 1 2 0.07
## 812 89 4.70 103 3 8 2.62
## 813 76 4.87 92 7 16 2.35
## 814 2 5.00 2 1 1 0.07
## 815 21 4.86 21 1 1 0.60
## 816 1 0.00 1 2 3 0.04
## 817 19 4.18 22 10 10 0.56
## 818 66 4.73 71 3 4 1.83
## 819 1 5.00 9 1 3 0.23
## 820 11 4.18 11 1 2 0.31
## 821 2 4.71 7 1 2 0.18
## 822 1 5.00 1 1 2 1.00
## 823 1 5.00 1 1 2 0.04
## 824 8 4.67 9 1 1 0.24
## 825 1 5.00 1 1 1 0.04
## 826 2 5.00 2 1 1 0.07
## 827 59 4.58 62 1 2 1.66
## 828 29 4.79 29 1 2 0.84
## 829 3 5.00 4 1 2 0.10
## 830 1 5.00 1 6 6 0.03
## 831 4 4.75 4 1 1 0.12
## 832 7 4.57 7 1 5 0.20
## 833 3 5.00 5 2 2 0.13
## 834 42 4.98 42 2 2 1.18
## 835 6 4.00 6 10 10 0.18
## 836 1 3.00 1 10 10 0.03
## 837 2 4.00 2 10 10 0.08
## 838 4 3.88 8 10 10 0.21
## 839 2 4.00 2 10 10 0.06
## 840 1 4.00 1 1 1 0.05
## 841 1 4.00 1 4 4 0.04
## 842 2 4.00 2 1 1 0.06
## 843 4 4.40 5 3 5 0.14
## 844 2 4.50 2 1 2 0.06
## 845 1 5.00 4 1 1 0.11
## 846 1 5.00 1 3 5 0.03
## 847 15 4.72 18 1 1 0.48
## 848 1 4.00 1 4 4 0.04
## 849 1 5.00 1 1 2 0.03
## 850 9 4.91 11 1 1 0.29
## 851 21 4.83 23 1 2 0.62
## 852 12 4.86 14 1 2 0.37
## 853 39 4.86 43 1 2 1.15
## 854 8 4.88 8 1 2 0.22
## 855 24 4.81 27 1 2 0.72
## 856 28 5.00 28 1 1 0.77
## 857 2 4.67 3 2 4 0.08
## 858 1 5.00 1 1 2 0.05
## 859 1 5.00 1 1 2 0.03
## 860 37 4.88 43 3 6 1.14
## 861 12 4.00 13 1 2 0.35
## 862 3 3.67 3 2 4 0.10
## 863 5 4.80 5 3 6 0.14
## 864 1 5.00 1 1 1 0.04
## 865 1 5.00 1 1 2 0.03
## 866 7 5.00 7 1 2 0.19
## 867 1 5.00 1 1 1 0.03
## 868 38 4.72 39 2 4 1.07
## 869 1 5.00 1 1 1 0.03
## 870 2 4.50 2 2 4 0.51
## 871 6 4.17 6 3 5 0.17
## 872 1 5.00 1 2 4 0.04
## 873 1 5.00 2 1 2 0.05
## 874 6 5.00 6 1 2 0.19
## 875 1 5.00 1 1 2 0.25
## 876 1 5.00 1 1 2 0.34
## 877 1 5.00 1 1 1 0.03
## 878 8 4.50 8 2 4 0.24
## 879 1 4.00 1 3 5 0.04
## 880 7 4.86 7 1 2 0.20
## 881 1 5.00 1 1 1 0.03
## 882 3 5.00 3 1 2 0.08
## 883 1 3.00 1 1 1 0.03
## 884 1 5.00 1 1 1 0.03
## 885 13 4.58 13 1 2 0.44
## 886 2 5.00 2 1 1 0.07
## 887 1 5.00 1 1 1 0.03
## 888 1 5.00 1 1 1 0.04
## 889 1 5.00 1 1 1 0.04
## 890 25 4.78 27 1 2 0.74
## 891 3 5.00 3 5 6 0.09
## 892 104 4.92 105 2 3 2.87
## 893 1 4.00 1 1 1 0.04
## 894 1 4.00 1 1 1 0.03
## 895 2 5.00 2 1 1 0.07
## 896 1 5.00 2 1 1 0.05
## 897 7 5.00 7 1 1 0.20
## 898 2 3.67 4 1 1 0.11
## 899 2 5.00 2 1 1 0.06
## 900 27 4.93 27 1 2 0.74
## 901 20 4.65 20 2 3 0.55
## 902 1 5.00 1 1 1 0.04
## 903 2 3.50 2 1 4 0.07
## 904 13 4.67 13 1 2 0.36
## 905 57 4.89 57 1 2 1.60
## 906 1 5.00 1 1 2 0.05
## 907 60 4.77 60 1 2 1.68
## 908 23 4.83 23 1 1 0.65
## 909 2 5.00 2 1 2 0.06
## 910 29 5.00 29 2 3 0.80
## 911 13 4.92 13 3 3 0.36
## 912 1 5.00 1 1 1 0.07
## 913 1 5.00 1 1 2 0.03
## 914 1 5.00 1 1 1 0.03
## 915 2 5.00 2 1 2 0.06
## 916 1 5.00 1 2 4 0.03
## 917 2 5.00 2 2 4 0.11
## 918 1 4.00 1 2 5 0.04
## 919 2 5.00 2 1 2 0.17
## 920 15 4.93 15 1 2 0.46
## 921 16 5.00 16 1 2 0.44
## 922 217 4.94 217 1 2 6.24
## 923 25 4.80 25 1 1 0.70
## 924 1 5.00 1 3 6 0.03
## 925 31 4.81 31 1 2 0.87
## 926 1 1.00 1 1 2 0.03
## 927 7 4.71 7 1 2 0.20
## 928 4 3.33 4 1 2 0.14
## 929 5 5.00 5 3 6 0.15
## 930 3 5.00 3 2 5 0.09
## 931 9 4.44 9 1 2 0.28
## 932 18 4.88 18 1 1 0.51
## 933 4 5.00 4 1 1 0.12
## 934 20 4.95 20 1 2 0.58
## 935 66 4.85 66 3 8 1.88
## 936 21 4.57 21 1 1 0.61
## 937 30 4.73 30 1 2 0.85
## 938 11 4.82 11 1 1 0.32
## 939 6 5.00 6 1 2 0.22
## 940 11 4.73 11 1 2 0.35
## 941 7 4.57 7 1 2 0.20
## 942 13 4.92 13 1 1 0.41
## 943 2 5.00 2 2 4 0.06
## 944 6 5.00 6 4 4 0.20
## 945 8 4.88 8 3 6 0.23
## 946 27 4.74 27 1 2 0.77
## 947 2 5.00 2 1 1 0.14
## 948 2 5.00 2 1 2 0.07
## 949 2 4.00 2 2 4 0.06
## 950 1 0.00 1 1 2 0.04
## 951 31 4.45 31 1 1 0.89
## 952 3 5.00 3 2 3 0.11
## 953 4 5.00 4 1 2 0.17
## 954 15 4.17 15 1 2 0.43
## 955 8 4.38 8 5 6 0.25
## 956 3 5.00 3 2 3 0.09
## 957 5 4.20 5 1 2 0.16
## 958 1 5.00 1 1 1 0.03
## 959 1 5.00 1 2 4 0.04
## 960 8 4.38 8 3 6 0.23
## 961 1 5.00 1 2 4 0.03
## 962 47 4.51 47 1 2 1.39
## 963 41 4.80 41 5 6 1.20
## 964 10 4.50 10 1 2 0.33
## 965 1 4.00 1 1 1 0.04
## 966 8 4.88 8 1 2 0.25
## 967 11 4.91 11 1 2 0.34
## 968 12 4.75 12 1 2 0.37
## 969 141 4.67 141 1 1 4.32
## 970 1 5.00 1 1 2 0.03
## 971 7 4.43 7 1 2 0.22
## 972 1 5.00 1 1 2 0.14
## 973 4 4.75 4 1 1 0.12
## 974 1 5.00 1 1 2 0.13
## 975 13 4.69 13 1 2 0.39
## 976 4 4.75 4 2 4 0.13
## 977 2 5.00 2 1 2 0.07
## 978 2 4.00 2 2 4 0.07
## 979 1 5.00 1 4 6 0.03
## 980 3 5.00 3 1 2 0.09
## 981 1 0.00 1 2 2 0.03
## 982 2 4.50 2 2 4 0.06
## 983 5 4.60 5 1 2 0.18
## 984 1 5.00 1 1 1 0.03
## 985 1 5.00 1 1 1 0.12
## 986 2 4.50 2 2 4 0.07
## 987 2 5.00 2 1 1 0.07
## 988 1 5.00 1 1 1 0.03
## 989 3 5.00 3 1 2 0.09
## 990 2 4.00 2 1 1 0.11
## 991 2 5.00 2 2 5 0.06
## 992 2 4.50 2 1 1 0.06
## 993 45 4.44 45 2 5 1.33
## 994 2 5.00 2 1 1 0.06
## 995 12 4.18 12 2 4 0.36
## 996 3 5.00 3 3 5 0.12
## 997 1 5.00 1 1 1 0.04
## 998 31 4.81 31 1 2 1.02
## 999 13 4.00 13 1 4 0.39
## 1000 6 5.00 6 3 6 0.19
## 1001 1 5.00 1 3 6 0.03
## 1002 1 3.00 1 1 1 0.04
## 1003 68 4.81 68 2 4 2.01
## 1004 46 4.96 46 2 4 1.37
## 1005 45 4.87 45 2 4 1.35
## 1006 50 4.94 50 2 4 1.48
## 1007 53 4.75 53 2 4 1.57
## 1008 60 4.77 60 3 6 1.78
## 1009 49 4.82 49 3 6 1.46
## 1010 75 4.91 75 3 6 2.23
## 1011 57 4.81 57 3 4 1.69
## 1012 53 4.96 53 4 8 1.58
## 1013 57 4.86 57 4 8 1.70
## 1014 66 4.83 66 4 8 1.96
## 1015 57 4.77 57 5 8 1.69
## 1016 53 4.83 53 5 8 1.58
## 1017 25 4.56 25 1 2 0.75
## 1018 13 4.62 13 2 2 0.40
## 1019 4 5.00 4 1 2 0.14
## 1020 78 4.73 78 3 2 2.56
## 1021 10 4.20 10 1 2 0.55
## 1022 24 4.70 24 1 3 0.73
## 1023 8 4.88 8 1 1 0.25
## 1024 11 4.91 11 1 1 0.35
## 1025 33 4.76 33 3 2 1.00
## 1026 5 4.00 5 1 1 0.16
## 1027 65 4.69 65 2 2 2.14
## 1028 7 4.71 7 1 1 0.26
## 1029 70 4.66 70 1 1 2.35
## 1030 1 5.00 1 1 3 0.86
## 1031 68 4.68 68 2 2 2.19
## 1032 69 4.84 69 2 2 2.23
## 1033 1 0.00 1 2 5 0.03
## 1034 1 5.00 1 1 2 0.04
## 1035 2 3.50 2 1 1 0.06
## 1036 4 5.00 4 2 3 0.14
## 1037 7 5.00 7 1 1 0.24
## 1038 25 4.68 25 1 2 0.77
## 1039 35 4.91 35 3 6 1.10
## 1040 1 0.00 1 1 1 0.03
## 1041 1 4.00 1 1 1 0.03
## 1042 15 4.27 15 1 3 0.53
## 1043 2 5.00 2 2 4 0.09
## 1044 1 5.00 1 1 2 0.07
## 1045 28 4.57 28 2 3 0.98
## 1046 5 4.40 5 1 1 0.16
## 1047 1 5.00 1 2 2 0.04
## 1048 3 4.00 3 2 3 0.10
## 1049 30 4.33 30 1 4 1.01
## 1050 5 4.80 5 1 2 0.16
## 1051 17 4.59 17 1 2 0.52
## 1052 36 4.33 36 1 2 1.14
## 1053 12 4.42 12 1 1 0.39
## 1054 12 4.58 12 2 4 0.38
## 1055 2 5.00 2 1 1 0.07
## 1056 2 4.00 2 1 1 0.07
## 1057 13 4.69 13 4 7 0.40
## 1058 14 4.64 14 1 1 0.44
## 1059 47 4.52 47 8 8 1.45
## 1060 8 4.38 8 10 2 0.25
## 1061 12 4.42 12 8 8 0.38
## 1062 22 4.36 22 6 6 0.69
## 1063 1 5.00 1 4 4 0.03
## 1064 4 5.00 4 14 14 0.13
## 1065 1 0.00 1 1 1 0.03
## 1066 33 4.52 33 8 8 1.03
## 1067 1 3.00 1 1 1 0.03
## 1068 41 4.39 41 6 6 1.27
## 1069 21 4.38 21 1 4 0.67
## 1070 1 4.00 1 1 1 0.03
## 1071 1 1.00 1 1 2 1.00
## 1072 2 5.00 2 2 3 0.10
## 1073 12 4.92 12 1 1 0.38
## 1074 19 4.84 19 1 2 0.61
## 1075 45 4.78 45 2 2 1.46
## 1076 45 4.84 45 1 2 1.47
## 1077 2 3.00 2 1 2 0.06
## 1078 32 4.41 32 8 8 1.01
## 1079 14 4.71 14 6 6 0.45
## 1080 1 4.00 1 1 1 0.04
## 1081 12 4.42 12 10 2 0.39
## 1082 15 5.00 15 1 2 0.49
## 1083 4 5.00 4 1 1 0.15
## 1084 8 4.00 8 4 7 0.31
## 1085 19 4.95 19 1 2 0.62
## 1086 1 5.00 1 1 1 0.03
## 1087 1 0.00 1 1 2 0.03
## 1088 12 4.33 12 1 2 0.38
## 1089 2 4.50 2 1 2 0.08
## 1090 7 4.71 7 1 2 0.23
## 1091 1 5.00 1 1 2 0.04
## 1092 1 0.00 1 4 3 1.00
## 1093 1 5.00 1 1 1 0.03
## 1094 16 4.88 16 1 2 0.54
## 1095 1 5.00 1 1 1 0.03
## 1096 3 5.00 3 1 1 0.11
## 1097 2 5.00 2 1 1 0.07
## 1098 7 4.29 7 1 1 0.23
## 1099 3 4.33 3 1 2 0.10
## 1100 16 4.31 16 1 1 0.51
## 1101 49 4.84 49 2 2 1.58
## 1102 2 4.50 2 1 1 0.08
## 1103 1 5.00 1 2 4 0.08
## 1104 5 4.80 5 1 2 0.16
## 1105 1 5.00 1 1 1 0.03
## 1106 1 5.00 1 1 1 0.19
## 1107 4 4.25 4 1 1 0.13
## 1108 7 4.43 7 1 1 0.23
## 1109 1 5.00 1 1 1 0.04
## 1110 2 4.00 2 1 1 0.07
## 1111 11 4.45 11 2 6 0.36
## 1112 1 0.00 1 1 1 0.03
## 1113 1 5.00 1 1 1 0.04
## 1114 3 5.00 3 1 2 0.10
## 1115 1 4.00 1 1 2 0.03
## 1116 3 4.67 3 2 5 0.11
## 1117 2 5.00 2 3 6 0.07
## 1118 1 0.00 1 1 2 0.03
## 1119 2 3.00 2 1 1 0.07
## 1120 32 4.44 32 1 4 1.07
## 1121 46 4.41 46 2 4 1.53
## 1122 3 5.00 3 1 2 0.11
## 1123 67 4.91 67 1 1 2.19
## 1124 4 4.50 4 8 8 0.14
## 1125 14 4.57 14 2 3 0.46
## 1126 39 4.82 39 4 9 1.27
## 1127 46 4.74 46 5 9 1.50
## 1128 43 4.84 43 4 9 1.40
## 1129 53 4.94 53 5 9 1.73
## 1130 47 4.96 47 5 12 1.54
## 1131 43 4.91 43 5 12 1.40
## 1132 36 4.83 36 1 2 1.20
## 1133 15 4.33 15 6 6 0.50
## 1134 87 4.91 87 1 2 3.29
## 1135 33 4.85 33 1 2 1.46
## 1136 6 4.17 6 1 1 0.20
## 1137 6 4.17 6 1 2 0.20
## 1138 16 4.38 16 1 2 0.54
## 1139 1 4.00 1 3 6 0.04
## 1140 1 4.00 1 1 2 0.03
## 1141 9 5.00 9 1 3 0.32
## 1142 27 4.89 27 1 2 0.89
## 1143 1 5.00 1 3 5 0.28
## 1144 1 5.00 1 1 3 0.04
## 1145 3 4.50 3 1 1 0.10
## 1146 1 5.00 1 1 2 0.04
## 1147 1 5.00 1 4 7 0.04
## 1148 1 5.00 1 1 1 0.06
## 1149 21 4.90 21 1 1 0.70
## 1150 7 4.57 7 2 2 0.26
## 1151 33 4.58 33 2 2 1.16
## 1152 5 5.00 5 1 1 0.18
## 1153 3 4.67 3 1 2 2.25
## 1154 1 5.00 1 4 6 0.03
## 1155 22 4.77 22 1 2 0.74
## 1156 1 5.00 1 3 5 0.27
## 1157 3 5.00 3 1 2 0.11
## 1158 2 4.00 2 4 4 0.08
## 1159 1 5.00 1 1 1 0.03
## 1160 2 5.00 2 1 1 0.08
## 1161 11 4.27 11 1 3 0.38
## 1162 10 5.00 10 1 1 0.34
## 1163 16 4.93 16 1 2 0.54
## 1164 6 4.00 6 3 6 0.22
## 1165 3 4.67 3 1 2 0.10
## 1166 28 4.96 28 1 2 0.95
## 1167 16 5.00 16 1 2 0.55
## 1168 1 5.00 1 3 6 0.04
## 1169 3 5.00 3 1 2 0.12
## 1170 2 5.00 2 1 2 0.47
## 1171 3 4.00 3 1 2 0.12
## 1172 2 5.00 2 1 2 0.11
## 1173 1 5.00 1 1 2 0.29
## 1174 13 4.62 13 1 2 0.44
## 1175 4 4.00 4 1 2 0.14
## 1176 7 4.57 7 1 2 0.25
## 1177 13 4.23 13 1 2 0.45
## 1178 2 5.00 2 1 1 0.07
## 1179 4 4.50 4 2 2 0.14
## 1180 21 4.24 21 1 4 0.72
## 1181 6 4.67 6 1 2 0.27
## 1182 14 4.21 14 1 4 0.51
## 1183 14 5.00 14 1 4 0.70
## 1184 13 4.08 13 1 4 0.47
## 1185 1 4.00 1 1 2 0.03
## 1186 2 5.00 2 4 8 0.07
## 1187 1 5.00 1 4 8 0.03
## 1188 8 4.88 8 1 1 0.30
## 1189 1 5.00 1 2 5 0.20
## 1190 2 5.00 2 3 6 0.07
## 1191 6 4.67 6 2 2 0.22
## 1192 4 4.00 4 1 2 0.14
## 1193 2 4.50 2 1 1 0.07
## 1194 1 5.00 1 1 2 0.04
## 1195 1 0.00 1 1 1 0.04
## 1196 1 4.00 1 6 6 0.03
## 1197 1 0.00 1 4 4 0.03
## 1198 1 5.00 1 1 2 0.04
## 1199 2 4.50 2 1 4 0.09
## 1200 1 5.00 1 3 6 0.03
## 1201 2 3.50 2 4 2 0.07
## 1202 23 4.78 23 1 2 0.87
## 1203 1 5.00 1 1 1 0.04
## 1204 2 4.00 2 1 2 0.07
## 1205 3 3.67 3 1 2 0.12
## 1206 3 5.00 3 1 2 0.13
## 1207 1 4.00 1 1 2 0.17
## 1208 2 5.00 2 2 4 0.09
## 1209 1 4.00 1 1 2 0.04
## 1210 75 4.63 75 1 2 2.79
## 1211 177 4.49 177 3 4 6.23
## 1212 25 4.92 25 1 2 0.92
## 1213 1 5.00 1 1 2 0.04
## 1214 1 5.00 1 1 1 0.04
## 1215 1 5.00 1 NA 2 0.05
## 1216 1 1.00 1 2 2 0.10
## 1217 1 4.00 1 2 2 0.04
## 1218 3 5.00 3 1 1 0.11
## 1219 2 4.50 2 1 1 0.17
## 1220 6 3.83 6 1 2 0.21
## 1221 18 4.83 18 1 2 0.66
## 1222 1 5.00 1 1 1 0.04
## 1223 11 4.91 11 NA 2 0.44
## 1224 1 5.00 1 1 1 0.04
## 1225 2 5.00 2 1 1 0.07
## 1226 1 5.00 1 1 2 1.00
## 1227 11 4.64 11 1 2 0.40
## 1228 3 3.00 3 1 2 0.13
## 1229 56 4.89 56 1 2 2.12
## 1230 1 4.00 1 1 2 0.04
## 1231 1 5.00 1 1 2 0.06
## 1232 1 5.00 1 1 1 0.67
## 1233 1 5.00 1 1 2 0.04
## 1234 14 4.29 14 1 2 0.50
## 1235 13 4.54 13 2 4 0.47
## 1236 1 5.00 1 1 1 0.08
## 1237 7 5.00 7 1 2 0.26
## 1238 26 4.81 26 1 1 0.93
## 1239 23 4.13 23 1 2 0.82
## 1240 2 5.00 2 1 2 0.09
## 1241 1 5.00 1 6 6 0.04
## 1242 1 3.00 1 1 1 0.04
## 1243 23 4.48 23 2 3 0.86
## 1244 1 5.00 1 1 2 0.04
## 1245 1 5.00 1 1 1 0.17
## 1246 2 4.00 2 1 2 0.08
## 1247 2 5.00 2 1 2 0.27
## 1248 2 5.00 2 2 4 0.10
## 1249 4 4.50 4 1 2 0.15
## 1250 1 5.00 1 1 2 0.05
## 1251 1 5.00 1 1 2 0.04
## 1252 6 5.00 6 2 4 0.22
## 1253 4 4.25 4 3 4 0.15
## 1254 1 3.00 1 1 1 0.04
## 1255 1 3.00 1 2 2 0.04
## 1256 9 4.33 9 2 2 0.38
## 1257 3 5.00 3 1 1 0.22
## 1258 1 5.00 1 1 2 0.05
## 1259 3 5.00 3 2 8 0.12
## 1260 5 4.80 5 1 1 0.19
## 1261 3 4.67 3 1 2 0.12
## 1262 1 5.00 1 1 1 0.04
## 1263 5 4.00 5 1 2 0.21
## 1264 4 4.75 4 2 4 0.15
## 1265 2 5.00 2 2 3 0.16
## 1266 2 4.50 2 1 2 0.07
## 1267 5 5.00 5 1 1 0.19
## 1268 22 4.73 22 2 6 1.08
## 1269 3 5.00 3 NA 1 0.12
## 1270 1 5.00 1 1 1 0.04
## 1271 3 4.33 3 1 4 0.13
## 1272 6 5.00 6 2 2 0.23
## 1273 2 5.00 2 2 1 0.08
## 1274 4 4.25 4 1 2 0.18
## 1275 2 5.00 2 NA 1 0.08
## 1276 2 5.00 2 1 1 0.08
## 1277 2 5.00 2 1 3 0.11
## 1278 7 5.00 7 2 2 0.31
## 1279 10 4.78 10 1 2 0.39
## 1280 30 4.70 30 3 5 1.13
## 1281 13 4.23 13 1 3 0.50
## 1282 6 4.83 6 1 2 0.23
## 1283 2 5.00 2 1 1 0.08
## 1284 1 5.00 1 3 5 0.04
## 1285 1 5.00 1 1 2 0.05
## 1286 5 4.40 5 2 3 0.19
## 1287 1 5.00 1 1 1 0.05
## 1288 2 4.00 2 1 1 0.08
## 1289 3 4.67 3 1 3 0.15
## 1290 3 4.33 3 3 3 0.12
## 1291 3 4.33 3 1 2 0.13
## 1292 18 4.78 18 1 4 0.86
## 1293 1 5.00 1 1 1 0.08
## 1294 4 4.50 4 1 1 0.16
## 1295 3 5.00 3 1 2 0.17
## 1296 2 5.00 2 1 2 1.22
## 1297 56 4.89 56 1 2 2.18
## 1298 1 5.00 1 2 4 0.04
## 1299 3 5.00 3 2 4 0.12
## 1300 1 5.00 1 1 1 0.04
## 1301 3 5.00 3 1 2 0.12
## 1302 2 5.00 2 1 2 0.08
## 1303 11 4.82 11 1 4 0.56
## 1304 2 5.00 2 2 4 0.08
## 1305 1 4.00 1 1 2 0.04
## 1306 1 5.00 1 1 2 0.04
## 1307 1 4.00 1 1 2 0.04
## 1308 1 5.00 1 1 1 0.10
## 1309 1 0.00 1 4 4 0.04
## 1310 4 5.00 4 5 6 0.16
## 1311 2 5.00 2 1 2 0.09
## 1312 4 3.50 4 1 2 0.17
## 1313 1 5.00 1 1 2 0.04
## 1314 15 5.00 15 1 2 0.60
## 1315 2 4.00 2 1 2 0.08
## 1316 1 5.00 1 1 1 0.05
## 1317 4 4.75 4 2 4 0.16
## 1318 2 0.00 2 1 1 0.08
## 1319 2 5.00 2 1 1 0.08
## 1320 1 5.00 1 1 1 0.04
## 1321 24 4.63 24 1 2 0.94
## 1322 20 4.95 20 1 1 0.78
## 1323 1 3.00 1 1 2 0.04
## 1324 12 5.00 12 2 2 0.49
## 1325 8 4.63 8 2 5 0.34
## 1326 1 0.00 1 1 1 0.04
## 1327 2 3.50 2 3 7 0.09
## 1328 23 4.87 23 2 5 1.38
## 1329 5 4.60 5 6 8 0.21
## 1330 3 5.00 3 8 8 0.12
## 1331 2 5.00 2 NA 1 0.08
## 1332 3 3.33 3 2 6 0.13
## 1333 1 5.00 1 6 6 0.04
## 1334 1 1.00 1 4 9 0.04
## 1335 1 5.00 1 3 6 0.04
## 1336 2 5.00 2 1 2 0.08
## 1337 6 4.33 6 3 8 0.24
## 1338 4 4.50 4 9 16 0.17
## 1339 2 5.00 2 4 9 0.08
## 1340 15 4.47 15 6 6 0.60
## 1341 1 5.00 1 8 8 0.04
## 1342 1 0.00 1 2 2 0.04
## 1343 1 4.00 1 2 6 0.04
## 1344 6 4.50 6 1 2 0.24
## 1345 4 3.75 4 1 2 0.31
## 1346 3 5.00 3 1 1 0.12
## 1347 1 5.00 1 2 3 0.04
## 1348 3 4.67 3 1 2 0.22
## 1349 1 5.00 1 1 3 0.04
## 1350 1 5.00 1 1 2 0.04
## 1351 1 5.00 1 2 3 0.13
## 1352 11 4.27 11 1 2 0.45
## 1353 1 5.00 1 1 2 0.08
## 1354 3 4.67 3 1 2 0.12
## 1355 1 0.00 1 2 3 0.04
## 1356 2 4.50 2 1 2 0.08
## 1357 2 5.00 2 1 2 0.09
## 1358 2 4.00 2 1 3 0.08
## 1359 4 4.75 4 1 2 0.17
## 1360 1 0.00 1 1 2 0.04
## 1361 1 1.00 1 4 9 0.04
## 1362 7 5.00 7 3 4 0.31
## 1363 5 4.20 5 1 2 0.21
## 1364 3 5.00 3 1 2 0.23
## 1365 1 5.00 1 1 2 0.04
## 1366 1 3.00 1 3 6 0.35
## 1367 15 4.67 15 1 2 0.70
## 1368 2 4.00 2 1 2 0.08
## 1369 6 4.33 6 1 2 0.44
## 1370 2 4.00 2 1 2 0.15
## 1371 6 4.50 6 1 2 0.44
## 1372 3 4.33 3 1 1 0.13
## 1373 1 5.00 1 1 1 0.59
## 1374 16 4.63 16 1 2 0.66
## 1375 1 0.00 1 2 4 0.04
## 1376 2 5.00 2 1 2 2.00
## 1377 25 4.68 25 1 2 1.05
## 1378 1 5.00 1 1 2 0.04
## 1379 20 4.85 20 1 2 0.88
## 1380 2 4.50 2 4 4 0.08
## 1381 30 4.87 30 1 2 1.24
## 1382 2 5.00 2 1 3 0.08
## 1383 2 3.00 2 2 2 0.08
## 1384 1 5.00 1 5 9 0.05
## 1385 12 4.92 12 3 6 0.53
## 1386 1 0.00 1 6 4 0.04
## 1387 1 5.00 1 1 6 0.04
## 1388 1 5.00 1 2 4 0.04
## 1389 2 3.00 2 1 1 0.09
## 1390 18 4.72 18 1 2 1.34
## 1391 18 3.94 18 1 2 0.76
## 1392 16 4.80 16 1 2 0.66
## 1393 2 4.50 2 NA 2 0.08
## 1394 10 5.00 10 1 2 0.41
## 1395 12 4.92 12 1 2 0.51
## 1396 1 5.00 1 1 2 0.04
## 1397 3 5.00 3 8 8 0.12
## 1398 5 5.00 5 1 2 0.36
## 1399 1 5.00 1 1 1 0.09
## 1400 2 5.00 2 1 2 0.09
## 1401 1 3.00 1 1 2 1.00
## 1402 1 5.00 1 1 2 0.04
## 1403 1 5.00 1 4 7 0.04
## 1404 3 5.00 3 2 2 0.13
## 1405 21 4.86 21 1 2 0.88
## 1406 1 5.00 1 2 4 0.04
## 1407 1 5.00 1 NA 2 0.12
## 1408 1 5.00 1 6 6 0.04
## 1409 4 4.00 4 1 3 0.17
## 1410 1 0.00 1 1 1 0.04
## 1411 6 3.67 6 6 6 0.26
## 1412 1 5.00 1 1 1 0.04
## 1413 1 5.00 1 1 1 0.04
## 1414 2 4.00 2 4 4 0.09
## 1415 1 0.00 1 1 1 0.04
## 1416 6 4.33 6 2 4 0.29
## 1417 62 4.60 62 3 4 2.66
## 1418 3 5.00 3 1 1 0.13
## 1419 1 4.00 1 4 2 0.04
## 1420 1 5.00 1 4 9 0.05
## 1421 2 3.00 2 10 10 0.09
## 1422 1 5.00 1 1 9 0.05
## 1423 1 5.00 1 2 6 0.05
## 1424 4 5.00 4 1 3 0.17
## 1425 2 4.00 2 1 1 0.09
## 1426 2 4.50 2 2 2 0.63
## 1427 2 5.00 2 1 2 0.08
## 1428 2 5.00 2 1 2 0.35
## 1429 43 4.91 43 2 4 1.88
## 1430 39 4.97 39 2 4 1.85
## 1431 8 5.00 8 1 1 0.38
## 1432 3 3.33 3 1 2 0.13
## 1433 1 5.00 1 1 1 0.04
## 1434 1 5.00 1 1 1 0.05
## 1435 1 5.00 1 3 4 0.04
## 1436 7 4.57 7 1 2 0.30
## 1437 1 5.00 1 2 4 0.13
## 1438 1 1.00 1 1 1 0.75
## 1439 4 4.00 4 6 6 0.17
## 1440 1 5.00 1 2 2 0.10
## 1441 1 5.00 1 1 2 0.05
## 1442 1 4.00 1 NA 2 0.09
## 1443 5 4.40 5 2 4 0.22
## 1444 2 5.00 2 NA 2 0.10
## 1445 2 2.50 2 1 1 2.00
## 1446 1 4.00 1 2 4 0.06
## 1447 1 1.00 1 6 8 0.11
## 1448 203 4.74 203 1 2 9.12
## 1449 120 4.68 120 1 2 5.25
## 1450 14 4.71 14 2 4 0.62
## 1451 1 5.00 1 1 2 0.04
## 1452 1 4.00 1 3 2 0.05
## 1453 1 5.00 1 1 1 0.04
## 1454 1 5.00 1 1 1 0.24
## 1455 1 5.00 1 1 1 0.05
## 1456 1 5.00 1 NA 2 0.53
## 1457 6 4.50 6 3 5 0.56
## 1458 167 4.81 167 1 2 7.59
## 1459 4 4.50 4 1 2 0.18
## 1460 5 5.00 5 1 1 0.24
## 1461 5 4.80 5 1 2 0.24
## 1462 6 5.00 6 1 1 0.52
## 1463 26 4.96 26 1 2 1.20
## 1464 5 5.00 5 1 2 0.25
## 1465 3 2.67 3 3 5 0.23
## 1466 1 5.00 1 1 2 0.16
## 1467 1 4.00 1 1 1 0.06
## 1468 1 5.00 1 1 1 0.06
## 1469 1 0.00 1 NA 2 0.05
## 1470 11 4.91 11 1 2 0.83
## 1471 1 1.00 1 1 1 0.11
## 1472 2 5.00 2 2 2 0.11
## 1473 1 5.00 1 1 1 0.05
## 1474 33 4.48 33 1 2 1.64
## 1475 81 4.68 81 1 2 3.98
## 1476 12 4.67 12 1 2 0.57
## 1477 1 3.00 1 2 4 0.09
## 1478 14 4.36 14 3 4 0.66
## 1479 2 5.00 2 1 2 0.11
## 1480 1 1.00 1 1 2 0.07
## 1481 1 3.00 1 1 2 0.05
## 1482 1 5.00 1 2 2 0.08
## 1483 1 5.00 1 1 1 0.05
## 1484 1 5.00 1 1 2 0.27
## 1485 1 5.00 1 1 2 0.11
## 1486 2 5.00 2 3 4 0.13
## 1487 1 5.00 1 1 2 0.08
## 1488 13 4.85 13 1 2 0.64
## 1489 1 5.00 1 1 2 0.06
## 1490 1 5.00 1 4 4 1.00
## 1491 128 4.73 128 1 2 6.41
## 1492 265 4.81 265 1 2 13.27
## 1493 2 5.00 2 1 3 0.11
## 1494 3 5.00 3 1 3 0.16
## 1495 1 5.00 1 1 3 0.05
## 1496 1 3.00 1 32 1 0.05
## 1497 2 5.00 2 1 3 0.11
## 1498 1 5.00 1 1 3 0.05
## 1499 1 4.00 1 1 3 0.06
## 1500 1 5.00 1 1 3 1.00
## 1501 2 4.50 2 1 3 0.10
## 1502 93 4.92 93 1 2 4.70
## 1503 25 4.76 25 1 2 1.27
## 1504 18 4.94 18 1 2 0.91
## 1505 6 3.83 6 1 3 0.34
## 1506 92 4.82 92 1 2 4.65
## 1507 17 4.41 17 1 2 0.90
## 1508 7 5.00 7 3 8 0.89
## 1509 5 5.00 5 1 2 0.27
## 1510 2 5.00 2 1 3 0.11
## 1511 7 4.14 7 3 8 0.91
## 1512 14 4.50 14 2 5 0.77
## 1513 12 4.58 12 1 2 0.63
## 1514 2 5.00 2 1 4 0.11
## 1515 22 4.95 22 4 6 1.22
## 1516 15 4.80 15 1 3 0.80
## 1517 9 4.33 9 2 6 0.48
## 1518 10 4.50 10 2 5 0.60
## 1519 1 5.00 1 1 2 0.07
## 1520 14 4.64 14 1 4 0.75
## 1521 1 5.00 1 1 2 0.05
## 1522 25 4.60 25 2 4 1.36
## 1523 16 4.81 16 2 5 1.34
## 1524 9 5.00 9 3 8 0.82
## 1525 2 5.00 2 2 3 0.17
## 1526 5 3.80 5 2 3 0.28
## 1527 2 5.00 2 1 3 0.11
## 1528 5 5.00 5 2 4 0.39
## 1529 1 2.00 1 1 3 0.08
## 1530 6 4.67 6 3 4 0.48
## 1531 5 4.60 5 1 2 0.29
## 1532 8 4.50 8 1 2 0.45
## 1533 1 5.00 1 3 4 0.06
## 1534 5 4.20 5 2 3 0.29
## 1535 16 4.81 16 1 2 0.92
## 1536 7 5.00 7 1 2 0.39
## 1537 1 5.00 1 1 2 1.00
## 1538 7 4.71 7 1 2 0.41
## 1539 2 3.00 2 1 3 0.17
## 1540 1 5.00 1 1 2 0.06
## 1541 1 5.00 1 3 4 0.14
## 1542 3 4.33 3 2 2 0.22
## 1543 2 5.00 2 1 2 0.23
## 1544 5 4.80 5 NA 1 0.41
## 1545 1 4.00 1 1 2 0.08
## 1546 1 5.00 1 1 1 0.07
## 1547 1 3.00 1 2 4 0.13
## 1548 1 3.00 1 1 2 0.09
## 1549 2 4.00 2 2 2 0.17
## 1550 2 4.50 2 1 2 0.16
## 1551 1 5.00 1 1 1 0.07
## 1552 1 1.00 1 5 5 0.12
## 1553 2 5.00 2 1 2 1.40
## 1554 2 5.00 2 3 5 0.28
## 1555 17 4.59 17 1 2 1.20
## 1556 9 4.44 9 1 2 0.63
## 1557 1 5.00 1 1 2 0.07
## 1558 1 5.00 1 3 5 0.33
## 1559 1 5.00 1 4 6 0.28
## 1560 8 4.63 8 2 4 0.57
## 1561 13 4.77 13 1 2 0.96
## 1562 4 4.50 4 1 2 0.48
## 1563 4 5.00 4 1 2 0.30
## 1564 1 3.00 1 1 2 0.26
## 1565 9 5.00 9 1 1 0.74
## 1566 2 5.00 2 3 6 0.15
## 1567 2 5.00 2 1 2 0.16
## 1568 2 5.00 2 2 3 1.62
## 1569 1 3.00 1 2 3 1.00
## 1570 9 4.33 9 2 3 0.71
## 1571 3 5.00 3 2 4 0.28
## 1572 1 4.00 1 2 4 0.08
## 1573 6 4.00 6 2 4 0.49
## 1574 3 2.67 3 1 3 0.25
## 1575 4 4.25 4 1 2 0.31
## 1576 3 5.00 3 1 2 0.26
## 1577 1 5.00 1 1 1 0.09
## 1578 1 5.00 1 NA 4 0.08
## 1579 3 4.33 3 1 4 0.28
## 1580 8 4.63 8 1 2 0.65
## 1581 1 4.00 1 3 6 0.10
## 1582 1 5.00 1 4 6 0.10
## 1583 1 3.00 1 1 1 1.00
## 1584 4 4.75 4 2 4 0.38
## 1585 1 5.00 1 2 4 0.09
## 1586 1 5.00 1 2 4 0.12
## 1587 1 5.00 1 3 6 0.08
## 1588 1 5.00 1 1 2 0.12
## 1589 10 4.60 10 2 5 1.04
## 1590 20 4.80 20 1 2 1.86
## 1591 1 5.00 1 2 2 0.17
## 1592 4 5.00 4 1 2 0.37
## 1593 5 5.00 5 1 2 0.47
## 1594 10 4.40 10 1 2 0.88
## 1595 1 5.00 1 1 2 0.09
## 1596 1 3.00 1 2 4 0.12
## 1597 1 5.00 1 1 2 0.24
## 1598 1 5.00 1 1 4 0.24
## 1599 1 5.00 1 1 3 0.53
## 1600 9 4.89 9 2 5 1.00
## 1601 2 4.50 2 NA 0 0.25
## 1602 72 4.65 72 1 2 7.40
## 1603 11 4.73 11 1 2 1.03
## 1604 2 5.00 2 NA 2 0.28
## 1605 3 5.00 3 NA 2 1.02
## 1606 19 4.58 19 1 2 2.15
## 1607 5 5.00 5 NA 2 0.55
## 1608 1 5.00 1 1 2 0.16
## 1609 23 4.74 23 1 2 2.14
## 1610 2 5.00 2 2 2 0.22
## 1611 1 5.00 1 NA 2 0.83
## 1612 1 1.00 1 NA 2 0.13
## 1613 1 5.00 1 NA 2 0.64
## 1614 3 5.00 3 NA 2 1.17
## 1615 52 4.87 52 1 1 4.92
## 1616 1 3.00 1 1 1 0.13
## 1617 4 5.00 4 1 2 0.49
## 1618 7 4.57 7 1 2 0.72
## 1619 6 4.50 6 1 2 1.34
## 1620 6 4.17 6 2 2 1.62
## 1621 7 4.71 7 1 2 1.41
## 1622 1 5.00 1 NA 2 0.11
## 1623 1 5.00 1 1 4 0.18
## 1624 2 5.00 2 1 2 2.00
## 1625 14 4.86 14 2 5 1.41
## 1626 2 5.00 2 2 1 0.37
## 1627 1 5.00 1 1 2 0.21
## 1628 1 5.00 1 1 2 0.16
## 1629 5 4.80 5 1 1 0.56
## 1630 2 5.00 2 2 2 0.26
## 1631 3 5.00 3 1 2 0.36
## 1632 7 4.86 7 2 5 0.72
## 1633 4 5.00 4 1 5 0.41
## 1634 1 4.00 1 2 3 0.53
## 1635 2 5.00 2 1 1 0.23
## 1636 2 5.00 2 2 4 0.21
## 1637 2 5.00 2 1 1 0.24
## 1638 5 4.00 5 2 6 0.56
## 1639 2 4.50 2 1 2 2.00
## 1640 2 4.50 2 6 6 0.23
## 1641 1 5.00 1 1 2 0.29
## 1642 6 5.00 6 1 1 0.98
## 1643 2 5.00 2 1 1 0.25
## 1644 2 5.00 2 2 5 0.23
## 1645 11 4.91 11 1 2 1.61
## 1646 34 4.65 34 1 2 4.16
## 1647 6 4.50 6 1 3 0.92
## 1648 1 5.00 1 1 1 0.12
## 1649 1 4.00 1 1 2 0.29
## 1650 1 5.00 1 1 3 0.15
## 1651 1 5.00 1 1 2 1.00
## 1652 2 4.50 2 2 3 1.58
## 1653 4 3.50 4 2 4 0.55
## 1654 2 5.00 2 2 4 0.73
## 1655 2 4.50 2 4 7 1.09
## 1656 3 5.00 3 1 2 0.43
## 1657 1 3.00 1 1 2 0.17
## 1658 2 5.00 2 1 2 0.87
## 1659 3 4.67 3 1 1 0.49
## 1660 2 5.00 2 1 1 1.15
## 1661 1 5.00 1 1 2 0.32
## 1662 2 2.50 2 1 4 0.36
## 1663 7 5.00 7 2 5 2.50
## 1664 2 4.50 2 1 2 1.58
## 1665 1 5.00 1 1 1 0.17
## 1666 1 5.00 1 NA 2 0.22
## 1667 1 3.00 1 1 2 0.60
## 1668 1 5.00 1 1 2 1.00
## 1669 2 5.00 2 1 2 0.74
## 1670 4 5.00 4 1 2 0.99
## 1671 1 3.00 1 1 2 0.73
## 1672 1 5.00 1 1 2 1.00
## 1673 2 4.50 2 1 2 0.49
## 1674 1 1.00 1 1 1 0.19
## 1675 1 5.00 1 1 2 1.00
## 1676 1 5.00 1 2 4 0.38
## 1677 1 4.00 1 NA 1 0.91
## 1678 23 4.43 23 1 2 4.63
## 1679 10 5.00 10 1 2 2.26
## 1680 3 5.00 3 1 2 2.73
## 1681 1 5.00 1 1 1 0.24
## 1682 3 5.00 3 2 3 0.63
## 1683 7 4.86 7 3 8 2.14
## 1684 1 1.00 1 2 4 0.26
## 1685 2 4.50 2 1 2 1.05
## 1686 4 5.00 4 1 2 1.56
## 1687 1 5.00 1 2 6 0.35
## 1688 3 5.00 3 1 2 1.08
## 1689 1 5.00 1 1 2 1.00
## 1690 2 5.00 2 1 2 0.57
## 1691 1 1.00 1 3 5 0.35
## 1692 1 5.00 1 1 2 1.00
## 1693 3 5.00 3 1 2 0.79
## 1694 2 4.50 2 1 4 1.28
## 1695 3 4.00 3 1 3 0.87
## 1696 2 4.50 2 1 2 0.58
## 1697 1 5.00 1 2 4 0.58
## 1698 1 5.00 1 1 2 1.00
## 1699 1 3.00 1 1 2 0.53
## 1700 2 5.00 2 2 5 1.87
## 1701 1 5.00 1 1 2 0.57
## 1702 1 5.00 1 1 2 0.42
## 1703 1 5.00 1 1 2 0.33
## 1704 1 4.00 1 2 3 1.00
## 1705 1 5.00 1 1 2 1.00
## 1706 1 5.00 1 2 5 0.94
## 1707 1 5.00 1 1 2 1.00
## 1708 3 4.67 3 2 4 1.15
## 1709 1 5.00 1 1 2 0.64
## 1710 4 5.00 4 1 1 3.43
## 1711 1 4.00 1 2 3 1.00
## 1712 1 5.00 1 1 3 1.00
## 1713 1 5.00 1 1 2 1.00
## 1714 2 4.50 2 1 3 2.00
## 1715 5 5.00 5 1 2 3.00
## 1716 1 5.00 1 1 2 1.00
## 1717 1 5.00 1 NA 2 1.00
## 1718 1 5.00 1 2 2 1.00
## 1719 1 2.00 1 2 3 0.73
## 1720 1 5.00 1 1 2 0.94
## 1721 1 5.00 1 1 3 1.00
## 1722 1 4.00 1 4 6 1.00
## 1723 1 5.00 1 1 1 1.00
## 1724 1 5.00 1 1 3 1.00
## 1725 1 4.00 1 1 4 1.00
## host_acceptance_rate host_Superhost no_of_am Amenities_Wifi
## 1 NA 0 30 1
## 2 NA 0 26 1
## 3 NA 0 22 1
## 4 0.77 0 14 1
## 5 0.77 0 15 1
## 6 0.00 0 24 1
## 7 0.77 0 13 1
## 8 0.77 0 14 1
## 9 NA 0 31 1
## 10 0.00 0 24 1
## 11 0.00 0 22 1
## 12 NA 0 23 1
## 13 0.70 0 27 1
## 14 NA 1 19 1
## 15 0.97 0 26 1
## 16 0.77 0 9 1
## 17 NA 1 22 1
## 18 NA 1 22 1
## 19 NA 0 2 0
## 20 NA 1 33 1
## 21 0.67 1 45 1
## 22 1.00 1 37 1
## 23 1.00 1 39 1
## 24 1.00 1 37 1
## 25 0.94 1 47 1
## 26 0.97 0 27 1
## 27 0.97 0 30 1
## 28 NA 0 27 1
## 29 NA 0 26 1
## 30 1.00 1 37 1
## 31 0.70 0 42 1
## 32 NA 0 30 1
## 33 1.00 1 38 1
## 34 1.00 0 12 1
## 35 NA 0 18 1
## 36 0.70 1 18 1
## 37 0.77 0 26 1
## 38 0.00 0 19 1
## 39 0.00 0 27 1
## 40 NA 0 18 1
## 41 NA 0 28 1
## 42 0.97 0 28 1
## 43 1.00 0 17 1
## 44 0.70 1 17 1
## 45 0.70 1 17 1
## 46 0.70 1 16 1
## 47 0.00 0 15 1
## 48 1.00 1 37 1
## 49 1.00 0 17 1
## 50 1.00 0 17 1
## 51 0.00 0 9 1
## 52 0.08 0 33 1
## 53 1.00 1 37 1
## 54 0.70 1 19 1
## 55 NA 0 23 1
## 56 NA 0 23 1
## 57 1.00 1 8 1
## 58 0.49 1 25 1
## 59 NA 1 31 1
## 60 1.00 1 37 1
## 61 0.84 1 23 1
## 62 1.00 1 13 1
## 63 0.84 1 23 1
## 64 0.70 1 14 1
## 65 0.84 0 15 1
## 66 NA 0 23 1
## 67 0.00 1 43 1
## 68 0.84 0 19 1
## 69 0.84 0 19 1
## 70 NA 0 24 1
## 71 NA 0 24 1
## 72 0.59 1 23 1
## 73 1.00 1 37 1
## 74 NA 0 35 1
## 75 0.84 0 17 1
## 76 0.23 0 14 0
## 77 NA 0 24 1
## 78 0.84 0 23 1
## 79 0.84 1 25 1
## 80 1.00 1 33 1
## 81 NA 0 24 1
## 82 0.83 0 8 1
## 83 0.84 0 18 1
## 84 0.63 1 23 1
## 85 NA 0 24 1
## 86 0.63 1 21 1
## 87 0.04 1 26 1
## 88 0.85 1 19 1
## 89 0.85 1 19 1
## 90 0.85 1 19 1
## 91 0.63 1 30 1
## 92 0.63 1 29 1
## 93 0.36 0 12 1
## 94 0.00 1 23 1
## 95 0.00 1 23 1
## 96 0.36 1 18 1
## 97 0.80 0 19 1
## 98 0.80 0 15 1
## 99 0.84 0 15 1
## 100 0.45 1 17 1
## 101 0.45 1 16 1
## 102 0.45 1 11 1
## 103 0.59 1 24 1
## 104 0.36 0 39 1
## 105 0.59 1 27 1
## 106 0.45 1 19 1
## 107 0.84 0 19 1
## 108 0.84 0 18 1
## 109 0.70 1 16 1
## 110 0.84 0 19 1
## 111 0.70 1 16 1
## 112 0.84 0 17 1
## 113 0.84 0 16 1
## 114 0.00 1 40 1
## 115 0.00 0 11 1
## 116 0.36 1 15 1
## 117 0.84 0 20 1
## 118 0.00 0 33 1
## 119 0.70 1 19 1
## 120 0.36 0 13 1
## 121 0.93 0 20 1
## 122 0.70 1 16 1
## 123 0.84 0 18 1
## 124 0.84 0 18 1
## 125 0.84 0 15 1
## 126 0.97 0 31 1
## 127 0.67 1 15 1
## 128 1.00 0 8 1
## 129 0.84 0 19 1
## 130 0.50 1 27 1
## 131 0.67 0 18 1
## 132 1.00 1 39 1
## 133 NA 0 29 1
## 134 0.84 0 15 1
## 135 0.67 0 19 1
## 136 0.67 0 17 1
## 137 0.00 0 17 1
## 138 NA 0 27 1
## 139 0.84 0 18 1
## 140 0.97 0 30 1
## 141 0.84 0 17 1
## 142 0.84 0 16 1
## 143 0.70 1 18 1
## 144 0.70 1 18 1
## 145 0.70 1 20 1
## 146 0.84 0 14 1
## 147 0.50 1 14 1
## 148 0.25 1 22 1
## 149 0.64 1 23 1
## 150 0.84 0 20 1
## 151 1.00 1 12 1
## 152 0.84 0 19 1
## 153 0.84 0 18 1
## 154 0.84 0 19 1
## 155 0.84 0 16 1
## 156 1.00 0 13 1
## 157 0.97 0 32 1
## 158 1.00 1 34 1
## 159 NA 0 16 1
## 160 NA 0 31 1
## 161 NA 0 24 1
## 162 NA 0 24 1
## 163 NA 0 24 1
## 164 0.84 0 20 1
## 165 NA 0 16 1
## 166 0.25 1 21 1
## 167 0.00 0 12 1
## 168 0.84 1 25 1
## 169 NA 0 19 1
## 170 0.84 1 10 1
## 171 0.84 1 23 1
## 172 0.84 1 21 1
## 173 0.84 1 23 1
## 174 0.84 1 23 1
## 175 0.84 1 23 1
## 176 0.84 1 25 1
## 177 0.84 1 11 1
## 178 0.45 1 18 1
## 179 NA 0 9 1
## 180 NA 0 10 1
## 181 NA 0 1 0
## 182 NA 0 8 1
## 183 NA 0 27 1
## 184 NA 0 15 1
## 185 1.00 1 58 1
## 186 0.97 0 33 1
## 187 NA 0 23 1
## 188 NA 0 23 1
## 189 NA 0 24 1
## 190 NA 0 11 1
## 191 NA 0 15 1
## 192 NA 0 9 1
## 193 NA 0 1 0
## 194 1.00 1 36 1
## 195 NA 0 23 1
## 196 NA 0 25 1
## 197 NA 0 22 1
## 198 NA 0 24 1
## 199 NA 0 22 1
## 200 0.25 0 32 1
## 201 0.25 0 33 1
## 202 0.50 0 11 1
## 203 NA 0 24 1
## 204 0.84 0 15 1
## 205 0.00 0 15 1
## 206 0.00 0 16 1
## 207 0.00 0 16 1
## 208 0.84 0 13 1
## 209 0.50 0 10 1
## 210 0.50 0 11 1
## 211 0.50 0 10 1
## 212 0.50 0 9 1
## 213 0.50 0 10 1
## 214 0.50 0 11 1
## 215 NA 0 22 1
## 216 0.75 0 23 1
## 217 1.00 1 20 1
## 218 0.75 0 20 1
## 219 1.00 0 19 1
## 220 0.50 0 10 1
## 221 0.97 0 33 1
## 222 0.80 1 30 1
## 223 1.00 0 18 1
## 224 0.00 0 17 1
## 225 NA 0 11 1
## 226 0.36 1 17 1
## 227 0.36 1 17 1
## 228 0.36 1 18 1
## 229 1.00 0 21 1
## 230 0.22 0 14 1
## 231 0.36 1 17 1
## 232 0.36 1 17 1
## 233 0.36 1 17 1
## 234 0.36 1 18 1
## 235 NA 0 24 1
## 236 0.74 0 31 1
## 237 NA 1 26 1
## 238 NA 0 21 1
## 239 1.00 0 12 1
## 240 0.38 0 19 1
## 241 0.38 0 19 1
## 242 0.38 0 18 1
## 243 0.38 0 19 1
## 244 0.38 0 19 1
## 245 0.38 0 19 1
## 246 0.38 0 19 1
## 247 0.38 0 19 1
## 248 NA 0 15 1
## 249 0.85 0 57 0
## 250 0.91 1 26 1
## 251 0.02 0 37 1
## 252 0.00 0 25 1
## 253 1.00 1 11 1
## 254 1.00 0 30 1
## 255 0.65 1 29 1
## 256 NA 1 23 1
## 257 0.50 1 23 1
## 258 NA 0 13 1
## 259 0.33 0 22 1
## 260 0.65 1 28 1
## 261 NA 0 22 1
## 262 1.00 0 45 1
## 263 0.65 1 28 1
## 264 0.84 1 23 1
## 265 0.84 1 23 1
## 266 0.80 1 31 1
## 267 0.50 1 20 1
## 268 0.59 1 23 1
## 269 0.59 1 24 1
## 270 0.59 1 24 1
## 271 1.00 1 18 1
## 272 0.97 1 18 1
## 273 0.97 1 15 1
## 274 NA 1 13 1
## 275 0.77 0 25 1
## 276 0.97 1 51 1
## 277 0.33 0 20 1
## 278 0.33 0 18 1
## 279 0.46 0 15 1
## 280 0.33 0 13 1
## 281 0.33 0 13 0
## 282 0.33 0 11 1
## 283 0.33 0 11 1
## 284 0.33 0 9 1
## 285 0.33 0 8 1
## 286 0.33 0 16 1
## 287 0.33 0 9 1
## 288 0.77 0 27 1
## 289 0.99 0 24 1
## 290 0.78 0 27 1
## 291 0.88 1 10 1
## 292 0.84 0 20 1
## 293 0.96 0 28 1
## 294 0.00 0 21 1
## 295 0.38 0 34 1
## 296 0.97 0 25 1
## 297 0.84 0 19 1
## 298 1.00 0 22 1
## 299 0.65 1 28 1
## 300 0.91 1 30 1
## 301 0.00 0 25 1
## 302 0.94 1 31 1
## 303 0.84 0 16 1
## 304 0.84 0 16 1
## 305 0.96 0 23 1
## 306 0.84 1 23 1
## 307 0.00 0 24 1
## 308 0.00 0 17 1
## 309 1.00 0 37 1
## 310 1.00 0 18 1
## 311 1.00 0 17 1
## 312 0.84 0 19 1
## 313 NA 1 20 1
## 314 1.00 1 20 1
## 315 0.91 1 29 1
## 316 0.94 1 29 1
## 317 0.84 0 19 1
## 318 1.00 0 25 1
## 319 NA 0 17 1
## 320 0.84 0 17 1
## 321 NA 0 23 0
## 322 1.00 0 18 1
## 323 NA 0 21 1
## 324 1.00 1 20 1
## 325 0.00 0 6 1
## 326 0.84 0 16 1
## 327 0.84 1 23 1
## 328 0.50 0 10 1
## 329 0.97 0 27 1
## 330 0.88 1 25 1
## 331 0.50 0 28 1
## 332 0.00 1 25 1
## 333 1.00 0 21 1
## 334 0.84 0 16 1
## 335 0.00 0 16 1
## 336 0.36 1 14 1
## 337 0.00 0 17 1
## 338 1.00 0 28 1
## 339 NA 0 24 1
## 340 0.97 0 28 1
## 341 0.70 1 15 1
## 342 0.70 1 16 1
## 343 0.84 0 18 1
## 344 NA 0 14 1
## 345 0.25 0 21 1
## 346 0.84 0 14 1
## 347 0.84 0 15 1
## 348 0.70 1 14 1
## 349 1.00 0 25 1
## 350 NA 1 27 1
## 351 0.97 0 28 1
## 352 0.84 1 25 1
## 353 0.81 0 28 1
## 354 NA 0 12 1
## 355 0.97 0 28 1
## 356 0.75 1 27 1
## 357 0.75 1 33 1
## 358 1.00 1 22 1
## 359 NA 0 13 1
## 360 0.71 0 15 1
## 361 0.84 0 14 1
## 362 0.71 0 13 1
## 363 NA 0 20 0
## 364 NA 0 20 1
## 365 0.84 1 26 1
## 366 0.84 1 23 1
## 367 0.71 0 16 1
## 368 NA 0 27 1
## 369 NA 1 17 1
## 370 0.88 0 20 1
## 371 0.88 0 20 1
## 372 0.88 0 19 1
## 373 0.71 0 14 1
## 374 0.40 0 37 1
## 375 0.00 0 27 1
## 376 0.00 0 18 1
## 377 0.00 0 25 1
## 378 0.84 0 13 1
## 379 0.40 1 18 1
## 380 1.00 1 17 1
## 381 NA 1 29 1
## 382 0.33 0 14 1
## 383 0.04 1 19 1
## 384 0.02 0 35 1
## 385 0.88 1 28 1
## 386 0.88 1 16 1
## 387 0.88 1 16 1
## 388 0.38 0 20 1
## 389 0.38 0 18 1
## 390 0.38 0 20 1
## 391 0.90 0 18 1
## 392 0.90 0 18 1
## 393 NA 0 18 1
## 394 0.90 0 19 1
## 395 0.84 0 19 1
## 396 0.84 1 24 1
## 397 0.70 1 16 1
## 398 1.00 0 19 1
## 399 0.91 1 22 1
## 400 0.70 1 18 1
## 401 0.00 0 14 1
## 402 0.00 0 25 1
## 403 0.92 1 42 1
## 404 0.50 0 19 1
## 405 0.50 0 19 1
## 406 0.75 0 19 1
## 407 0.75 0 27 1
## 408 0.89 1 33 1
## 409 0.86 0 20 1
## 410 0.86 0 19 1
## 411 0.86 0 24 1
## 412 0.40 1 34 1
## 413 NA 0 9 1
## 414 0.40 1 32 1
## 415 0.86 0 26 1
## 416 0.78 0 28 1
## 417 NA 1 27 1
## 418 0.50 0 17 1
## 419 0.91 1 28 1
## 420 0.33 0 15 1
## 421 0.97 0 29 1
## 422 0.00 0 13 1
## 423 0.00 0 10 1
## 424 0.23 0 23 1
## 425 0.02 0 38 1
## 426 0.82 1 34 1
## 427 0.84 1 24 1
## 428 1.00 1 12 1
## 429 NA 0 16 1
## 430 0.75 0 16 1
## 431 0.81 0 27 1
## 432 0.00 0 9 1
## 433 0.96 0 32 1
## 434 0.84 1 22 1
## 435 NA 0 17 1
## 436 1.00 0 32 1
## 437 0.00 0 25 1
## 438 0.81 0 28 1
## 439 0.82 0 41 1
## 440 0.75 0 20 1
## 441 0.00 0 9 1
## 442 NA 0 10 1
## 443 0.17 0 14 1
## 444 0.97 0 32 1
## 445 0.84 1 26 1
## 446 0.84 1 35 1
## 447 0.84 1 27 1
## 448 1.00 0 18 1
## 449 1.00 0 19 1
## 450 1.00 0 20 1
## 451 1.00 0 18 1
## 452 1.00 0 18 1
## 453 0.00 0 10 1
## 454 1.00 0 24 1
## 455 1.00 1 51 1
## 456 1.00 0 22 1
## 457 0.00 0 27 1
## 458 0.09 0 17 1
## 459 0.25 0 28 0
## 460 0.88 1 23 1
## 461 0.93 0 12 1
## 462 0.84 1 25 1
## 463 0.84 1 25 1
## 464 1.00 1 13 1
## 465 1.00 0 23 1
## 466 0.00 0 13 1
## 467 1.00 0 27 1
## 468 0.50 0 12 1
## 469 0.89 1 30 1
## 470 1.00 1 34 1
## 471 NA 0 9 1
## 472 0.81 0 27 1
## 473 0.94 1 43 1
## 474 0.94 1 30 1
## 475 1.00 0 15 1
## 476 0.89 0 27 1
## 477 0.86 0 22 1
## 478 0.86 0 25 1
## 479 0.84 1 17 1
## 480 0.86 0 29 1
## 481 0.67 1 22 1
## 482 1.00 0 23 1
## 483 0.97 0 28 1
## 484 0.00 0 12 1
## 485 0.99 0 26 1
## 486 0.84 0 16 1
## 487 NA 0 20 1
## 488 NA 0 20 1
## 489 NA 0 17 1
## 490 NA 0 17 1
## 491 NA 0 18 1
## 492 NA 0 17 1
## 493 NA 0 17 1
## 494 NA 0 17 1
## 495 0.98 1 18 1
## 496 0.84 1 21 1
## 497 0.84 1 24 1
## 498 0.84 1 24 1
## 499 0.89 1 31 1
## 500 1.00 1 38 1
## 501 1.00 1 39 1
## 502 0.00 0 17 1
## 503 0.91 1 37 1
## 504 0.91 1 38 1
## 505 0.00 0 28 1
## 506 0.70 1 24 1
## 507 0.11 0 29 1
## 508 0.00 0 27 1
## 509 0.00 0 24 1
## 510 0.00 0 22 1
## 511 0.21 0 19 1
## 512 0.91 1 28 1
## 513 0.83 0 25 1
## 514 0.71 0 15 1
## 515 NA 0 24 1
## 516 0.71 0 18 1
## 517 0.11 0 32 1
## 518 1.00 1 39 1
## 519 0.00 0 27 1
## 520 0.81 0 27 1
## 521 0.11 0 23 0
## 522 0.00 0 23 1
## 523 0.00 0 23 1
## 524 0.00 0 22 1
## 525 0.00 0 22 1
## 526 0.00 0 22 1
## 527 0.33 0 16 1
## 528 0.91 1 36 1
## 529 0.91 1 37 1
## 530 0.71 0 14 1
## 531 1.00 1 39 1
## 532 1.00 1 39 1
## 533 0.50 0 17 1
## 534 0.50 0 16 1
## 535 0.50 0 16 1
## 536 1.00 1 39 1
## 537 0.98 0 13 0
## 538 NA 0 24 1
## 539 1.00 0 12 1
## 540 1.00 0 12 1
## 541 NA 0 21 1
## 542 0.50 1 33 1
## 543 1.00 0 15 1
## 544 1.00 0 22 1
## 545 0.97 0 27 1
## 546 0.82 0 24 1
## 547 0.90 0 25 1
## 548 NA 0 22 1
## 549 1.00 1 49 1
## 550 0.84 0 17 1
## 551 NA 0 11 1
## 552 0.71 1 23 1
## 553 1.00 1 30 1
## 554 0.97 0 31 1
## 555 0.91 1 31 1
## 556 0.99 1 39 1
## 557 0.99 1 39 1
## 558 0.99 1 35 1
## 559 0.99 1 39 1
## 560 0.99 1 38 1
## 561 0.99 1 40 1
## 562 NA 0 18 1
## 563 1.00 1 31 1
## 564 0.50 0 10 1
## 565 0.89 1 31 1
## 566 NA 0 18 1
## 567 0.86 0 23 1
## 568 0.84 1 23 1
## 569 0.84 1 24 1
## 570 0.84 1 22 1
## 571 0.75 0 19 1
## 572 NA 0 27 0
## 573 0.00 0 19 1
## 574 0.00 0 19 1
## 575 0.00 0 19 1
## 576 0.96 0 23 1
## 577 0.96 0 26 1
## 578 0.00 0 17 1
## 579 0.84 0 19 1
## 580 1.00 0 17 1
## 581 0.96 0 24 1
## 582 0.91 1 37 1
## 583 1.00 0 19 1
## 584 0.81 0 29 1
## 585 0.84 0 19 1
## 586 0.71 0 17 1
## 587 0.81 0 28 1
## 588 1.00 1 36 1
## 589 0.84 0 16 1
## 590 1.00 0 19 1
## 591 0.84 0 20 1
## 592 0.96 1 36 1
## 593 0.96 1 35 1
## 594 0.96 1 36 1
## 595 0.00 0 10 1
## 596 1.00 0 38 1
## 597 1.00 1 25 1
## 598 0.91 1 28 1
## 599 0.97 0 28 1
## 600 NA 0 16 1
## 601 0.84 0 18 1
## 602 0.09 0 13 1
## 603 1.00 0 18 1
## 604 0.00 0 12 1
## 605 1.00 0 14 1
## 606 0.41 0 38 1
## 607 0.73 1 22 1
## 608 0.73 1 18 1
## 609 0.73 1 21 1
## 610 0.73 1 20 1
## 611 0.81 0 28 1
## 612 0.96 1 34 1
## 613 0.81 0 29 1
## 614 0.73 1 21 1
## 615 0.91 1 29 1
## 616 0.91 1 29 1
## 617 0.93 1 32 1
## 618 0.89 1 30 1
## 619 0.86 0 24 1
## 620 NA 0 38 1
## 621 0.81 0 26 1
## 622 0.86 0 18 1
## 623 1.00 0 16 1
## 624 0.73 1 22 1
## 625 0.84 0 15 1
## 626 NA 0 18 1
## 627 1.00 1 58 1
## 628 0.91 1 37 1
## 629 1.00 1 49 1
## 630 1.00 1 49 1
## 631 0.84 0 19 1
## 632 NA 1 23 1
## 633 NA 0 19 1
## 634 1.00 1 49 1
## 635 0.99 1 39 1
## 636 0.99 1 38 1
## 637 0.73 1 20 1
## 638 0.41 0 38 1
## 639 0.91 1 36 1
## 640 0.97 0 28 1
## 641 0.75 0 22 1
## 642 0.41 0 14 1
## 643 0.75 0 19 1
## 644 0.84 1 24 1
## 645 0.84 1 16 1
## 646 0.84 1 24 1
## 647 0.96 0 14 1
## 648 0.36 1 16 1
## 649 0.36 1 15 1
## 650 0.86 0 19 1
## 651 0.89 1 31 1
## 652 NA 0 21 1
## 653 0.93 1 19 1
## 654 0.50 1 22 1
## 655 0.89 1 29 1
## 656 0.30 0 40 1
## 657 1.00 1 37 1
## 658 1.00 1 35 1
## 659 0.84 1 24 1
## 660 1.00 1 28 1
## 661 NA 0 22 1
## 662 0.86 0 24 1
## 663 0.74 0 25 1
## 664 NA 0 24 1
## 665 0.13 0 10 1
## 666 0.13 0 11 1
## 667 0.13 0 10 1
## 668 0.13 0 12 1
## 669 0.13 0 12 1
## 670 0.13 0 11 1
## 671 0.13 0 12 1
## 672 0.13 0 12 1
## 673 0.13 0 11 1
## 674 0.13 0 12 1
## 675 0.13 0 12 1
## 676 0.13 0 12 1
## 677 0.13 0 12 1
## 678 0.13 0 12 1
## 679 0.13 0 12 1
## 680 0.13 0 12 1
## 681 1.00 1 15 1
## 682 0.84 0 16 1
## 683 1.00 1 37 1
## 684 1.00 1 13 1
## 685 0.33 1 30 1
## 686 NA 0 20 1
## 687 1.00 0 19 1
## 688 0.41 0 36 1
## 689 0.41 0 32 1
## 690 0.23 0 22 1
## 691 0.99 0 27 1
## 692 1.00 0 25 1
## 693 NA 0 15 1
## 694 0.36 1 19 1
## 695 0.77 0 27 1
## 696 NA 0 14 1
## 697 NA 0 14 1
## 698 0.84 1 18 1
## 699 0.84 1 15 1
## 700 0.84 1 13 1
## 701 1.00 0 9 1
## 702 0.41 0 37 1
## 703 0.97 0 29 1
## 704 0.91 1 29 1
## 705 0.84 1 24 1
## 706 1.00 1 26 1
## 707 0.97 0 32 1
## 708 0.97 0 23 1
## 709 0.90 0 15 1
## 710 0.90 0 12 1
## 711 0.90 0 20 1
## 712 1.00 0 18 1
## 713 0.13 0 15 1
## 714 0.13 0 14 1
## 715 0.13 0 18 1
## 716 0.13 0 18 1
## 717 0.13 0 17 1
## 718 0.13 0 18 1
## 719 0.13 0 14 1
## 720 0.13 0 17 1
## 721 0.13 0 17 1
## 722 0.13 0 16 1
## 723 0.84 1 24 1
## 724 NA 0 35 1
## 725 1.00 0 16 1
## 726 0.84 1 25 1
## 727 0.90 0 18 1
## 728 0.97 0 28 1
## 729 NA 0 24 1
## 730 NA 0 30 1
## 731 NA 0 23 1
## 732 0.91 0 17 1
## 733 0.91 0 23 1
## 734 0.90 0 14 1
## 735 0.97 0 28 1
## 736 0.73 1 21 1
## 737 0.88 1 17 1
## 738 0.88 1 17 1
## 739 NA 0 23 1
## 740 0.90 0 12 1
## 741 0.00 0 32 1
## 742 1.00 0 24 1
## 743 0.67 0 15 1
## 744 NA 0 21 1
## 745 NA 1 31 1
## 746 0.91 0 10 1
## 747 0.91 0 12 1
## 748 0.90 0 19 1
## 749 0.30 0 38 1
## 750 1.00 1 37 1
## 751 0.84 1 22 1
## 752 1.00 1 34 1
## 753 NA 0 18 1
## 754 0.90 0 21 1
## 755 0.97 0 30 1
## 756 0.84 0 19 1
## 757 0.30 0 38 1
## 758 1.00 0 3 0
## 759 0.23 0 17 1
## 760 0.30 0 39 1
## 761 0.90 0 19 1
## 762 0.90 0 17 1
## 763 0.30 0 35 1
## 764 NA 1 14 1
## 765 0.90 0 16 1
## 766 NA 0 21 1
## 767 0.23 0 17 1
## 768 0.91 1 28 1
## 769 0.90 0 17 1
## 770 NA 1 22 1
## 771 NA 0 36 1
## 772 NA 0 27 1
## 773 1.00 1 36 1
## 774 0.99 0 29 1
## 775 1.00 1 23 1
## 776 0.25 0 44 1
## 777 0.97 0 28 1
## 778 0.30 0 65 1
## 779 0.70 0 23 1
## 780 0.40 1 28 1
## 781 0.67 1 24 0
## 782 0.90 0 19 1
## 783 0.90 0 22 1
## 784 0.90 0 15 1
## 785 0.90 0 16 1
## 786 0.97 0 27 1
## 787 1.00 0 3 0
## 788 NA 0 21 1
## 789 NA 0 23 1
## 790 1.00 1 37 1
## 791 0.90 0 18 1
## 792 0.73 1 19 1
## 793 NA 1 19 1
## 794 1.00 0 40 1
## 795 NA 1 15 1
## 796 NA 1 20 1
## 797 0.84 1 16 1
## 798 NA 0 23 1
## 799 0.23 0 16 0
## 800 0.23 0 15 0
## 801 0.00 0 17 1
## 802 1.00 0 16 1
## 803 NA 0 17 1
## 804 0.83 0 25 1
## 805 0.75 0 17 1
## 806 1.00 1 29 1
## 807 0.67 0 25 1
## 808 0.89 0 27 1
## 809 0.96 0 24 1
## 810 0.89 1 31 1
## 811 0.89 1 28 1
## 812 0.93 1 21 1
## 813 0.93 1 22 1
## 814 0.97 0 15 1
## 815 0.96 0 25 1
## 816 NA 0 35 1
## 817 0.13 0 11 1
## 818 0.74 0 30 1
## 819 1.00 0 15 1
## 820 NA 1 7 1
## 821 0.00 0 32 1
## 822 1.00 0 7 0
## 823 1.00 0 8 1
## 824 1.00 0 7 1
## 825 1.00 0 7 1
## 826 1.00 0 7 1
## 827 0.84 1 15 1
## 828 NA 0 24 1
## 829 0.89 1 32 1
## 830 1.00 0 14 1
## 831 0.23 0 26 1
## 832 0.99 0 31 1
## 833 0.75 0 25 1
## 834 0.94 1 15 1
## 835 0.13 0 11 1
## 836 0.13 0 11 1
## 837 0.13 0 11 1
## 838 0.13 0 11 1
## 839 0.13 0 11 1
## 840 0.81 0 29 1
## 841 0.50 0 15 1
## 842 0.91 1 29 1
## 843 0.89 1 24 1
## 844 NA 0 17 1
## 845 NA 0 17 1
## 846 0.89 1 29 1
## 847 NA 0 9 1
## 848 NA 0 17 1
## 849 0.06 0 22 1
## 850 0.84 1 26 1
## 851 0.84 1 28 1
## 852 1.00 0 20 1
## 853 0.84 1 26 1
## 854 0.84 1 26 1
## 855 0.84 1 26 1
## 856 0.56 1 29 1
## 857 0.89 1 30 1
## 858 0.89 1 33 1
## 859 0.89 1 31 1
## 860 0.73 1 65 1
## 861 1.00 0 19 1
## 862 0.89 1 30 1
## 863 1.00 0 3 0
## 864 0.81 0 27 1
## 865 0.89 1 39 1
## 866 0.89 1 29 1
## 867 0.91 1 28 1
## 868 0.23 0 20 1
## 869 0.81 0 27 1
## 870 0.89 1 31 1
## 871 0.89 1 28 1
## 872 0.89 1 29 1
## 873 0.80 0 29 1
## 874 NA 1 12 1
## 875 0.89 1 32 1
## 876 0.89 1 28 1
## 877 0.96 0 28 1
## 878 1.00 0 18 1
## 879 1.00 0 6 0
## 880 1.00 0 15 1
## 881 0.81 0 30 1
## 882 NA 0 10 1
## 883 0.96 0 28 1
## 884 0.96 0 30 1
## 885 0.89 0 25 1
## 886 0.96 0 26 1
## 887 0.91 1 28 1
## 888 0.96 0 29 1
## 889 0.96 0 30 1
## 890 NA 0 20 1
## 891 NA 0 21 1
## 892 0.96 1 27 1
## 893 0.96 0 28 1
## 894 0.96 0 27 1
## 895 0.97 0 27 1
## 896 0.96 0 26 1
## 897 0.84 0 18 1
## 898 0.50 1 23 1
## 899 0.97 0 28 1
## 900 0.96 1 34 1
## 901 NA 0 23 1
## 902 0.97 0 28 1
## 903 NA 0 25 1
## 904 NA 0 21 1
## 905 0.96 1 16 1
## 906 0.84 1 25 1
## 907 0.93 0 11 1
## 908 0.88 0 26 1
## 909 NA 0 22 1
## 910 0.94 1 13 1
## 911 0.94 1 11 1
## 912 0.97 0 28 1
## 913 0.41 0 14 1
## 914 0.41 0 11 1
## 915 0.89 1 29 1
## 916 0.00 0 13 1
## 917 0.89 1 29 1
## 918 0.41 0 44 1
## 919 0.84 1 25 1
## 920 1.00 0 17 1
## 921 0.00 0 32 1
## 922 1.00 1 30 1
## 923 1.00 0 19 1
## 924 0.41 0 61 1
## 925 0.20 1 26 1
## 926 0.30 0 31 1
## 927 0.20 1 28 1
## 928 0.29 0 9 1
## 929 0.30 0 44 1
## 930 0.30 0 35 1
## 931 1.00 0 18 1
## 932 1.00 0 11 1
## 933 1.00 0 11 1
## 934 NA 0 13 1
## 935 1.00 1 15 1
## 936 1.00 0 20 1
## 937 NA 0 22 1
## 938 1.00 0 27 1
## 939 NA 0 15 1
## 940 NA 0 15 1
## 941 NA 0 15 1
## 942 0.67 0 24 1
## 943 1.00 0 23 1
## 944 0.67 1 34 1
## 945 0.00 0 28 1
## 946 0.96 1 36 1
## 947 0.96 0 28 1
## 948 0.89 1 31 1
## 949 0.89 1 27 1
## 950 NA 0 32 1
## 951 1.00 0 21 1
## 952 0.89 1 27 1
## 953 0.89 1 30 1
## 954 NA 0 15 1
## 955 0.50 0 21 1
## 956 0.89 1 29 1
## 957 0.89 1 33 1
## 958 0.81 0 28 1
## 959 0.50 0 32 1
## 960 NA 1 24 1
## 961 NA 1 25 1
## 962 NA 1 28 1
## 963 0.50 0 24 1
## 964 0.00 0 17 1
## 965 1.00 0 13 1
## 966 0.00 0 17 1
## 967 0.00 0 20 1
## 968 0.00 0 21 1
## 969 1.00 0 28 1
## 970 0.89 1 24 1
## 971 0.89 1 27 1
## 972 0.89 1 35 1
## 973 0.97 0 29 1
## 974 0.89 1 31 1
## 975 0.86 0 31 1
## 976 0.89 1 30 1
## 977 0.89 1 30 1
## 978 0.89 1 31 1
## 979 0.30 0 63 1
## 980 0.89 1 27 1
## 981 NA 0 9 1
## 982 0.99 1 36 1
## 983 0.89 1 26 1
## 984 0.97 0 29 1
## 985 0.96 0 29 1
## 986 0.89 1 32 1
## 987 0.96 0 29 1
## 988 0.97 0 28 1
## 989 1.00 0 23 1
## 990 0.96 0 27 1
## 991 0.30 0 45 1
## 992 0.81 0 27 1
## 993 0.99 0 29 1
## 994 0.91 1 29 1
## 995 0.90 0 17 1
## 996 0.30 0 55 1
## 997 0.91 1 28 1
## 998 1.00 0 17 1
## 999 1.00 0 18 1
## 1000 NA 1 23 1
## 1001 0.30 0 46 1
## 1002 0.96 0 28 1
## 1003 0.91 1 21 1
## 1004 0.91 1 20 1
## 1005 0.91 1 21 1
## 1006 0.91 1 21 1
## 1007 0.91 1 21 1
## 1008 0.91 1 20 1
## 1009 0.91 1 21 1
## 1010 0.91 1 21 1
## 1011 0.91 1 21 1
## 1012 0.91 1 20 1
## 1013 0.91 1 21 1
## 1014 0.91 1 20 1
## 1015 0.91 1 21 1
## 1016 0.91 1 21 1
## 1017 1.00 0 16 1
## 1018 0.14 0 15 0
## 1019 0.89 1 26 1
## 1020 1.00 1 30 1
## 1021 1.00 0 28 1
## 1022 1.00 0 43 1
## 1023 NA 0 14 1
## 1024 NA 0 22 1
## 1025 1.00 0 15 1
## 1026 1.00 0 10 1
## 1027 1.00 1 29 1
## 1028 1.00 0 10 1
## 1029 1.00 0 10 1
## 1030 0.30 0 39 1
## 1031 1.00 1 29 1
## 1032 1.00 1 29 1
## 1033 NA 0 6 1
## 1034 0.84 1 25 1
## 1035 0.91 1 27 1
## 1036 0.88 1 26 1
## 1037 1.00 0 35 1
## 1038 0.99 0 24 1
## 1039 0.67 1 29 1
## 1040 0.50 0 18 1
## 1041 0.97 0 26 1
## 1042 0.97 0 34 1
## 1043 0.89 1 30 1
## 1044 0.89 1 29 1
## 1045 0.91 0 12 1
## 1046 0.97 0 26 1
## 1047 0.09 0 15 1
## 1048 0.31 0 20 1
## 1049 0.97 0 32 1
## 1050 0.91 0 12 1
## 1051 0.91 0 13 1
## 1052 0.91 0 13 1
## 1053 0.91 0 14 1
## 1054 0.91 0 15 1
## 1055 0.91 1 29 1
## 1056 0.96 0 26 1
## 1057 1.00 0 17 1
## 1058 1.00 0 24 1
## 1059 0.00 0 16 1
## 1060 0.00 0 15 1
## 1061 0.00 0 16 1
## 1062 0.00 0 16 1
## 1063 0.00 0 16 1
## 1064 0.00 0 16 1
## 1065 0.60 0 13 1
## 1066 0.00 0 15 1
## 1067 0.81 0 27 1
## 1068 0.00 0 16 1
## 1069 1.00 0 19 1
## 1070 0.91 1 28 1
## 1071 1.00 0 22 1
## 1072 0.89 1 29 1
## 1073 1.00 0 17 1
## 1074 1.00 0 22 1
## 1075 1.00 1 29 1
## 1076 1.00 1 29 1
## 1077 1.00 0 7 1
## 1078 0.00 0 15 1
## 1079 0.00 0 15 1
## 1080 0.91 1 28 1
## 1081 0.00 0 15 1
## 1082 1.00 1 38 1
## 1083 0.97 0 29 1
## 1084 1.00 0 17 1
## 1085 0.00 0 30 1
## 1086 0.91 1 28 1
## 1087 0.00 0 9 1
## 1088 1.00 0 16 1
## 1089 0.84 0 16 1
## 1090 0.84 0 16 1
## 1091 0.41 0 32 1
## 1092 1.00 0 11 1
## 1093 0.96 0 26 1
## 1094 0.84 0 22 1
## 1095 0.97 0 26 1
## 1096 1.00 0 17 1
## 1097 1.00 0 16 1
## 1098 0.96 0 14 1
## 1099 0.96 0 14 1
## 1100 0.96 0 14 1
## 1101 1.00 1 29 1
## 1102 1.00 0 16 1
## 1103 0.31 0 17 1
## 1104 0.00 0 30 1
## 1105 NA 0 8 1
## 1106 0.81 0 28 1
## 1107 NA 0 8 1
## 1108 NA 0 8 1
## 1109 NA 0 8 1
## 1110 NA 0 8 1
## 1111 0.00 0 31 1
## 1112 NA 0 8 1
## 1113 NA 0 8 1
## 1114 0.96 0 15 1
## 1115 0.31 0 17 1
## 1116 0.31 0 23 1
## 1117 0.31 0 22 1
## 1118 0.31 0 20 1
## 1119 0.97 0 28 1
## 1120 0.97 0 25 1
## 1121 0.99 0 29 1
## 1122 0.84 0 16 1
## 1123 0.80 1 32 1
## 1124 NA 0 21 1
## 1125 0.97 0 30 1
## 1126 0.74 1 24 1
## 1127 0.74 1 25 1
## 1128 0.74 1 25 1
## 1129 0.74 1 25 1
## 1130 0.74 1 26 1
## 1131 0.74 1 26 1
## 1132 0.93 1 15 1
## 1133 NA 0 22 1
## 1134 0.93 1 14 1
## 1135 0.93 1 15 1
## 1136 0.96 0 13 1
## 1137 0.96 0 13 1
## 1138 0.96 0 18 1
## 1139 0.41 0 40 1
## 1140 NA 0 16 1
## 1141 0.72 1 31 1
## 1142 0.20 1 28 1
## 1143 0.30 0 40 1
## 1144 0.31 0 22 1
## 1145 1.00 0 12 1
## 1146 0.00 0 27 1
## 1147 0.41 0 38 1
## 1148 0.91 1 27 1
## 1149 0.94 1 29 1
## 1150 0.94 1 29 1
## 1151 0.84 1 15 1
## 1152 NA 0 26 1
## 1153 1.00 0 15 1
## 1154 0.30 0 40 1
## 1155 0.93 0 13 1
## 1156 0.30 0 34 1
## 1157 0.84 0 16 1
## 1158 NA 0 16 1
## 1159 0.36 1 16 1
## 1160 0.94 1 30 1
## 1161 0.99 0 29 1
## 1162 0.00 0 19 1
## 1163 1.00 0 29 1
## 1164 0.96 0 14 1
## 1165 1.00 1 37 1
## 1166 NA 0 26 1
## 1167 0.99 0 28 1
## 1168 0.30 0 38 1
## 1169 0.89 1 24 1
## 1170 0.89 1 25 1
## 1171 0.89 1 24 1
## 1172 0.89 1 25 1
## 1173 0.89 1 25 1
## 1174 NA 0 24 1
## 1175 NA 0 20 1
## 1176 NA 0 20 1
## 1177 0.95 0 28 1
## 1178 1.00 1 43 1
## 1179 0.00 0 10 0
## 1180 1.00 0 19 1
## 1181 1.00 0 14 1
## 1182 1.00 0 17 1
## 1183 1.00 0 20 1
## 1184 1.00 0 17 1
## 1185 0.00 0 11 1
## 1186 NA 0 15 1
## 1187 NA 0 14 0
## 1188 0.94 1 30 1
## 1189 0.30 0 51 1
## 1190 0.31 0 19 1
## 1191 0.40 0 17 1
## 1192 NA 0 13 1
## 1193 0.97 0 30 1
## 1194 0.89 1 19 1
## 1195 1.00 0 9 1
## 1196 0.00 0 16 1
## 1197 0.00 0 16 1
## 1198 0.96 0 18 1
## 1199 1.00 1 16 1
## 1200 0.31 0 18 1
## 1201 0.00 0 17 1
## 1202 0.96 0 17 1
## 1203 0.00 0 35 1
## 1204 0.96 0 12 1
## 1205 1.00 0 25 1
## 1206 0.89 1 20 1
## 1207 0.89 1 27 1
## 1208 0.89 1 24 1
## 1209 1.00 1 19 1
## 1210 0.93 1 15 1
## 1211 0.96 0 28 1
## 1212 1.00 1 27 1
## 1213 0.89 1 18 1
## 1214 0.97 0 27 1
## 1215 0.50 0 15 1
## 1216 0.13 0 11 1
## 1217 0.13 0 11 1
## 1218 0.13 0 11 1
## 1219 0.13 0 11 1
## 1220 0.13 0 11 1
## 1221 1.00 1 24 1
## 1222 0.91 1 28 1
## 1223 0.99 1 39 1
## 1224 0.91 1 28 1
## 1225 0.91 1 28 1
## 1226 1.00 0 15 1
## 1227 0.96 0 14 1
## 1228 1.00 1 12 1
## 1229 1.00 1 20 1
## 1230 0.99 1 40 1
## 1231 0.89 1 26 1
## 1232 1.00 0 16 1
## 1233 1.00 0 17 1
## 1234 NA 0 12 1
## 1235 NA 0 15 1
## 1236 0.96 0 15 1
## 1237 0.84 0 17 1
## 1238 NA 1 26 1
## 1239 0.97 0 28 1
## 1240 0.89 1 24 1
## 1241 NA 0 12 1
## 1242 0.97 0 27 1
## 1243 0.95 0 29 1
## 1244 0.00 0 16 1
## 1245 0.97 0 28 1
## 1246 NA 0 14 1
## 1247 0.89 1 27 1
## 1248 0.89 1 26 1
## 1249 0.00 0 17 1
## 1250 0.00 0 16 1
## 1251 NA 0 33 1
## 1252 0.64 0 23 1
## 1253 0.64 0 24 1
## 1254 0.96 0 28 1
## 1255 0.96 0 16 1
## 1256 0.96 0 14 1
## 1257 0.91 1 28 1
## 1258 0.96 0 16 1
## 1259 0.25 0 37 1
## 1260 0.25 0 31 1
## 1261 0.96 0 16 1
## 1262 0.97 0 28 1
## 1263 0.96 0 16 1
## 1264 0.50 0 13 1
## 1265 0.96 0 16 1
## 1266 0.00 0 14 1
## 1267 0.92 1 16 1
## 1268 0.96 0 18 1
## 1269 0.83 0 10 1
## 1270 0.96 0 28 1
## 1271 1.00 1 15 1
## 1272 0.94 1 30 1
## 1273 NA 0 7 1
## 1274 0.71 0 21 1
## 1275 1.00 0 20 1
## 1276 0.80 0 15 1
## 1277 1.00 1 16 0
## 1278 1.00 1 33 1
## 1279 0.00 0 9 1
## 1280 1.00 0 23 1
## 1281 0.97 0 28 1
## 1282 1.00 1 28 1
## 1283 0.97 0 28 1
## 1284 0.41 0 41 1
## 1285 NA 0 22 1
## 1286 NA 0 23 1
## 1287 0.97 0 28 1
## 1288 0.91 1 28 1
## 1289 0.72 1 17 1
## 1290 0.96 0 16 1
## 1291 NA 0 9 1
## 1292 0.96 0 24 1
## 1293 0.91 1 28 1
## 1294 0.97 0 28 1
## 1295 0.93 1 29 1
## 1296 0.93 1 33 1
## 1297 0.93 1 31 1
## 1298 0.89 1 16 1
## 1299 NA 0 23 1
## 1300 NA 0 20 1
## 1301 0.63 1 24 1
## 1302 0.84 0 19 1
## 1303 0.96 0 21 1
## 1304 1.00 1 18 1
## 1305 0.33 0 17 1
## 1306 NA 0 22 1
## 1307 NA 0 23 1
## 1308 0.91 1 29 1
## 1309 NA 0 20 1
## 1310 0.83 0 15 1
## 1311 0.89 1 22 1
## 1312 0.89 1 20 1
## 1313 0.00 0 13 1
## 1314 1.00 1 58 1
## 1315 0.91 0 11 1
## 1316 0.91 1 28 1
## 1317 0.00 0 9 1
## 1318 NA 0 11 1
## 1319 0.81 0 29 1
## 1320 NA 0 10 1
## 1321 1.00 0 38 1
## 1322 1.00 0 36 1
## 1323 0.41 0 25 1
## 1324 1.00 1 11 1
## 1325 0.90 0 26 1
## 1326 NA 0 16 1
## 1327 0.07 0 17 1
## 1328 0.98 1 41 1
## 1329 0.07 0 19 1
## 1330 0.33 0 14 1
## 1331 0.97 0 23 1
## 1332 0.07 0 20 1
## 1333 0.07 0 22 1
## 1334 0.07 0 20 1
## 1335 0.07 0 19 1
## 1336 NA 0 32 1
## 1337 0.07 0 19 1
## 1338 1.00 0 20 1
## 1339 0.07 0 18 1
## 1340 0.33 0 15 1
## 1341 0.33 0 14 1
## 1342 0.71 0 23 1
## 1343 0.07 0 19 1
## 1344 0.71 0 21 1
## 1345 0.71 0 19 1
## 1346 NA 0 19 1
## 1347 0.71 0 15 1
## 1348 0.71 0 22 1
## 1349 0.80 0 31 1
## 1350 0.63 1 25 1
## 1351 0.89 1 24 1
## 1352 0.71 0 22 1
## 1353 0.71 0 22 1
## 1354 NA 0 15 1
## 1355 0.71 0 16 1
## 1356 0.99 1 40 1
## 1357 0.99 1 34 1
## 1358 0.57 0 30 1
## 1359 0.71 0 21 1
## 1360 0.71 0 22 1
## 1361 0.07 0 20 1
## 1362 1.00 1 38 1
## 1363 0.71 0 21 1
## 1364 0.71 0 21 1
## 1365 0.71 0 22 1
## 1366 0.30 0 38 1
## 1367 0.71 0 21 1
## 1368 0.71 0 21 1
## 1369 0.71 0 22 1
## 1370 0.71 0 22 1
## 1371 0.71 0 21 1
## 1372 0.00 0 23 1
## 1373 1.00 0 21 1
## 1374 0.00 1 26 1
## 1375 0.80 0 30 1
## 1376 0.99 1 39 1
## 1377 0.00 1 24 1
## 1378 0.71 0 22 1
## 1379 0.71 0 21 1
## 1380 1.00 0 11 1
## 1381 0.00 1 24 1
## 1382 0.57 0 29 1
## 1383 0.07 0 14 1
## 1384 0.07 0 13 1
## 1385 0.00 1 23 1
## 1386 0.39 0 24 1
## 1387 0.07 0 17 1
## 1388 0.00 0 13 1
## 1389 0.77 0 25 1
## 1390 0.71 0 21 1
## 1391 0.71 0 21 1
## 1392 NA 1 20 1
## 1393 0.09 0 28 1
## 1394 NA 0 15 1
## 1395 0.99 1 35 1
## 1396 NA 0 13 1
## 1397 0.33 0 9 1
## 1398 0.99 1 37 1
## 1399 1.00 0 16 1
## 1400 0.99 1 36 1
## 1401 0.60 0 31 1
## 1402 0.60 0 32 1
## 1403 0.41 0 37 1
## 1404 1.00 1 33 1
## 1405 1.00 0 34 1
## 1406 0.00 0 15 1
## 1407 1.00 0 16 1
## 1408 0.50 0 11 1
## 1409 1.00 0 36 1
## 1410 1.00 0 16 1
## 1411 0.33 0 17 1
## 1412 0.97 0 28 1
## 1413 0.96 0 28 1
## 1414 0.00 0 15 1
## 1415 0.25 0 8 1
## 1416 0.96 0 25 1
## 1417 0.99 0 27 1
## 1418 0.97 0 28 1
## 1419 0.07 0 16 1
## 1420 0.07 0 17 1
## 1421 0.00 0 14 1
## 1422 0.07 0 18 1
## 1423 0.07 0 19 1
## 1424 0.95 0 28 1
## 1425 0.00 0 13 1
## 1426 1.00 1 27 1
## 1427 NA 0 21 1
## 1428 1.00 1 27 1
## 1429 0.99 1 28 1
## 1430 0.99 1 28 1
## 1431 0.94 1 29 1
## 1432 0.00 0 8 1
## 1433 0.00 0 21 1
## 1434 0.97 0 28 1
## 1435 0.41 0 56 1
## 1436 0.40 0 15 1
## 1437 0.89 1 26 1
## 1438 0.60 0 17 1
## 1439 0.33 0 17 1
## 1440 1.00 0 17 1
## 1441 0.89 1 24 1
## 1442 0.99 1 36 1
## 1443 0.57 0 28 1
## 1444 0.89 1 25 1
## 1445 0.67 0 24 1
## 1446 0.31 0 16 1
## 1447 0.07 0 19 1
## 1448 0.99 0 15 1
## 1449 0.99 0 23 1
## 1450 0.99 0 24 1
## 1451 NA 0 14 1
## 1452 0.27 0 13 1
## 1453 0.00 0 11 1
## 1454 0.91 1 28 1
## 1455 0.96 0 28 1
## 1456 0.89 1 26 1
## 1457 1.00 0 24 1
## 1458 1.00 1 19 1
## 1459 0.89 0 15 1
## 1460 0.89 0 17 1
## 1461 0.27 0 10 1
## 1462 0.77 0 31 1
## 1463 0.59 1 22 1
## 1464 0.59 1 18 1
## 1465 0.95 0 26 1
## 1466 0.59 1 18 1
## 1467 0.97 0 28 1
## 1468 0.96 0 28 1
## 1469 0.25 0 17 1
## 1470 0.71 0 21 1
## 1471 1.00 0 6 1
## 1472 0.80 1 33 1
## 1473 0.96 0 26 1
## 1474 1.00 0 15 1
## 1475 1.00 0 18 1
## 1476 0.80 1 34 1
## 1477 0.41 0 36 1
## 1478 0.74 0 33 1
## 1479 0.89 1 18 1
## 1480 NA 0 12 1
## 1481 0.91 0 14 1
## 1482 1.00 1 9 1
## 1483 0.97 0 28 1
## 1484 0.30 0 31 1
## 1485 0.65 1 23 1
## 1486 NA 0 19 1
## 1487 NA 0 17 1
## 1488 0.79 1 32 1
## 1489 0.96 0 16 1
## 1490 0.75 0 19 1
## 1491 1.00 1 15 1
## 1492 1.00 1 11 1
## 1493 0.88 1 16 1
## 1494 0.88 1 17 1
## 1495 0.88 1 17 1
## 1496 0.00 0 4 0
## 1497 0.88 1 17 1
## 1498 0.84 1 17 1
## 1499 0.84 1 17 1
## 1500 0.84 1 17 1
## 1501 0.84 1 17 1
## 1502 1.00 1 19 1
## 1503 1.00 1 19 1
## 1504 0.00 1 25 1
## 1505 0.99 0 24 1
## 1506 1.00 1 19 1
## 1507 1.00 1 19 1
## 1508 0.74 1 25 1
## 1509 0.88 1 16 1
## 1510 0.84 1 17 1
## 1511 0.74 1 25 1
## 1512 0.74 1 24 1
## 1513 0.59 1 17 1
## 1514 0.96 0 16 1
## 1515 0.50 1 36 1
## 1516 NA 0 20 1
## 1517 0.96 0 17 1
## 1518 0.74 1 25 1
## 1519 0.96 0 15 1
## 1520 0.96 0 22 1
## 1521 NA 0 11 1
## 1522 0.96 0 17 1
## 1523 0.74 1 24 1
## 1524 0.74 1 25 1
## 1525 0.75 1 58 1
## 1526 0.24 0 29 1
## 1527 0.74 0 21 1
## 1528 0.24 0 30 1
## 1529 0.24 0 16 1
## 1530 0.74 0 25 1
## 1531 0.25 0 48 1
## 1532 0.96 0 16 1
## 1533 0.50 1 24 1
## 1534 0.24 0 32 1
## 1535 0.74 0 29 1
## 1536 0.74 0 31 1
## 1537 0.31 0 9 1
## 1538 0.65 1 24 1
## 1539 0.24 0 29 1
## 1540 0.65 1 24 1
## 1541 0.80 1 46 1
## 1542 0.65 1 24 1
## 1543 0.85 1 22 1
## 1544 0.96 0 17 1
## 1545 0.31 0 20 1
## 1546 NA 0 11 1
## 1547 0.24 0 31 1
## 1548 1.00 0 17 1
## 1549 0.99 0 19 1
## 1550 0.89 1 24 1
## 1551 0.96 0 31 1
## 1552 0.74 0 12 1
## 1553 0.41 0 48 1
## 1554 0.95 0 26 1
## 1555 0.99 0 24 1
## 1556 0.59 1 24 1
## 1557 1.00 0 34 1
## 1558 1.00 0 33 1
## 1559 1.00 0 37 1
## 1560 0.33 0 31 1
## 1561 1.00 1 12 1
## 1562 1.00 1 13 1
## 1563 1.00 1 12 1
## 1564 0.84 0 17 1
## 1565 0.97 1 25 1
## 1566 0.71 0 14 1
## 1567 0.96 0 20 1
## 1568 0.96 0 20 1
## 1569 0.96 0 20 1
## 1570 0.96 0 20 1
## 1571 0.96 0 20 1
## 1572 0.96 0 20 1
## 1573 0.96 0 20 1
## 1574 0.99 0 17 1
## 1575 0.99 0 18 1
## 1576 0.84 0 16 1
## 1577 0.99 0 18 1
## 1578 0.89 1 26 1
## 1579 0.93 0 13 1
## 1580 0.93 1 13 1
## 1581 0.31 0 18 1
## 1582 0.41 0 43 1
## 1583 1.00 0 11 1
## 1584 NA 1 27 1
## 1585 0.96 0 15 1
## 1586 0.96 0 14 1
## 1587 0.71 0 14 1
## 1588 0.65 1 23 1
## 1589 1.00 0 19 1
## 1590 1.00 1 17 1
## 1591 1.00 1 17 1
## 1592 1.00 1 17 1
## 1593 1.00 1 17 1
## 1594 1.00 1 16 1
## 1595 0.67 0 23 1
## 1596 0.95 0 16 1
## 1597 0.95 0 22 1
## 1598 0.97 0 20 1
## 1599 0.97 0 21 1
## 1600 1.00 0 14 1
## 1601 1.00 0 35 0
## 1602 1.00 0 14 1
## 1603 1.00 0 14 1
## 1604 0.89 1 26 1
## 1605 0.89 1 27 1
## 1606 0.99 1 14 1
## 1607 0.89 1 30 1
## 1608 0.96 1 17 1
## 1609 0.99 1 14 1
## 1610 0.99 1 14 1
## 1611 0.96 0 10 1
## 1612 0.96 0 9 1
## 1613 0.89 1 26 1
## 1614 0.89 1 27 1
## 1615 1.00 1 14 1
## 1616 1.00 1 14 1
## 1617 1.00 1 14 1
## 1618 1.00 1 14 1
## 1619 0.99 0 14 1
## 1620 0.99 0 15 1
## 1621 0.99 0 15 1
## 1622 0.80 1 14 1
## 1623 0.95 0 19 1
## 1624 0.41 0 29 1
## 1625 0.98 1 38 1
## 1626 1.00 0 19 1
## 1627 0.65 1 23 1
## 1628 0.65 1 24 1
## 1629 0.65 1 23 1
## 1630 0.65 1 23 1
## 1631 0.82 1 34 1
## 1632 0.74 1 33 1
## 1633 0.80 0 18 1
## 1634 0.72 1 25 1
## 1635 0.96 0 29 1
## 1636 0.80 0 25 1
## 1637 0.97 0 29 1
## 1638 0.59 0 23 1
## 1639 1.00 0 21 1
## 1640 0.72 1 20 1
## 1641 0.84 0 18 1
## 1642 1.00 1 20 1
## 1643 1.00 1 13 1
## 1644 1.00 0 15 1
## 1645 0.99 1 12 1
## 1646 1.00 0 12 1
## 1647 0.97 0 21 1
## 1648 0.29 0 15 1
## 1649 0.95 0 22 1
## 1650 0.99 0 24 1
## 1651 0.96 1 9 1
## 1652 0.72 1 26 1
## 1653 1.00 0 13 1
## 1654 1.00 0 12 1
## 1655 1.00 0 11 1
## 1656 0.84 1 19 1
## 1657 0.84 0 18 1
## 1658 0.30 0 45 1
## 1659 0.92 1 18 1
## 1660 0.99 0 16 1
## 1661 0.74 1 42 1
## 1662 0.97 0 19 1
## 1663 0.92 0 45 1
## 1664 1.00 0 18 1
## 1665 0.97 0 29 1
## 1666 0.80 1 13 1
## 1667 0.96 0 20 1
## 1668 0.99 1 48 1
## 1669 0.99 1 48 1
## 1670 0.99 1 38 1
## 1671 1.00 0 30 1
## 1672 0.99 1 40 1
## 1673 0.99 1 39 1
## 1674 0.97 0 28 1
## 1675 0.96 0 19 1
## 1676 0.71 0 16 1
## 1677 1.00 0 13 1
## 1678 0.99 0 16 1
## 1679 0.96 1 24 1
## 1680 0.96 1 22 1
## 1681 1.00 1 14 1
## 1682 0.71 0 17 1
## 1683 0.74 1 23 1
## 1684 0.99 0 19 1
## 1685 1.00 0 10 1
## 1686 1.00 0 9 1
## 1687 0.73 1 63 1
## 1688 0.95 0 17 1
## 1689 0.20 0 36 1
## 1690 0.84 1 15 1
## 1691 1.00 0 6 0
## 1692 1.00 0 10 1
## 1693 1.00 1 6 1
## 1694 0.96 0 23 1
## 1695 0.99 0 21 1
## 1696 1.00 0 54 1
## 1697 0.41 0 39 1
## 1698 0.84 1 15 1
## 1699 0.84 1 13 1
## 1700 0.74 1 34 1
## 1701 0.84 1 15 1
## 1702 0.84 1 15 1
## 1703 0.71 0 14 1
## 1704 0.61 0 13 1
## 1705 0.84 1 17 1
## 1706 1.00 1 28 1
## 1707 0.47 0 29 1
## 1708 0.59 1 31 1
## 1709 0.59 1 37 1
## 1710 0.86 1 12 1
## 1711 0.61 0 9 1
## 1712 0.84 1 19 1
## 1713 0.31 0 19 1
## 1714 0.88 1 19 1
## 1715 0.85 0 39 1
## 1716 0.90 0 42 1
## 1717 0.31 0 9 1
## 1718 0.90 0 45 1
## 1719 0.50 0 13 1
## 1720 0.30 0 45 1
## 1721 0.88 1 17 1
## 1722 0.41 0 33 1
## 1723 1.00 0 9 1
## 1724 0.80 0 29 1
## 1725 0.96 0 19 1
## Amenities_Shampoo Amenities_Kitchen Amenities_Long_Term Amenities_Washer
## 1 1 1 1 1
## 2 1 1 1 1
## 3 1 1 1 1
## 4 1 1 1 1
## 5 1 1 1 1
## 6 1 1 1 1
## 7 1 1 1 1
## 8 1 1 1 1
## 9 1 1 1 1
## 10 1 1 1 1
## 11 0 1 1 1
## 12 1 0 1 1
## 13 1 1 1 1
## 14 1 1 1 1
## 15 0 1 1 1
## 16 1 0 1 0
## 17 1 1 1 1
## 18 1 1 1 1
## 19 0 0 1 0
## 20 1 1 1 1
## 21 1 1 1 0
## 22 1 1 1 1
## 23 1 1 1 1
## 24 1 1 1 1
## 25 1 1 1 1
## 26 0 1 1 1
## 27 0 1 1 1
## 28 1 1 1 1
## 29 1 1 1 1
## 30 1 1 1 1
## 31 1 1 1 1
## 32 1 1 1 1
## 33 1 1 1 1
## 34 0 1 1 1
## 35 1 1 1 1
## 36 0 1 1 1
## 37 0 1 1 1
## 38 1 0 1 0
## 39 1 1 1 1
## 40 1 0 1 1
## 41 1 1 1 1
## 42 0 1 1 1
## 43 1 0 0 1
## 44 0 1 1 1
## 45 0 1 1 1
## 46 0 1 1 1
## 47 0 1 1 1
## 48 1 1 1 1
## 49 1 0 1 1
## 50 1 0 1 1
## 51 0 1 1 1
## 52 1 1 1 1
## 53 1 1 1 1
## 54 0 1 1 1
## 55 1 1 1 1
## 56 1 1 1 1
## 57 0 1 1 1
## 58 1 1 1 1
## 59 1 1 1 1
## 60 1 1 1 1
## 61 1 1 1 0
## 62 0 1 1 1
## 63 1 1 1 0
## 64 0 1 1 1
## 65 0 1 1 1
## 66 1 1 1 1
## 67 1 1 1 1
## 68 0 1 1 1
## 69 0 1 1 1
## 70 1 1 1 1
## 71 1 1 1 1
## 72 0 1 1 1
## 73 1 1 1 1
## 74 1 1 1 1
## 75 0 1 1 1
## 76 1 1 1 1
## 77 1 1 1 1
## 78 0 1 1 1
## 79 1 1 1 0
## 80 1 1 1 1
## 81 1 1 1 1
## 82 0 1 1 0
## 83 0 1 1 1
## 84 1 0 1 1
## 85 1 1 1 1
## 86 1 0 1 1
## 87 1 1 1 1
## 88 1 1 1 0
## 89 1 1 1 0
## 90 1 1 1 0
## 91 1 1 1 1
## 92 1 1 1 1
## 93 1 1 1 1
## 94 1 0 1 0
## 95 1 0 1 0
## 96 1 1 1 1
## 97 0 0 1 1
## 98 0 0 1 1
## 99 0 1 1 1
## 100 1 0 1 1
## 101 1 0 1 1
## 102 1 0 1 0
## 103 0 1 1 1
## 104 1 1 1 1
## 105 0 1 1 1
## 106 1 0 1 1
## 107 0 1 1 1
## 108 0 1 1 1
## 109 0 1 1 1
## 110 0 1 1 1
## 111 0 1 1 1
## 112 0 1 1 1
## 113 0 1 1 1
## 114 1 1 1 1
## 115 0 1 0 1
## 116 1 1 1 1
## 117 0 1 1 1
## 118 0 1 1 1
## 119 0 1 1 0
## 120 1 1 1 1
## 121 0 1 1 1
## 122 0 1 1 1
## 123 0 1 1 1
## 124 0 1 1 1
## 125 0 1 1 1
## 126 1 1 1 1
## 127 1 1 1 1
## 128 0 0 1 0
## 129 0 1 1 1
## 130 1 1 1 1
## 131 1 1 1 1
## 132 0 0 1 0
## 133 1 1 1 1
## 134 0 1 1 1
## 135 1 1 1 1
## 136 1 1 1 1
## 137 1 1 1 1
## 138 1 1 1 1
## 139 0 1 1 1
## 140 0 1 1 1
## 141 0 1 1 1
## 142 0 1 1 1
## 143 0 1 1 1
## 144 0 1 1 1
## 145 0 1 1 1
## 146 0 1 1 0
## 147 0 1 1 1
## 148 1 1 1 1
## 149 1 1 1 1
## 150 0 1 1 1
## 151 1 1 1 1
## 152 0 1 1 1
## 153 0 1 1 1
## 154 0 1 1 1
## 155 0 1 1 1
## 156 1 0 1 0
## 157 1 1 1 1
## 158 0 0 1 1
## 159 1 0 1 1
## 160 1 1 1 1
## 161 1 1 1 1
## 162 1 1 1 1
## 163 1 1 1 1
## 164 0 1 1 1
## 165 1 1 1 1
## 166 1 1 1 1
## 167 1 1 1 0
## 168 1 1 1 0
## 169 0 1 1 1
## 170 1 1 1 1
## 171 1 1 1 1
## 172 1 1 1 1
## 173 1 1 1 1
## 174 1 1 1 1
## 175 1 1 1 1
## 176 1 1 1 1
## 177 1 1 1 1
## 178 1 0 1 1
## 179 0 0 1 1
## 180 0 0 1 1
## 181 0 0 1 0
## 182 1 0 1 0
## 183 1 1 1 1
## 184 1 0 1 1
## 185 1 1 1 1
## 186 1 1 1 1
## 187 1 1 1 1
## 188 1 1 1 1
## 189 1 1 1 1
## 190 0 0 1 1
## 191 1 0 1 1
## 192 0 0 1 1
## 193 0 0 1 0
## 194 1 1 1 1
## 195 1 1 1 1
## 196 1 0 1 1
## 197 1 0 1 1
## 198 1 0 1 1
## 199 1 0 1 1
## 200 1 1 1 1
## 201 1 1 1 1
## 202 0 0 1 1
## 203 0 0 1 1
## 204 0 1 1 1
## 205 1 0 1 1
## 206 1 0 1 1
## 207 1 0 1 1
## 208 0 1 1 1
## 209 0 0 1 1
## 210 0 0 1 1
## 211 0 0 1 1
## 212 0 0 1 1
## 213 0 0 1 1
## 214 0 0 1 1
## 215 1 1 1 1
## 216 1 1 1 1
## 217 1 1 1 1
## 218 0 0 1 1
## 219 1 0 1 1
## 220 0 1 1 1
## 221 1 1 1 1
## 222 1 0 1 1
## 223 1 0 1 1
## 224 1 0 1 1
## 225 1 0 1 0
## 226 1 0 1 1
## 227 1 1 1 1
## 228 1 1 1 1
## 229 1 0 1 1
## 230 1 1 1 1
## 231 1 1 1 1
## 232 1 1 1 1
## 233 1 1 1 1
## 234 1 1 1 1
## 235 1 0 1 1
## 236 1 1 0 1
## 237 1 0 1 1
## 238 1 0 1 0
## 239 1 0 1 1
## 240 0 0 1 1
## 241 0 0 1 1
## 242 0 0 1 1
## 243 0 0 1 1
## 244 0 0 1 1
## 245 0 0 1 1
## 246 0 0 1 1
## 247 0 0 1 1
## 248 1 0 1 1
## 249 1 1 1 1
## 250 0 1 1 1
## 251 1 1 1 1
## 252 1 1 1 1
## 253 0 1 1 1
## 254 1 1 1 1
## 255 1 1 1 1
## 256 1 1 1 1
## 257 1 0 1 1
## 258 1 0 1 0
## 259 1 1 1 1
## 260 1 1 1 1
## 261 0 1 1 1
## 262 1 1 1 1
## 263 1 1 1 1
## 264 1 1 1 1
## 265 1 1 1 1
## 266 1 1 1 1
## 267 1 1 1 1
## 268 0 1 1 1
## 269 0 1 1 1
## 270 0 1 1 1
## 271 1 0 1 1
## 272 1 1 1 1
## 273 1 1 1 1
## 274 1 0 1 1
## 275 0 1 1 1
## 276 1 1 1 1
## 277 1 0 1 1
## 278 1 0 1 1
## 279 1 1 1 1
## 280 1 0 1 1
## 281 1 0 1 1
## 282 1 0 1 1
## 283 1 0 1 1
## 284 1 0 1 1
## 285 1 0 1 1
## 286 1 0 1 1
## 287 1 0 1 1
## 288 0 1 1 1
## 289 1 1 1 1
## 290 1 1 1 1
## 291 1 1 1 1
## 292 0 1 1 1
## 293 1 1 1 1
## 294 1 1 1 1
## 295 1 1 1 1
## 296 0 1 1 1
## 297 0 1 1 1
## 298 0 1 1 1
## 299 1 1 1 1
## 300 0 1 1 1
## 301 1 1 1 1
## 302 1 1 1 1
## 303 0 1 1 1
## 304 0 1 1 1
## 305 1 0 1 1
## 306 1 1 1 1
## 307 1 1 1 1
## 308 1 1 0 1
## 309 1 1 1 1
## 310 1 0 1 1
## 311 1 0 1 1
## 312 0 1 1 1
## 313 1 0 1 1
## 314 1 0 1 1
## 315 0 1 1 1
## 316 1 1 1 1
## 317 0 1 1 1
## 318 1 0 1 1
## 319 1 1 1 1
## 320 0 1 1 1
## 321 0 1 1 1
## 322 1 1 1 1
## 323 1 0 1 1
## 324 1 1 1 1
## 325 0 1 1 1
## 326 0 1 1 1
## 327 1 1 1 1
## 328 0 0 1 1
## 329 0 1 1 1
## 330 1 1 1 1
## 331 1 1 1 0
## 332 1 0 1 0
## 333 1 1 1 1
## 334 0 1 1 1
## 335 1 1 1 1
## 336 0 1 1 1
## 337 0 0 1 1
## 338 1 1 1 1
## 339 1 1 1 1
## 340 0 1 1 1
## 341 0 1 1 1
## 342 0 1 1 1
## 343 0 1 1 1
## 344 0 1 1 1
## 345 1 1 1 1
## 346 0 1 1 1
## 347 0 1 1 1
## 348 0 1 1 1
## 349 0 1 1 1
## 350 1 1 1 1
## 351 1 1 1 1
## 352 1 1 1 1
## 353 0 1 1 1
## 354 0 1 1 1
## 355 0 1 1 1
## 356 1 1 1 1
## 357 1 1 1 1
## 358 1 1 1 1
## 359 1 0 1 0
## 360 0 1 1 1
## 361 0 1 1 1
## 362 0 1 1 1
## 363 1 1 1 1
## 364 1 1 1 1
## 365 1 1 1 0
## 366 1 1 1 0
## 367 0 1 1 1
## 368 1 1 1 1
## 369 0 0 1 1
## 370 1 1 1 1
## 371 1 1 1 1
## 372 1 0 1 1
## 373 0 1 1 1
## 374 1 1 1 1
## 375 1 1 1 1
## 376 0 1 1 1
## 377 1 1 1 1
## 378 0 1 1 1
## 379 1 1 1 1
## 380 0 1 1 1
## 381 1 1 1 1
## 382 1 0 1 1
## 383 1 1 1 1
## 384 1 1 1 1
## 385 1 1 1 1
## 386 1 1 1 1
## 387 1 1 1 1
## 388 0 0 1 1
## 389 0 0 1 1
## 390 1 0 1 1
## 391 1 1 1 1
## 392 1 1 1 1
## 393 1 1 1 1
## 394 1 1 1 1
## 395 0 1 1 1
## 396 1 1 1 1
## 397 0 1 1 1
## 398 1 0 1 1
## 399 1 0 1 1
## 400 0 1 1 1
## 401 1 0 1 0
## 402 1 1 1 1
## 403 1 1 1 1
## 404 1 1 1 1
## 405 1 1 1 1
## 406 0 0 1 1
## 407 0 1 1 1
## 408 1 1 1 1
## 409 0 1 1 1
## 410 0 1 1 1
## 411 1 1 1 1
## 412 1 1 1 1
## 413 0 1 1 1
## 414 1 1 1 1
## 415 1 1 1 1
## 416 1 1 1 1
## 417 1 1 1 1
## 418 1 1 1 1
## 419 1 0 1 1
## 420 1 0 1 1
## 421 0 1 1 1
## 422 1 1 1 0
## 423 1 1 1 0
## 424 0 1 1 1
## 425 1 1 1 1
## 426 1 1 1 1
## 427 1 1 1 1
## 428 0 1 1 1
## 429 0 0 1 0
## 430 0 0 1 1
## 431 0 1 1 1
## 432 0 1 1 1
## 433 1 1 1 1
## 434 1 0 1 1
## 435 0 0 1 0
## 436 1 1 1 1
## 437 1 1 1 1
## 438 0 1 1 1
## 439 1 1 1 1
## 440 0 0 1 1
## 441 0 1 1 1
## 442 0 0 1 0
## 443 1 0 1 1
## 444 1 1 1 1
## 445 1 1 1 1
## 446 1 1 1 0
## 447 1 1 1 0
## 448 1 0 1 0
## 449 1 0 1 0
## 450 1 1 1 0
## 451 1 0 1 0
## 452 1 0 1 0
## 453 1 0 1 0
## 454 1 1 1 1
## 455 1 1 1 1
## 456 1 1 1 1
## 457 1 1 1 1
## 458 1 1 1 1
## 459 1 1 1 1
## 460 1 1 1 1
## 461 0 1 1 1
## 462 1 1 1 1
## 463 1 1 1 1
## 464 0 1 1 1
## 465 1 1 1 1
## 466 0 1 1 1
## 467 1 1 1 1
## 468 0 0 1 1
## 469 1 1 1 1
## 470 1 1 1 1
## 471 0 1 1 1
## 472 0 1 1 1
## 473 1 1 1 1
## 474 1 1 1 1
## 475 0 1 1 1
## 476 1 1 1 1
## 477 0 1 1 1
## 478 1 1 1 1
## 479 1 1 1 1
## 480 0 1 1 1
## 481 1 1 1 1
## 482 0 0 1 1
## 483 0 1 1 1
## 484 1 0 0 1
## 485 1 1 1 1
## 486 0 1 1 1
## 487 1 0 1 1
## 488 0 1 1 1
## 489 0 0 1 1
## 490 0 0 1 1
## 491 0 0 1 1
## 492 0 0 1 1
## 493 0 0 1 1
## 494 0 0 1 1
## 495 1 1 1 1
## 496 1 1 1 1
## 497 1 1 1 1
## 498 1 1 1 1
## 499 1 1 1 1
## 500 1 1 1 1
## 501 1 1 1 1
## 502 1 1 1 1
## 503 1 1 1 1
## 504 1 1 1 1
## 505 0 1 1 1
## 506 0 1 1 1
## 507 1 1 1 1
## 508 0 1 1 1
## 509 0 1 1 1
## 510 0 1 1 1
## 511 1 1 1 1
## 512 0 1 1 1
## 513 1 0 1 1
## 514 0 1 1 1
## 515 1 0 1 1
## 516 0 1 1 1
## 517 1 1 1 1
## 518 1 1 1 1
## 519 0 1 1 1
## 520 0 1 1 1
## 521 1 1 1 1
## 522 0 1 1 1
## 523 0 1 1 1
## 524 0 1 1 1
## 525 0 1 1 1
## 526 0 1 1 1
## 527 1 0 1 1
## 528 1 1 1 1
## 529 1 1 1 1
## 530 0 1 1 1
## 531 1 1 1 1
## 532 1 1 1 1
## 533 1 1 1 1
## 534 1 0 1 1
## 535 1 1 1 1
## 536 1 1 1 1
## 537 1 0 1 0
## 538 1 0 1 1
## 539 1 1 1 1
## 540 1 0 1 0
## 541 1 0 1 1
## 542 1 1 1 1
## 543 1 0 1 1
## 544 1 1 1 1
## 545 0 1 1 1
## 546 1 1 1 1
## 547 1 1 1 1
## 548 1 1 1 1
## 549 1 1 1 1
## 550 0 1 1 1
## 551 1 0 1 1
## 552 0 1 1 1
## 553 1 1 1 1
## 554 0 1 1 1
## 555 0 1 1 1
## 556 1 1 1 1
## 557 1 1 1 1
## 558 1 1 1 1
## 559 1 1 1 1
## 560 1 1 1 1
## 561 1 1 1 1
## 562 1 0 0 1
## 563 1 1 1 1
## 564 0 0 0 1
## 565 1 1 1 1
## 566 1 1 1 1
## 567 0 1 1 1
## 568 1 1 1 1
## 569 1 1 1 1
## 570 1 1 1 1
## 571 0 0 1 1
## 572 0 1 1 1
## 573 1 0 1 1
## 574 1 0 1 1
## 575 1 0 1 1
## 576 1 0 1 1
## 577 1 0 1 1
## 578 1 0 1 1
## 579 0 1 1 1
## 580 1 0 1 1
## 581 1 0 1 0
## 582 1 1 1 1
## 583 0 1 1 1
## 584 0 1 1 1
## 585 0 1 1 1
## 586 0 1 1 1
## 587 0 1 1 1
## 588 1 1 1 1
## 589 0 1 1 1
## 590 1 0 1 0
## 591 0 1 1 1
## 592 1 1 1 1
## 593 1 1 1 1
## 594 1 1 1 1
## 595 1 1 1 0
## 596 1 1 1 1
## 597 1 1 1 1
## 598 0 1 1 1
## 599 0 1 1 1
## 600 0 0 1 1
## 601 0 1 1 1
## 602 1 1 1 1
## 603 1 0 1 0
## 604 0 0 1 0
## 605 1 0 1 0
## 606 0 1 1 1
## 607 0 0 1 1
## 608 0 0 1 1
## 609 0 0 1 1
## 610 0 0 1 1
## 611 0 1 1 1
## 612 1 1 1 1
## 613 0 1 1 1
## 614 0 0 1 1
## 615 0 1 1 1
## 616 0 1 1 1
## 617 1 1 1 1
## 618 1 1 1 1
## 619 0 1 1 1
## 620 1 1 1 1
## 621 0 1 1 1
## 622 0 1 1 1
## 623 0 1 1 1
## 624 0 0 1 1
## 625 0 1 1 1
## 626 1 0 1 1
## 627 1 1 1 1
## 628 1 1 1 1
## 629 1 1 1 1
## 630 1 1 1 1
## 631 0 1 1 1
## 632 1 0 1 1
## 633 1 0 1 0
## 634 1 1 1 1
## 635 1 1 1 1
## 636 1 1 1 1
## 637 0 0 1 1
## 638 0 1 1 1
## 639 1 1 1 1
## 640 0 1 1 1
## 641 0 0 1 1
## 642 1 1 1 1
## 643 0 0 1 1
## 644 1 1 1 1
## 645 1 1 1 1
## 646 1 1 1 0
## 647 0 0 0 0
## 648 1 1 1 1
## 649 1 1 1 1
## 650 0 1 1 1
## 651 1 1 1 1
## 652 1 0 1 1
## 653 1 1 1 1
## 654 0 0 1 1
## 655 1 1 1 1
## 656 0 1 1 1
## 657 1 1 1 1
## 658 1 1 1 1
## 659 1 1 1 1
## 660 1 1 1 1
## 661 1 0 1 1
## 662 1 1 1 0
## 663 1 1 1 1
## 664 1 0 1 1
## 665 1 0 0 0
## 666 1 0 1 0
## 667 1 0 1 0
## 668 1 0 1 0
## 669 1 0 1 0
## 670 1 0 1 0
## 671 1 0 1 0
## 672 1 0 1 0
## 673 1 0 1 0
## 674 1 0 1 0
## 675 1 0 1 0
## 676 1 0 1 0
## 677 1 0 1 0
## 678 1 0 1 0
## 679 1 0 1 0
## 680 1 0 1 0
## 681 0 1 1 1
## 682 0 1 1 1
## 683 1 1 1 1
## 684 0 1 1 1
## 685 1 1 1 1
## 686 0 1 1 1
## 687 1 0 1 0
## 688 0 1 1 1
## 689 0 1 1 1
## 690 1 1 1 1
## 691 1 1 1 1
## 692 0 1 1 1
## 693 0 1 1 1
## 694 1 1 1 1
## 695 1 1 1 1
## 696 1 0 1 0
## 697 1 0 1 0
## 698 1 1 1 1
## 699 1 1 1 1
## 700 1 0 1 0
## 701 1 0 1 0
## 702 0 1 1 1
## 703 0 1 1 1
## 704 0 1 1 1
## 705 1 1 1 1
## 706 1 1 1 1
## 707 1 1 1 1
## 708 1 1 1 1
## 709 0 1 1 1
## 710 0 1 1 1
## 711 0 1 1 1
## 712 1 0 1 1
## 713 1 0 1 0
## 714 1 0 1 0
## 715 1 0 1 1
## 716 1 0 1 1
## 717 1 0 1 1
## 718 1 0 1 1
## 719 1 0 1 1
## 720 1 0 1 1
## 721 1 0 1 1
## 722 1 0 1 1
## 723 1 1 1 1
## 724 1 1 1 1
## 725 1 0 1 0
## 726 1 1 1 1
## 727 0 1 1 1
## 728 0 1 1 1
## 729 1 1 1 1
## 730 1 1 1 1
## 731 1 1 1 1
## 732 1 0 1 1
## 733 1 1 1 1
## 734 0 1 1 1
## 735 0 1 1 1
## 736 0 0 1 1
## 737 1 1 1 1
## 738 1 1 1 1
## 739 1 1 1 1
## 740 0 1 1 1
## 741 1 1 1 1
## 742 1 1 1 1
## 743 1 1 1 1
## 744 0 1 1 1
## 745 1 1 1 1
## 746 1 0 1 1
## 747 1 0 1 1
## 748 0 1 1 1
## 749 0 1 1 1
## 750 1 1 1 1
## 751 1 1 1 1
## 752 1 1 1 1
## 753 1 1 1 0
## 754 1 1 1 1
## 755 0 1 1 1
## 756 0 1 1 1
## 757 0 1 1 1
## 758 0 0 0 0
## 759 1 1 1 1
## 760 0 1 1 1
## 761 1 1 1 1
## 762 0 1 1 1
## 763 0 1 1 1
## 764 1 1 1 1
## 765 0 1 1 1
## 766 0 1 1 1
## 767 1 1 1 1
## 768 0 1 1 1
## 769 0 1 1 1
## 770 1 0 1 1
## 771 1 1 1 1
## 772 1 1 1 1
## 773 1 1 1 1
## 774 1 1 1 1
## 775 1 1 1 1
## 776 1 1 1 1
## 777 0 1 1 1
## 778 1 1 1 1
## 779 1 1 1 1
## 780 1 1 1 1
## 781 0 1 1 1
## 782 0 1 1 1
## 783 1 1 1 1
## 784 0 1 1 1
## 785 0 1 1 1
## 786 0 1 1 1
## 787 0 0 0 0
## 788 1 1 1 1
## 789 1 1 1 1
## 790 1 1 1 1
## 791 0 1 1 1
## 792 0 0 1 1
## 793 1 1 1 1
## 794 1 1 0 0
## 795 1 1 1 1
## 796 1 1 1 1
## 797 1 1 1 1
## 798 1 1 1 1
## 799 1 1 1 1
## 800 0 1 1 1
## 801 1 1 0 1
## 802 1 0 1 1
## 803 1 1 1 1
## 804 1 1 1 1
## 805 0 0 1 1
## 806 1 1 1 1
## 807 0 0 1 1
## 808 1 1 1 1
## 809 1 0 1 1
## 810 1 1 1 1
## 811 1 1 1 1
## 812 1 0 1 1
## 813 1 1 1 1
## 814 0 1 1 1
## 815 1 0 1 0
## 816 1 1 1 1
## 817 1 1 1 0
## 818 0 1 0 1
## 819 1 1 1 0
## 820 1 0 1 0
## 821 1 1 1 1
## 822 0 0 1 0
## 823 0 0 1 0
## 824 0 0 1 0
## 825 0 0 1 0
## 826 0 0 1 0
## 827 1 1 1 1
## 828 1 0 1 1
## 829 1 1 1 1
## 830 1 0 0 1
## 831 0 1 1 1
## 832 1 1 1 1
## 833 1 0 1 1
## 834 1 1 1 1
## 835 1 1 1 0
## 836 1 1 1 0
## 837 1 1 1 0
## 838 1 1 1 0
## 839 1 1 1 0
## 840 0 1 1 1
## 841 1 1 0 1
## 842 0 1 1 1
## 843 1 1 1 1
## 844 1 0 1 1
## 845 1 0 1 1
## 846 1 1 1 1
## 847 0 0 1 0
## 848 1 0 1 1
## 849 1 1 1 1
## 850 1 1 1 1
## 851 1 1 1 0
## 852 0 1 1 1
## 853 1 1 1 0
## 854 1 1 1 1
## 855 1 1 1 1
## 856 1 1 0 1
## 857 1 1 1 1
## 858 1 1 1 1
## 859 1 1 1 1
## 860 1 1 1 1
## 861 1 0 1 0
## 862 1 1 1 1
## 863 0 0 0 0
## 864 0 1 1 1
## 865 1 1 1 1
## 866 1 1 1 1
## 867 0 1 1 1
## 868 1 1 1 1
## 869 0 1 1 1
## 870 1 1 1 1
## 871 1 1 1 1
## 872 1 1 1 1
## 873 1 1 1 1
## 874 1 1 1 1
## 875 1 1 1 1
## 876 1 1 1 1
## 877 0 1 1 1
## 878 1 0 1 0
## 879 0 0 1 0
## 880 1 0 1 0
## 881 1 1 1 1
## 882 1 1 1 0
## 883 0 1 1 1
## 884 1 1 1 1
## 885 0 1 1 1
## 886 0 1 1 1
## 887 0 1 1 1
## 888 0 1 1 1
## 889 1 1 1 1
## 890 1 0 1 0
## 891 1 1 1 1
## 892 1 1 1 1
## 893 0 1 1 1
## 894 0 1 1 1
## 895 0 1 1 1
## 896 0 1 1 1
## 897 0 1 1 1
## 898 0 0 1 1
## 899 0 1 1 1
## 900 1 1 1 1
## 901 1 1 1 1
## 902 0 1 1 1
## 903 1 0 1 1
## 904 1 0 1 1
## 905 1 0 1 0
## 906 1 1 1 1
## 907 0 1 1 1
## 908 1 1 1 1
## 909 1 1 1 1
## 910 1 0 1 1
## 911 1 0 1 1
## 912 0 1 1 1
## 913 1 1 1 1
## 914 1 0 1 1
## 915 1 1 1 1
## 916 1 0 1 1
## 917 1 1 1 1
## 918 1 1 1 0
## 919 1 1 1 1
## 920 1 1 1 1
## 921 1 1 0 1
## 922 1 0 0 0
## 923 1 0 1 1
## 924 1 1 1 1
## 925 1 1 1 1
## 926 0 1 1 1
## 927 1 1 1 1
## 928 1 0 1 1
## 929 1 1 1 0
## 930 1 1 1 1
## 931 1 1 1 1
## 932 1 0 1 0
## 933 0 0 0 1
## 934 1 0 1 0
## 935 1 1 1 1
## 936 1 0 1 1
## 937 1 1 1 1
## 938 1 0 1 1
## 939 1 0 1 0
## 940 1 0 1 0
## 941 1 0 1 0
## 942 1 1 1 1
## 943 1 1 1 1
## 944 1 1 1 1
## 945 1 1 1 1
## 946 1 1 1 1
## 947 1 1 1 1
## 948 1 1 1 1
## 949 1 1 1 1
## 950 1 1 1 1
## 951 0 0 1 0
## 952 1 1 1 1
## 953 1 1 1 1
## 954 1 0 1 0
## 955 1 1 1 1
## 956 1 1 1 1
## 957 1 1 1 1
## 958 0 1 1 1
## 959 1 1 1 1
## 960 1 1 1 1
## 961 1 1 1 1
## 962 1 1 1 1
## 963 1 1 1 1
## 964 1 1 1 1
## 965 0 1 1 1
## 966 1 1 1 1
## 967 1 1 1 1
## 968 1 1 1 1
## 969 1 1 1 1
## 970 1 1 1 1
## 971 1 1 1 1
## 972 1 1 1 1
## 973 0 1 1 1
## 974 1 1 1 1
## 975 1 1 1 1
## 976 1 1 1 1
## 977 1 1 1 1
## 978 1 1 1 1
## 979 1 1 1 1
## 980 1 1 1 1
## 981 0 1 1 1
## 982 1 1 1 1
## 983 1 1 1 1
## 984 0 1 1 1
## 985 1 1 1 1
## 986 1 1 1 1
## 987 1 1 1 1
## 988 0 1 1 1
## 989 0 1 1 1
## 990 0 1 1 1
## 991 1 1 1 0
## 992 0 1 1 1
## 993 1 1 1 1
## 994 0 1 1 1
## 995 0 1 1 1
## 996 1 1 1 1
## 997 0 1 1 1
## 998 0 1 1 1
## 999 0 1 1 1
## 1000 1 1 1 1
## 1001 1 1 1 1
## 1002 0 1 1 1
## 1003 1 1 1 1
## 1004 1 1 1 1
## 1005 1 1 1 1
## 1006 1 1 1 1
## 1007 1 1 1 1
## 1008 1 1 1 1
## 1009 1 1 1 1
## 1010 1 1 1 1
## 1011 1 1 1 1
## 1012 1 1 1 1
## 1013 1 1 1 1
## 1014 1 1 1 1
## 1015 1 1 1 1
## 1016 1 1 1 1
## 1017 0 1 1 1
## 1018 1 0 1 1
## 1019 1 1 1 1
## 1020 1 1 1 1
## 1021 1 1 1 1
## 1022 1 1 1 1
## 1023 1 0 1 1
## 1024 0 0 1 1
## 1025 1 1 1 1
## 1026 1 0 1 0
## 1027 1 1 1 1
## 1028 1 0 1 0
## 1029 1 0 1 0
## 1030 1 1 1 0
## 1031 1 1 1 1
## 1032 1 1 1 1
## 1033 0 1 1 0
## 1034 1 1 1 1
## 1035 0 1 1 1
## 1036 1 1 1 1
## 1037 1 0 0 1
## 1038 1 1 1 1
## 1039 1 1 1 1
## 1040 0 1 1 1
## 1041 0 1 1 1
## 1042 1 1 1 1
## 1043 1 1 1 1
## 1044 1 1 1 1
## 1045 1 0 1 0
## 1046 0 1 1 1
## 1047 1 1 1 1
## 1048 0 1 1 1
## 1049 1 1 1 1
## 1050 1 0 1 0
## 1051 1 0 1 0
## 1052 1 0 1 0
## 1053 1 0 1 0
## 1054 1 0 1 0
## 1055 0 1 1 1
## 1056 0 1 1 1
## 1057 1 1 1 1
## 1058 1 0 1 1
## 1059 1 0 1 1
## 1060 1 0 1 1
## 1061 1 0 1 1
## 1062 1 0 1 1
## 1063 1 0 1 1
## 1064 1 0 1 1
## 1065 1 1 1 1
## 1066 1 0 1 1
## 1067 0 1 1 1
## 1068 1 0 1 1
## 1069 0 1 1 1
## 1070 0 1 1 1
## 1071 0 1 1 1
## 1072 1 1 1 1
## 1073 1 0 1 1
## 1074 1 1 1 1
## 1075 1 1 1 1
## 1076 1 1 1 1
## 1077 0 0 1 0
## 1078 1 0 1 1
## 1079 1 0 1 1
## 1080 0 1 1 1
## 1081 1 0 1 1
## 1082 1 1 1 1
## 1083 0 1 1 1
## 1084 1 1 1 1
## 1085 1 1 1 1
## 1086 0 1 1 1
## 1087 0 1 0 1
## 1088 1 0 1 0
## 1089 0 1 1 1
## 1090 0 1 1 1
## 1091 0 1 1 1
## 1092 0 1 1 1
## 1093 0 1 1 1
## 1094 0 1 1 1
## 1095 0 1 1 1
## 1096 1 1 1 1
## 1097 1 1 1 1
## 1098 1 0 1 1
## 1099 1 0 1 1
## 1100 1 0 1 1
## 1101 1 1 1 1
## 1102 1 1 1 1
## 1103 0 1 1 1
## 1104 1 1 1 1
## 1105 0 0 1 0
## 1106 0 1 1 1
## 1107 0 0 1 0
## 1108 0 0 1 0
## 1109 0 0 1 0
## 1110 0 0 1 0
## 1111 1 1 1 1
## 1112 0 0 1 0
## 1113 0 0 1 0
## 1114 1 0 1 1
## 1115 0 1 1 1
## 1116 0 1 1 1
## 1117 0 1 1 1
## 1118 1 1 1 1
## 1119 0 1 1 1
## 1120 1 1 1 1
## 1121 1 1 1 1
## 1122 0 1 1 1
## 1123 1 1 1 1
## 1124 1 1 1 1
## 1125 1 1 1 1
## 1126 1 1 1 1
## 1127 1 1 1 1
## 1128 1 1 1 1
## 1129 1 1 1 1
## 1130 1 1 1 1
## 1131 1 1 1 1
## 1132 1 1 1 1
## 1133 1 1 1 1
## 1134 1 1 1 1
## 1135 1 1 1 1
## 1136 1 0 1 1
## 1137 1 0 1 1
## 1138 1 0 1 1
## 1139 1 1 1 0
## 1140 1 0 1 1
## 1141 1 0 1 0
## 1142 1 1 1 1
## 1143 1 1 1 1
## 1144 0 1 1 0
## 1145 1 1 1 1
## 1146 1 1 1 1
## 1147 1 1 1 1
## 1148 0 0 1 1
## 1149 1 0 1 1
## 1150 1 0 1 1
## 1151 1 1 1 1
## 1152 1 0 1 1
## 1153 1 1 1 1
## 1154 1 1 1 1
## 1155 0 1 1 1
## 1156 1 1 1 1
## 1157 0 1 1 1
## 1158 1 0 1 1
## 1159 1 1 1 1
## 1160 1 0 1 1
## 1161 1 1 1 1
## 1162 1 0 1 1
## 1163 1 1 1 1
## 1164 1 0 1 1
## 1165 1 1 1 1
## 1166 1 1 1 1
## 1167 1 1 1 1
## 1168 0 1 1 1
## 1169 1 1 1 1
## 1170 1 1 1 1
## 1171 1 1 1 1
## 1172 1 1 1 1
## 1173 1 1 1 1
## 1174 1 1 1 1
## 1175 1 1 1 1
## 1176 1 1 1 1
## 1177 1 1 1 1
## 1178 1 1 1 1
## 1179 1 1 0 1
## 1180 0 1 1 1
## 1181 0 1 1 1
## 1182 0 1 1 1
## 1183 0 1 1 1
## 1184 0 1 1 1
## 1185 0 1 1 1
## 1186 1 1 1 1
## 1187 1 1 1 1
## 1188 1 0 1 1
## 1189 1 1 1 1
## 1190 0 1 1 1
## 1191 1 0 1 1
## 1192 1 1 1 1
## 1193 0 1 1 1
## 1194 1 1 1 1
## 1195 1 0 1 1
## 1196 1 1 1 1
## 1197 1 1 1 1
## 1198 0 1 1 1
## 1199 0 1 1 1
## 1200 0 1 1 1
## 1201 0 0 1 1
## 1202 0 1 1 1
## 1203 1 0 1 1
## 1204 0 1 1 1
## 1205 1 1 1 1
## 1206 1 1 1 1
## 1207 1 1 1 1
## 1208 1 1 1 1
## 1209 0 1 1 1
## 1210 1 1 1 1
## 1211 1 1 1 0
## 1212 1 1 1 1
## 1213 1 1 1 1
## 1214 0 1 1 1
## 1215 1 1 1 1
## 1216 1 0 1 0
## 1217 1 0 1 0
## 1218 1 0 1 0
## 1219 1 0 1 0
## 1220 1 0 1 0
## 1221 1 1 1 1
## 1222 0 1 1 1
## 1223 1 1 1 1
## 1224 0 1 1 1
## 1225 0 1 1 1
## 1226 1 1 1 1
## 1227 0 1 1 1
## 1228 0 1 1 1
## 1229 1 1 1 1
## 1230 1 1 1 1
## 1231 1 1 1 1
## 1232 1 1 1 1
## 1233 1 1 1 0
## 1234 1 0 1 1
## 1235 1 1 1 1
## 1236 1 0 0 0
## 1237 0 1 1 1
## 1238 1 1 1 1
## 1239 1 1 1 1
## 1240 1 1 1 1
## 1241 1 0 1 0
## 1242 0 1 1 1
## 1243 1 1 1 1
## 1244 0 1 1 1
## 1245 0 1 1 1
## 1246 1 0 1 1
## 1247 1 1 1 1
## 1248 1 1 1 1
## 1249 0 1 1 1
## 1250 0 1 1 1
## 1251 1 1 1 1
## 1252 1 1 1 1
## 1253 1 1 1 1
## 1254 0 1 1 1
## 1255 1 0 0 0
## 1256 1 0 0 0
## 1257 0 1 1 1
## 1258 1 0 0 0
## 1259 1 1 1 1
## 1260 1 1 1 1
## 1261 1 0 0 0
## 1262 0 1 1 1
## 1263 1 0 0 0
## 1264 0 1 1 0
## 1265 1 0 0 0
## 1266 1 1 1 1
## 1267 1 1 1 1
## 1268 0 1 1 1
## 1269 0 0 1 1
## 1270 0 1 1 1
## 1271 0 1 1 1
## 1272 1 0 1 1
## 1273 0 0 1 1
## 1274 1 1 1 0
## 1275 1 0 1 0
## 1276 1 0 1 0
## 1277 0 1 1 1
## 1278 0 1 1 1
## 1279 1 0 1 0
## 1280 1 1 1 1
## 1281 1 1 1 1
## 1282 1 1 1 1
## 1283 0 1 1 1
## 1284 1 1 1 0
## 1285 1 1 1 1
## 1286 1 1 1 1
## 1287 0 1 1 1
## 1288 0 1 1 1
## 1289 0 0 1 1
## 1290 1 0 0 0
## 1291 0 0 1 0
## 1292 0 1 1 1
## 1293 0 1 1 1
## 1294 0 1 1 1
## 1295 1 1 1 1
## 1296 1 1 1 1
## 1297 1 1 1 1
## 1298 1 1 1 1
## 1299 1 1 1 1
## 1300 0 1 1 1
## 1301 1 1 1 1
## 1302 0 1 1 1
## 1303 0 1 1 1
## 1304 0 1 1 1
## 1305 1 1 1 1
## 1306 1 1 1 1
## 1307 1 1 1 1
## 1308 0 1 1 1
## 1309 1 1 1 1
## 1310 1 1 1 1
## 1311 1 1 1 1
## 1312 1 1 1 1
## 1313 0 1 1 0
## 1314 1 1 1 0
## 1315 0 0 1 0
## 1316 0 1 1 1
## 1317 0 0 1 1
## 1318 0 1 1 1
## 1319 1 1 1 1
## 1320 0 1 1 0
## 1321 1 1 1 1
## 1322 1 1 1 1
## 1323 1 1 1 1
## 1324 1 0 1 0
## 1325 1 1 1 1
## 1326 1 1 1 1
## 1327 1 1 1 1
## 1328 1 1 1 1
## 1329 1 1 1 1
## 1330 1 0 1 0
## 1331 1 1 1 1
## 1332 1 1 1 1
## 1333 1 1 1 1
## 1334 1 1 1 1
## 1335 1 1 1 1
## 1336 1 1 1 1
## 1337 1 1 1 1
## 1338 1 1 1 1
## 1339 1 1 1 1
## 1340 1 0 1 0
## 1341 1 0 1 0
## 1342 1 1 1 0
## 1343 1 1 1 1
## 1344 1 1 1 0
## 1345 1 1 1 0
## 1346 0 0 1 1
## 1347 0 1 1 1
## 1348 1 1 1 0
## 1349 1 1 1 1
## 1350 1 0 1 1
## 1351 1 1 1 1
## 1352 1 1 1 0
## 1353 1 1 1 0
## 1354 1 0 1 1
## 1355 0 1 1 1
## 1356 1 1 1 1
## 1357 1 1 1 1
## 1358 1 1 1 1
## 1359 1 1 1 0
## 1360 1 1 1 0
## 1361 1 1 1 1
## 1362 1 1 1 1
## 1363 1 1 1 0
## 1364 1 1 1 0
## 1365 1 1 1 0
## 1366 0 1 1 1
## 1367 1 1 1 0
## 1368 1 1 1 0
## 1369 1 1 1 0
## 1370 1 1 1 0
## 1371 1 1 1 0
## 1372 1 1 1 1
## 1373 1 1 1 1
## 1374 1 1 1 0
## 1375 1 1 1 1
## 1376 1 1 1 1
## 1377 1 1 1 0
## 1378 1 1 1 0
## 1379 1 1 1 0
## 1380 1 0 1 0
## 1381 1 1 1 0
## 1382 1 1 1 1
## 1383 1 1 1 1
## 1384 1 1 1 1
## 1385 1 1 1 0
## 1386 1 0 1 1
## 1387 1 1 1 1
## 1388 1 1 1 1
## 1389 1 0 1 1
## 1390 1 1 1 0
## 1391 1 1 1 0
## 1392 1 1 1 1
## 1393 1 1 1 1
## 1394 1 0 1 0
## 1395 1 1 1 1
## 1396 1 0 1 0
## 1397 0 0 1 0
## 1398 1 1 1 1
## 1399 0 1 1 1
## 1400 1 1 1 1
## 1401 1 1 1 1
## 1402 1 1 1 1
## 1403 1 1 1 1
## 1404 1 1 1 1
## 1405 1 1 1 1
## 1406 1 1 1 0
## 1407 1 0 1 0
## 1408 0 0 1 1
## 1409 1 0 1 1
## 1410 1 0 1 1
## 1411 1 0 1 0
## 1412 0 1 1 1
## 1413 0 1 1 1
## 1414 1 0 1 1
## 1415 0 0 1 1
## 1416 1 1 1 1
## 1417 1 1 1 1
## 1418 0 1 1 1
## 1419 1 1 1 1
## 1420 1 1 1 1
## 1421 1 0 1 1
## 1422 1 1 1 1
## 1423 1 1 1 1
## 1424 1 1 1 1
## 1425 1 0 1 1
## 1426 1 0 1 1
## 1427 1 1 1 1
## 1428 1 0 1 1
## 1429 1 1 1 0
## 1430 1 1 1 0
## 1431 1 0 1 1
## 1432 1 0 1 1
## 1433 1 1 1 1
## 1434 0 1 1 1
## 1435 1 1 1 1
## 1436 0 0 1 1
## 1437 1 1 1 1
## 1438 1 1 1 1
## 1439 1 0 1 0
## 1440 1 0 1 0
## 1441 1 1 1 1
## 1442 1 1 1 1
## 1443 1 1 1 1
## 1444 1 1 1 1
## 1445 1 1 1 1
## 1446 0 1 1 1
## 1447 1 1 1 1
## 1448 1 1 1 0
## 1449 1 1 1 0
## 1450 1 1 1 0
## 1451 1 0 1 0
## 1452 1 1 1 1
## 1453 1 1 1 1
## 1454 0 1 1 1
## 1455 0 1 1 1
## 1456 1 1 1 1
## 1457 1 1 1 1
## 1458 1 1 1 0
## 1459 1 0 1 0
## 1460 1 0 1 0
## 1461 0 0 1 1
## 1462 1 0 1 0
## 1463 1 1 1 1
## 1464 1 1 1 1
## 1465 1 1 1 1
## 1466 1 1 1 1
## 1467 0 1 1 1
## 1468 0 1 1 1
## 1469 1 1 1 1
## 1470 1 1 1 0
## 1471 0 0 1 1
## 1472 1 1 1 1
## 1473 0 1 1 1
## 1474 1 1 1 1
## 1475 1 1 1 1
## 1476 1 1 1 1
## 1477 1 1 1 1
## 1478 1 1 1 1
## 1479 1 1 1 1
## 1480 0 1 1 1
## 1481 1 0 1 1
## 1482 0 1 1 1
## 1483 0 1 1 1
## 1484 0 1 1 1
## 1485 1 1 1 1
## 1486 1 1 1 1
## 1487 1 1 1 1
## 1488 0 1 0 1
## 1489 1 0 1 0
## 1490 0 0 1 1
## 1491 1 1 1 0
## 1492 1 1 1 0
## 1493 1 1 1 1
## 1494 1 1 1 1
## 1495 1 1 1 1
## 1496 0 1 1 1
## 1497 1 1 1 1
## 1498 1 1 1 1
## 1499 1 1 1 1
## 1500 1 1 1 1
## 1501 1 1 1 1
## 1502 1 1 1 1
## 1503 1 1 1 1
## 1504 1 1 1 0
## 1505 1 1 1 1
## 1506 1 1 1 1
## 1507 1 1 1 1
## 1508 1 1 1 1
## 1509 1 1 1 1
## 1510 1 1 1 1
## 1511 1 1 1 1
## 1512 1 1 1 1
## 1513 1 1 1 1
## 1514 0 1 1 1
## 1515 1 1 1 1
## 1516 1 1 1 1
## 1517 0 1 1 1
## 1518 1 1 1 1
## 1519 0 1 1 1
## 1520 0 1 1 1
## 1521 1 0 1 0
## 1522 0 1 1 1
## 1523 1 1 1 1
## 1524 1 1 1 1
## 1525 1 1 1 0
## 1526 1 1 1 1
## 1527 0 0 0 1
## 1528 1 1 1 1
## 1529 1 1 1 1
## 1530 0 0 0 1
## 1531 1 1 1 1
## 1532 0 1 1 1
## 1533 1 1 1 1
## 1534 1 1 1 1
## 1535 1 1 0 1
## 1536 1 1 0 1
## 1537 0 0 1 0
## 1538 1 1 1 1
## 1539 1 1 1 1
## 1540 1 1 1 1
## 1541 1 1 1 1
## 1542 1 1 1 1
## 1543 1 1 1 0
## 1544 1 0 1 0
## 1545 0 1 1 1
## 1546 1 0 1 1
## 1547 1 1 1 1
## 1548 1 1 1 0
## 1549 1 0 1 0
## 1550 1 1 1 1
## 1551 1 1 1 1
## 1552 0 1 1 1
## 1553 1 1 1 1
## 1554 1 1 1 1
## 1555 1 1 1 1
## 1556 0 1 1 1
## 1557 1 1 1 1
## 1558 1 1 1 1
## 1559 1 1 1 1
## 1560 1 1 1 1
## 1561 1 1 1 0
## 1562 1 1 1 0
## 1563 1 1 1 0
## 1564 0 1 1 1
## 1565 1 1 1 1
## 1566 0 1 1 1
## 1567 1 0 1 1
## 1568 1 0 1 1
## 1569 1 0 1 1
## 1570 1 0 1 1
## 1571 1 0 1 1
## 1572 1 0 1 1
## 1573 1 0 1 1
## 1574 1 0 1 0
## 1575 1 0 1 0
## 1576 0 1 1 1
## 1577 1 0 1 0
## 1578 1 1 1 1
## 1579 0 1 1 1
## 1580 1 0 1 1
## 1581 0 1 1 1
## 1582 0 1 1 1
## 1583 1 0 1 0
## 1584 1 1 1 1
## 1585 0 1 1 1
## 1586 0 1 1 1
## 1587 0 1 1 1
## 1588 1 1 1 1
## 1589 1 1 1 1
## 1590 1 0 1 1
## 1591 1 0 1 1
## 1592 1 0 1 1
## 1593 1 0 1 1
## 1594 1 1 1 1
## 1595 1 0 1 0
## 1596 1 1 1 1
## 1597 1 1 1 1
## 1598 1 1 1 1
## 1599 1 1 1 1
## 1600 1 1 1 1
## 1601 0 1 1 1
## 1602 1 1 1 0
## 1603 1 1 1 0
## 1604 1 1 1 1
## 1605 1 1 1 1
## 1606 1 1 1 0
## 1607 1 1 1 1
## 1608 1 0 1 0
## 1609 1 1 1 0
## 1610 1 1 1 0
## 1611 0 1 1 1
## 1612 0 1 1 1
## 1613 1 1 1 1
## 1614 1 1 1 1
## 1615 1 1 1 0
## 1616 1 1 1 0
## 1617 1 1 1 0
## 1618 1 1 1 0
## 1619 0 0 1 1
## 1620 1 0 1 1
## 1621 1 0 1 1
## 1622 0 1 1 1
## 1623 1 1 1 1
## 1624 0 1 1 1
## 1625 1 1 1 1
## 1626 1 1 1 1
## 1627 1 1 1 1
## 1628 1 1 1 1
## 1629 1 1 1 1
## 1630 1 1 1 1
## 1631 1 1 1 1
## 1632 1 1 1 1
## 1633 1 1 1 1
## 1634 1 0 1 1
## 1635 1 1 1 1
## 1636 1 1 1 1
## 1637 0 1 1 1
## 1638 1 1 1 1
## 1639 1 0 1 0
## 1640 1 0 1 1
## 1641 0 1 1 1
## 1642 1 0 1 0
## 1643 1 0 1 0
## 1644 1 1 1 1
## 1645 1 1 1 0
## 1646 1 1 1 0
## 1647 1 1 1 1
## 1648 1 0 1 1
## 1649 1 1 1 1
## 1650 1 1 1 1
## 1651 1 0 1 0
## 1652 1 1 1 1
## 1653 1 1 1 1
## 1654 1 1 1 1
## 1655 1 1 1 1
## 1656 1 1 1 1
## 1657 0 1 1 1
## 1658 1 1 1 1
## 1659 1 1 1 1
## 1660 1 1 1 1
## 1661 1 1 1 1
## 1662 1 1 1 1
## 1663 0 1 1 1
## 1664 1 1 1 1
## 1665 0 1 1 1
## 1666 0 1 1 1
## 1667 1 0 1 0
## 1668 1 1 1 1
## 1669 1 1 1 1
## 1670 1 1 1 1
## 1671 1 1 1 1
## 1672 1 1 1 1
## 1673 1 1 1 1
## 1674 0 1 1 1
## 1675 1 0 1 0
## 1676 0 1 1 1
## 1677 1 1 1 0
## 1678 1 1 1 1
## 1679 1 0 1 1
## 1680 1 0 1 1
## 1681 1 1 1 0
## 1682 0 1 1 1
## 1683 1 1 1 1
## 1684 0 1 1 1
## 1685 0 0 1 0
## 1686 1 0 1 0
## 1687 1 1 1 0
## 1688 1 1 1 1
## 1689 1 1 1 0
## 1690 1 0 1 0
## 1691 0 0 1 0
## 1692 0 1 1 1
## 1693 0 0 1 1
## 1694 1 1 1 1
## 1695 1 1 1 1
## 1696 0 1 1 1
## 1697 0 1 1 1
## 1698 1 1 1 1
## 1699 1 1 1 0
## 1700 1 1 1 1
## 1701 1 1 1 1
## 1702 1 1 1 1
## 1703 0 1 1 1
## 1704 1 1 1 1
## 1705 1 1 1 0
## 1706 1 1 1 1
## 1707 1 0 0 0
## 1708 0 1 1 1
## 1709 0 1 1 1
## 1710 0 1 1 1
## 1711 0 1 1 1
## 1712 1 1 1 1
## 1713 1 1 1 1
## 1714 1 1 1 1
## 1715 1 1 1 1
## 1716 1 1 1 0
## 1717 0 1 1 0
## 1718 1 1 1 1
## 1719 0 1 1 1
## 1720 1 1 1 1
## 1721 1 1 1 1
## 1722 0 1 1 1
## 1723 0 1 1 1
## 1724 0 0 0 0
## 1725 0 1 1 1
## Amenities_HairDryer Amenities_HotWater Amenities_TV Amenities_AC hv_email
## 1 1 1 1 1 1
## 2 1 1 1 1 1
## 3 1 1 1 1 1
## 4 1 1 1 1 1
## 5 1 1 1 1 1
## 6 1 1 0 1 1
## 7 1 1 1 1 1
## 8 1 1 1 1 1
## 9 1 1 1 1 1
## 10 1 1 1 1 1
## 11 1 1 1 1 1
## 12 1 1 1 1 1
## 13 1 1 1 1 1
## 14 1 1 1 1 1
## 15 0 1 0 1 1
## 16 1 1 1 0 1
## 17 1 1 1 1 1
## 18 1 1 1 1 1
## 19 0 0 0 0 1
## 20 1 1 1 1 1
## 21 0 1 1 0 1
## 22 1 1 1 1 1
## 23 1 1 1 1 1
## 24 1 1 1 1 1
## 25 1 1 1 1 1
## 26 0 1 0 1 1
## 27 1 1 1 1 1
## 28 1 1 1 1 0
## 29 1 1 1 1 0
## 30 1 1 1 1 1
## 31 1 1 1 1 1
## 32 1 1 1 1 1
## 33 1 1 1 1 1
## 34 1 0 1 1 1
## 35 1 1 1 1 1
## 36 1 0 1 1 1
## 37 1 1 0 1 1
## 38 1 1 1 1 1
## 39 1 1 1 1 1
## 40 1 1 1 1 1
## 41 1 1 1 1 1
## 42 0 1 0 1 1
## 43 1 1 0 1 1
## 44 1 0 1 1 1
## 45 1 0 1 1 1
## 46 1 0 1 1 1
## 47 0 0 1 1 1
## 48 1 1 1 1 1
## 49 1 1 0 1 1
## 50 1 1 0 1 1
## 51 0 0 0 1 1
## 52 1 1 1 1 1
## 53 1 1 1 1 1
## 54 1 1 1 1 1
## 55 1 1 1 1 1
## 56 1 1 1 1 1
## 57 0 0 0 1 1
## 58 1 1 1 1 1
## 59 0 1 1 1 1
## 60 1 1 1 1 1
## 61 1 1 1 1 1
## 62 0 1 0 1 1
## 63 1 1 1 1 1
## 64 1 0 1 1 1
## 65 1 1 1 1 1
## 66 1 1 1 1 1
## 67 1 1 1 1 1
## 68 1 1 1 1 1
## 69 1 1 1 1 1
## 70 1 1 1 1 1
## 71 1 1 1 1 1
## 72 1 1 1 1 1
## 73 1 1 1 1 1
## 74 1 1 1 1 1
## 75 1 1 1 1 1
## 76 0 1 1 1 1
## 77 1 1 1 1 1
## 78 1 1 1 1 1
## 79 1 1 1 1 1
## 80 1 1 1 1 1
## 81 1 1 1 1 1
## 82 0 0 1 1 1
## 83 1 1 1 1 1
## 84 0 1 1 1 1
## 85 1 1 1 1 1
## 86 0 1 1 1 1
## 87 1 1 1 1 1
## 88 1 1 1 1 1
## 89 1 1 1 1 1
## 90 1 1 1 1 1
## 91 0 1 1 1 1
## 92 1 1 1 1 1
## 93 0 0 1 1 1
## 94 1 1 1 1 1
## 95 1 1 1 1 1
## 96 1 1 0 1 1
## 97 1 1 1 1 1
## 98 1 1 1 1 1
## 99 1 1 1 1 1
## 100 1 1 1 1 1
## 101 1 1 1 1 1
## 102 1 1 1 1 1
## 103 1 1 1 1 1
## 104 1 1 1 1 1
## 105 1 1 1 1 1
## 106 1 1 1 1 1
## 107 1 1 1 1 1
## 108 1 1 1 1 1
## 109 1 0 1 1 1
## 110 1 1 1 1 1
## 111 1 0 1 1 1
## 112 1 1 1 1 1
## 113 1 1 1 1 1
## 114 1 1 1 1 1
## 115 0 0 1 1 1
## 116 1 1 0 1 1
## 117 1 1 1 1 1
## 118 1 1 1 1 1
## 119 1 1 1 1 1
## 120 0 0 1 1 1
## 121 0 1 1 1 1
## 122 1 0 1 1 1
## 123 1 1 1 1 1
## 124 1 1 1 1 1
## 125 1 1 1 1 1
## 126 1 1 1 1 1
## 127 0 1 1 1 1
## 128 0 1 0 1 1
## 129 1 1 1 1 1
## 130 1 1 1 1 1
## 131 1 1 1 1 1
## 132 1 1 0 0 1
## 133 1 1 1 1 1
## 134 1 1 1 1 1
## 135 1 1 1 1 1
## 136 1 1 1 1 1
## 137 1 0 1 1 1
## 138 1 1 1 1 1
## 139 1 1 1 1 1
## 140 0 1 1 1 1
## 141 1 1 1 1 1
## 142 1 1 1 1 1
## 143 1 1 1 1 1
## 144 1 0 1 1 1
## 145 1 1 1 1 1
## 146 1 1 1 0 1
## 147 1 1 0 1 1
## 148 1 1 0 1 1
## 149 1 1 1 1 1
## 150 1 1 1 1 1
## 151 1 0 0 1 1
## 152 1 1 1 1 1
## 153 1 1 1 1 1
## 154 1 1 1 1 1
## 155 1 1 1 1 1
## 156 0 1 1 1 1
## 157 1 1 0 1 1
## 158 1 1 0 1 1
## 159 0 1 0 1 1
## 160 1 1 1 1 1
## 161 1 1 1 1 1
## 162 1 1 1 1 1
## 163 1 1 1 1 1
## 164 1 1 1 1 1
## 165 1 1 1 1 1
## 166 1 0 0 1 1
## 167 1 0 1 1 1
## 168 1 1 1 1 1
## 169 0 1 1 1 0
## 170 0 0 1 1 1
## 171 1 1 1 1 1
## 172 1 1 0 1 1
## 173 1 1 1 1 1
## 174 1 1 1 1 1
## 175 1 1 1 1 1
## 176 1 1 1 1 1
## 177 0 0 1 1 1
## 178 1 1 1 1 1
## 179 0 0 0 1 1
## 180 0 0 0 1 1
## 181 0 0 0 0 1
## 182 0 1 0 0 1
## 183 1 1 1 1 1
## 184 1 1 0 1 1
## 185 1 1 1 1 1
## 186 1 1 1 1 1
## 187 1 1 1 1 1
## 188 1 1 1 1 1
## 189 1 1 1 1 1
## 190 0 0 0 1 1
## 191 1 1 0 1 1
## 192 0 0 0 1 1
## 193 0 0 0 0 1
## 194 1 1 1 1 1
## 195 1 1 1 1 1
## 196 1 1 0 1 1
## 197 1 1 0 0 1
## 198 1 1 0 1 1
## 199 1 1 0 1 1
## 200 1 1 1 1 1
## 201 1 1 1 1 1
## 202 0 1 0 1 0
## 203 1 0 1 1 0
## 204 1 1 1 1 1
## 205 1 0 0 1 1
## 206 1 1 0 1 1
## 207 1 1 0 1 1
## 208 1 1 1 1 1
## 209 0 1 0 1 0
## 210 0 0 0 1 0
## 211 0 0 0 1 0
## 212 0 0 0 1 0
## 213 0 0 0 1 0
## 214 0 0 1 1 0
## 215 1 0 1 1 1
## 216 1 1 0 1 1
## 217 1 1 0 1 1
## 218 1 1 1 1 1
## 219 1 1 1 1 1
## 220 0 0 0 1 1
## 221 1 1 0 1 1
## 222 1 1 1 1 1
## 223 1 1 1 1 1
## 224 1 1 0 1 1
## 225 0 0 0 1 1
## 226 1 0 1 1 1
## 227 1 0 1 1 1
## 228 1 0 1 1 1
## 229 1 1 1 1 1
## 230 1 1 1 1 1
## 231 1 0 1 1 1
## 232 1 0 1 1 1
## 233 1 0 1 1 1
## 234 1 0 1 1 1
## 235 1 1 0 1 1
## 236 1 1 1 1 1
## 237 1 1 0 1 1
## 238 1 1 0 1 1
## 239 1 0 1 1 1
## 240 1 1 1 1 1
## 241 1 1 1 1 1
## 242 1 1 1 1 1
## 243 1 1 1 1 1
## 244 1 1 1 1 1
## 245 1 1 1 1 1
## 246 1 1 1 1 1
## 247 1 1 1 1 1
## 248 1 1 0 1 1
## 249 1 1 1 1 1
## 250 0 1 0 1 1
## 251 1 1 1 1 1
## 252 1 1 1 1 1
## 253 0 1 0 1 1
## 254 1 1 1 1 1
## 255 1 1 1 1 1
## 256 1 1 0 1 1
## 257 1 1 0 1 1
## 258 1 1 0 1 1
## 259 1 1 1 1 1
## 260 1 1 1 1 1
## 261 0 1 1 1 1
## 262 1 1 1 1 1
## 263 1 1 1 1 1
## 264 1 1 1 1 1
## 265 1 1 1 1 1
## 266 1 1 1 1 1
## 267 1 1 0 1 1
## 268 1 1 1 1 1
## 269 1 1 1 1 1
## 270 1 1 1 1 1
## 271 1 0 0 1 1
## 272 1 1 0 1 1
## 273 1 1 0 1 1
## 274 1 0 0 1 1
## 275 1 1 0 1 1
## 276 1 1 1 0 1
## 277 1 0 1 1 1
## 278 0 0 1 1 1
## 279 0 0 1 1 1
## 280 0 1 1 1 1
## 281 1 0 1 1 1
## 282 0 0 1 1 1
## 283 0 0 1 1 1
## 284 0 0 1 1 1
## 285 0 0 1 1 1
## 286 1 0 1 1 1
## 287 0 0 1 1 1
## 288 1 1 0 1 1
## 289 1 1 0 1 0
## 290 1 1 0 1 1
## 291 0 0 1 0 1
## 292 1 1 1 1 1
## 293 1 1 1 1 1
## 294 1 1 0 1 1
## 295 1 1 1 1 1
## 296 1 1 0 1 1
## 297 1 1 1 1 1
## 298 1 1 0 1 1
## 299 1 1 1 1 1
## 300 0 1 1 1 1
## 301 1 0 1 1 1
## 302 1 1 1 1 1
## 303 1 1 1 1 1
## 304 1 1 1 1 1
## 305 0 1 0 1 1
## 306 1 1 1 1 1
## 307 0 1 0 1 1
## 308 0 1 1 1 1
## 309 1 1 1 1 1
## 310 1 1 0 1 1
## 311 1 1 0 1 1
## 312 1 1 1 1 1
## 313 1 1 1 1 1
## 314 1 1 0 1 1
## 315 0 1 1 1 1
## 316 1 1 1 1 1
## 317 1 1 1 1 1
## 318 1 1 0 1 1
## 319 1 0 1 1 1
## 320 1 1 1 1 1
## 321 0 1 1 1 1
## 322 1 1 1 1 1
## 323 1 1 1 1 1
## 324 1 0 1 1 1
## 325 0 0 0 1 1
## 326 1 1 1 1 1
## 327 1 1 1 1 1
## 328 0 0 0 1 0
## 329 0 1 0 1 1
## 330 1 1 1 1 1
## 331 1 1 1 1 1
## 332 1 1 1 1 1
## 333 1 1 1 1 1
## 334 1 1 1 1 1
## 335 1 0 0 1 1
## 336 1 0 0 1 1
## 337 1 1 0 1 1
## 338 1 1 1 1 1
## 339 1 1 1 1 1
## 340 0 1 0 1 1
## 341 1 0 1 1 1
## 342 1 1 1 1 1
## 343 1 1 1 1 1
## 344 0 1 1 1 1
## 345 1 1 1 1 1
## 346 1 1 1 1 1
## 347 1 1 1 1 1
## 348 1 0 1 1 1
## 349 0 1 1 1 1
## 350 1 1 1 1 1
## 351 1 1 1 1 1
## 352 1 1 1 1 1
## 353 0 1 1 1 1
## 354 0 0 0 1 1
## 355 0 1 0 1 1
## 356 0 1 1 1 1
## 357 1 1 1 1 1
## 358 0 1 0 1 1
## 359 0 0 0 1 0
## 360 0 0 1 1 0
## 361 1 1 1 1 1
## 362 0 0 0 1 0
## 363 1 0 1 1 1
## 364 1 0 1 1 1
## 365 1 1 1 1 1
## 366 1 1 1 1 1
## 367 0 0 1 1 0
## 368 1 1 0 1 1
## 369 1 1 1 1 1
## 370 1 0 1 1 1
## 371 1 0 1 1 1
## 372 1 0 1 1 1
## 373 0 0 1 1 0
## 374 1 1 1 1 0
## 375 1 1 1 1 1
## 376 1 1 1 1 1
## 377 1 1 1 1 1
## 378 1 1 1 1 1
## 379 1 1 0 1 1
## 380 0 1 0 1 1
## 381 1 1 1 1 1
## 382 1 0 0 1 1
## 383 1 1 1 1 1
## 384 1 1 1 1 1
## 385 1 1 1 1 1
## 386 1 0 1 1 1
## 387 1 0 1 1 1
## 388 1 1 1 1 1
## 389 1 1 1 1 1
## 390 1 1 1 1 1
## 391 1 0 1 1 1
## 392 1 0 1 1 1
## 393 1 0 1 1 1
## 394 1 0 1 1 1
## 395 1 1 1 1 1
## 396 1 1 1 1 1
## 397 1 0 1 1 1
## 398 1 1 1 1 1
## 399 1 1 1 1 1
## 400 1 1 1 1 1
## 401 0 1 0 1 1
## 402 1 0 1 1 1
## 403 1 1 0 1 1
## 404 1 1 0 1 1
## 405 1 1 0 1 1
## 406 1 1 1 1 1
## 407 1 1 1 1 1
## 408 1 1 1 1 1
## 409 1 0 1 1 1
## 410 1 0 1 1 1
## 411 1 1 1 1 1
## 412 1 1 1 1 1
## 413 0 0 1 1 1
## 414 1 1 1 1 1
## 415 1 1 1 1 1
## 416 1 1 1 1 1
## 417 1 1 1 1 0
## 418 1 1 0 1 1
## 419 1 1 0 1 1
## 420 1 0 0 1 1
## 421 1 1 1 1 1
## 422 0 0 0 1 1
## 423 0 0 0 1 1
## 424 0 1 0 1 1
## 425 1 1 1 1 1
## 426 1 1 1 1 1
## 427 1 1 1 1 1
## 428 0 1 1 1 1
## 429 1 1 1 1 1
## 430 0 0 1 1 1
## 431 0 1 0 1 1
## 432 1 0 0 1 1
## 433 1 1 1 1 1
## 434 1 1 1 1 1
## 435 1 1 1 1 1
## 436 1 1 1 1 1
## 437 1 1 1 1 1
## 438 0 1 0 1 1
## 439 1 1 1 1 1
## 440 1 1 1 1 1
## 441 0 0 0 1 1
## 442 0 0 0 1 1
## 443 0 1 0 1 1
## 444 1 1 1 1 1
## 445 1 1 1 1 1
## 446 1 1 1 1 1
## 447 1 1 1 1 1
## 448 1 1 1 1 1
## 449 1 1 1 1 1
## 450 1 1 1 1 1
## 451 1 1 1 1 1
## 452 1 1 1 1 1
## 453 0 1 0 1 1
## 454 1 1 0 1 1
## 455 1 1 1 1 1
## 456 1 1 1 1 1
## 457 0 1 1 1 0
## 458 1 1 0 1 1
## 459 1 1 1 1 1
## 460 1 1 1 1 1
## 461 0 1 0 1 1
## 462 1 1 1 1 1
## 463 1 1 1 1 1
## 464 0 1 0 1 1
## 465 1 1 0 1 1
## 466 0 0 0 1 1
## 467 1 1 1 1 1
## 468 1 0 1 1 0
## 469 1 1 1 1 1
## 470 1 1 1 1 1
## 471 0 0 0 1 1
## 472 0 1 0 1 1
## 473 1 1 1 0 1
## 474 1 1 1 1 1
## 475 1 0 0 1 1
## 476 1 1 0 1 1
## 477 1 1 1 1 1
## 478 1 1 1 1 1
## 479 1 1 1 1 1
## 480 1 1 1 1 1
## 481 1 1 1 1 1
## 482 1 1 1 1 1
## 483 0 1 0 1 1
## 484 1 0 0 0 1
## 485 1 1 1 1 0
## 486 1 1 1 1 1
## 487 1 0 1 1 1
## 488 1 0 1 1 1
## 489 1 0 1 1 1
## 490 1 0 1 1 1
## 491 1 0 1 1 1
## 492 1 0 1 1 1
## 493 1 0 1 1 1
## 494 1 0 1 1 1
## 495 1 1 1 1 1
## 496 1 0 1 1 1
## 497 1 1 1 1 1
## 498 1 1 1 1 1
## 499 1 1 1 1 1
## 500 1 1 1 1 1
## 501 1 1 1 1 1
## 502 1 1 0 1 1
## 503 1 1 1 1 1
## 504 1 1 1 1 1
## 505 1 1 1 1 1
## 506 1 1 1 1 1
## 507 1 1 1 1 0
## 508 1 1 1 1 1
## 509 1 1 1 1 1
## 510 1 1 1 1 1
## 511 1 0 1 1 1
## 512 0 1 0 1 1
## 513 1 1 1 1 1
## 514 0 0 1 1 0
## 515 1 1 0 1 1
## 516 0 0 1 1 0
## 517 1 1 1 1 0
## 518 1 1 1 1 1
## 519 1 1 1 1 1
## 520 0 1 0 1 1
## 521 1 1 1 1 0
## 522 1 1 1 1 1
## 523 1 1 1 1 1
## 524 1 1 1 1 1
## 525 1 1 1 1 1
## 526 1 1 1 1 1
## 527 1 0 0 1 1
## 528 1 1 1 1 1
## 529 1 1 1 1 1
## 530 0 0 1 1 0
## 531 1 1 1 1 1
## 532 1 1 1 1 1
## 533 1 1 0 1 1
## 534 1 1 0 1 1
## 535 1 1 0 1 1
## 536 1 1 1 1 1
## 537 1 1 1 1 1
## 538 1 1 1 1 0
## 539 1 0 0 1 1
## 540 1 0 1 1 1
## 541 1 1 1 1 0
## 542 1 1 1 1 1
## 543 1 1 1 0 1
## 544 1 1 1 1 1
## 545 0 1 0 1 1
## 546 1 1 1 1 1
## 547 1 1 1 1 1
## 548 1 1 1 1 0
## 549 1 1 1 1 1
## 550 1 1 1 1 1
## 551 0 0 0 1 1
## 552 0 1 0 1 1
## 553 1 1 1 1 1
## 554 1 1 1 1 1
## 555 1 1 1 1 1
## 556 1 1 1 1 1
## 557 1 1 1 1 1
## 558 1 1 1 1 1
## 559 1 1 1 1 1
## 560 1 1 1 1 1
## 561 1 1 1 1 1
## 562 1 1 0 1 1
## 563 1 1 1 1 1
## 564 0 0 0 1 1
## 565 1 1 1 1 1
## 566 1 0 1 1 0
## 567 1 1 1 1 1
## 568 1 1 1 1 1
## 569 1 1 1 1 1
## 570 1 0 1 1 1
## 571 1 1 1 1 1
## 572 0 1 1 1 1
## 573 1 1 0 1 1
## 574 1 1 0 1 1
## 575 1 1 0 1 1
## 576 1 1 1 1 1
## 577 1 1 1 1 1
## 578 1 1 0 1 1
## 579 1 1 1 1 1
## 580 1 1 0 1 1
## 581 1 1 1 1 1
## 582 1 1 1 1 1
## 583 0 1 1 1 1
## 584 1 1 1 1 1
## 585 1 1 1 1 1
## 586 0 0 1 1 0
## 587 0 1 1 1 1
## 588 1 1 1 1 1
## 589 1 1 1 1 1
## 590 1 1 1 1 1
## 591 1 1 1 1 1
## 592 1 1 1 1 1
## 593 1 1 1 1 1
## 594 1 1 1 1 1
## 595 1 0 0 1 1
## 596 1 1 1 1 1
## 597 1 1 1 1 1
## 598 0 1 0 1 1
## 599 0 1 0 1 1
## 600 0 1 0 1 1
## 601 1 1 1 1 1
## 602 0 0 0 1 1
## 603 1 1 1 1 1
## 604 0 1 0 1 1
## 605 1 0 1 1 1
## 606 0 1 1 1 1
## 607 1 1 1 1 1
## 608 0 1 1 1 1
## 609 1 1 1 1 1
## 610 1 1 1 1 1
## 611 0 1 1 1 1
## 612 1 1 1 1 1
## 613 1 1 0 1 1
## 614 1 1 1 1 1
## 615 1 1 0 1 1
## 616 1 1 0 1 1
## 617 1 1 1 1 0
## 618 1 1 1 1 1
## 619 1 1 1 1 1
## 620 1 1 1 1 1
## 621 0 1 0 1 1
## 622 1 0 1 1 1
## 623 0 0 0 1 0
## 624 1 1 1 1 1
## 625 1 1 1 1 1
## 626 1 0 0 1 0
## 627 1 1 1 1 0
## 628 1 1 1 1 1
## 629 1 1 1 1 1
## 630 1 1 1 1 1
## 631 1 1 1 1 1
## 632 1 1 0 1 1
## 633 1 1 0 1 1
## 634 1 1 1 1 1
## 635 1 1 1 1 1
## 636 1 1 1 1 1
## 637 1 1 1 1 1
## 638 0 1 1 1 1
## 639 1 1 1 1 1
## 640 0 1 1 1 1
## 641 1 1 1 1 1
## 642 1 1 0 1 0
## 643 1 1 1 1 1
## 644 1 0 1 1 1
## 645 1 0 1 1 1
## 646 1 0 1 1 1
## 647 0 0 0 0 1
## 648 1 0 0 1 1
## 649 1 0 0 1 1
## 650 1 0 1 1 1
## 651 1 1 1 1 1
## 652 1 1 1 1 0
## 653 1 1 1 1 1
## 654 0 1 0 1 1
## 655 1 1 1 1 1
## 656 1 1 1 1 1
## 657 1 1 1 1 1
## 658 1 1 1 1 1
## 659 1 1 1 1 1
## 660 1 1 1 1 1
## 661 1 1 0 1 1
## 662 1 0 1 1 1
## 663 1 1 1 1 1
## 664 1 1 1 1 1
## 665 1 0 1 1 1
## 666 1 0 1 1 1
## 667 1 0 1 1 1
## 668 1 0 1 1 1
## 669 1 0 1 1 1
## 670 1 0 1 1 1
## 671 1 0 1 1 1
## 672 1 0 1 1 1
## 673 1 0 1 1 1
## 674 1 0 1 1 1
## 675 1 0 1 1 1
## 676 1 0 1 1 1
## 677 0 0 1 1 1
## 678 1 0 1 1 1
## 679 1 0 1 1 1
## 680 1 0 1 1 1
## 681 0 0 1 1 1
## 682 1 1 1 1 1
## 683 1 1 1 1 1
## 684 0 1 0 1 1
## 685 1 1 1 1 1
## 686 1 0 1 1 1
## 687 1 0 1 1 1
## 688 1 1 1 1 1
## 689 1 1 1 1 1
## 690 1 0 1 1 1
## 691 1 1 1 1 1
## 692 1 1 0 1 1
## 693 0 0 1 1 1
## 694 1 1 0 1 1
## 695 1 1 0 1 1
## 696 1 1 0 1 1
## 697 1 1 0 1 1
## 698 1 1 1 1 1
## 699 1 1 1 1 1
## 700 1 0 1 1 1
## 701 1 1 1 1 1
## 702 0 1 1 1 1
## 703 1 1 1 1 1
## 704 1 1 1 1 1
## 705 1 1 1 1 1
## 706 1 1 1 1 0
## 707 1 1 1 1 1
## 708 1 1 1 1 0
## 709 1 0 1 1 1
## 710 1 0 1 1 1
## 711 1 1 1 1 1
## 712 1 1 1 1 1
## 713 1 1 1 1 1
## 714 1 1 1 1 1
## 715 1 1 1 1 1
## 716 1 1 1 1 1
## 717 1 1 1 1 1
## 718 1 1 1 1 1
## 719 1 1 1 1 1
## 720 1 1 1 1 1
## 721 1 1 1 1 1
## 722 1 1 1 1 1
## 723 1 1 1 1 1
## 724 1 1 1 1 1
## 725 1 1 1 1 1
## 726 1 1 1 1 1
## 727 1 0 1 1 1
## 728 0 1 0 1 1
## 729 1 1 1 1 1
## 730 1 1 1 1 1
## 731 1 1 1 1 1
## 732 1 1 1 1 1
## 733 1 1 1 1 1
## 734 1 0 1 1 1
## 735 0 1 0 1 1
## 736 1 1 1 1 1
## 737 1 1 1 1 1
## 738 1 0 1 1 1
## 739 1 1 1 1 1
## 740 1 0 1 1 1
## 741 1 1 1 1 1
## 742 1 1 1 1 1
## 743 0 0 0 1 1
## 744 0 1 1 1 1
## 745 1 1 1 1 1
## 746 0 0 0 1 0
## 747 0 0 1 1 0
## 748 1 1 1 1 1
## 749 0 1 1 1 1
## 750 1 1 1 1 1
## 751 1 0 1 1 1
## 752 1 1 1 1 1
## 753 0 1 1 1 1
## 754 1 1 1 1 1
## 755 1 1 1 1 1
## 756 1 1 1 1 1
## 757 0 1 1 1 1
## 758 0 0 0 0 1
## 759 1 0 1 1 1
## 760 0 1 1 1 1
## 761 1 1 1 1 1
## 762 1 1 1 1 1
## 763 0 1 1 1 1
## 764 0 0 0 1 1
## 765 1 1 1 1 1
## 766 0 0 0 1 1
## 767 1 0 1 1 1
## 768 0 1 1 1 1
## 769 0 0 1 1 1
## 770 1 1 1 1 1
## 771 1 1 1 1 1
## 772 1 1 1 1 1
## 773 1 1 1 1 1
## 774 1 1 0 1 0
## 775 1 0 1 1 1
## 776 1 1 1 1 1
## 777 0 1 1 1 1
## 778 1 1 1 1 1
## 779 1 1 1 1 1
## 780 1 1 1 1 1
## 781 1 1 1 1 0
## 782 1 0 1 1 1
## 783 1 0 1 1 1
## 784 1 1 1 1 1
## 785 1 1 1 1 1
## 786 0 1 0 1 1
## 787 0 0 0 0 1
## 788 1 1 1 1 1
## 789 1 1 1 1 1
## 790 1 1 1 1 1
## 791 1 1 1 1 1
## 792 1 1 1 1 1
## 793 1 1 1 1 1
## 794 1 1 1 1 1
## 795 1 1 1 1 1
## 796 0 1 1 1 1
## 797 1 0 1 1 1
## 798 1 1 1 1 1
## 799 0 1 1 1 1
## 800 0 1 0 1 1
## 801 1 1 1 1 1
## 802 1 0 0 1 1
## 803 1 1 1 1 0
## 804 1 1 1 1 1
## 805 1 1 1 1 1
## 806 1 1 1 1 1
## 807 1 1 1 1 1
## 808 1 1 1 1 1
## 809 1 1 1 1 1
## 810 1 1 1 1 1
## 811 1 1 1 1 1
## 812 1 1 1 1 1
## 813 1 1 1 1 1
## 814 0 0 0 1 1
## 815 0 1 1 1 1
## 816 1 1 1 1 1
## 817 0 0 1 1 1
## 818 1 1 1 1 1
## 819 1 1 0 1 1
## 820 1 0 1 1 1
## 821 1 1 0 1 1
## 822 0 0 0 0 1
## 823 0 0 0 1 1
## 824 0 0 0 1 1
## 825 0 0 0 1 1
## 826 0 0 0 1 1
## 827 1 1 1 1 1
## 828 1 1 1 1 1
## 829 1 1 1 1 1
## 830 1 1 0 1 1
## 831 0 1 0 1 1
## 832 1 1 1 1 1
## 833 1 1 1 1 1
## 834 1 0 1 1 1
## 835 0 0 1 1 1
## 836 0 0 1 1 1
## 837 0 0 1 1 1
## 838 0 0 1 1 1
## 839 0 0 1 1 1
## 840 0 1 1 1 1
## 841 1 0 0 1 1
## 842 1 1 1 1 1
## 843 1 1 1 1 1
## 844 1 1 0 1 1
## 845 1 1 0 1 1
## 846 1 1 1 1 1
## 847 0 0 0 1 1
## 848 1 1 0 1 1
## 849 1 0 1 1 1
## 850 1 1 1 1 1
## 851 1 1 1 1 1
## 852 1 0 1 1 1
## 853 1 1 1 1 1
## 854 1 1 1 1 1
## 855 1 1 1 1 1
## 856 1 1 1 1 1
## 857 1 1 1 1 1
## 858 1 1 1 1 1
## 859 1 1 1 1 1
## 860 1 1 1 0 1
## 861 1 0 1 1 1
## 862 1 1 1 1 1
## 863 0 0 0 0 1
## 864 0 1 0 1 1
## 865 1 1 1 1 1
## 866 1 1 1 1 1
## 867 0 1 1 1 1
## 868 1 0 1 1 1
## 869 0 1 0 1 1
## 870 1 1 1 1 1
## 871 1 1 1 1 1
## 872 1 1 1 1 1
## 873 1 0 1 1 1
## 874 1 1 0 1 1
## 875 1 1 1 1 1
## 876 1 1 1 1 1
## 877 0 1 0 1 1
## 878 1 1 1 1 1
## 879 0 0 0 0 1
## 880 1 1 1 1 1
## 881 1 1 1 1 1
## 882 0 1 1 1 1
## 883 0 1 0 1 1
## 884 1 1 1 1 1
## 885 1 1 0 1 1
## 886 0 1 0 1 1
## 887 0 1 0 1 1
## 888 0 1 1 1 1
## 889 1 1 1 1 1
## 890 1 1 1 1 0
## 891 1 1 1 1 1
## 892 1 1 1 1 1
## 893 0 1 0 1 1
## 894 0 1 1 1 1
## 895 0 1 0 1 1
## 896 0 1 0 1 1
## 897 1 1 1 1 1
## 898 0 1 0 1 1
## 899 0 1 0 1 1
## 900 1 1 1 1 1
## 901 1 1 1 1 1
## 902 0 1 0 1 1
## 903 1 1 1 1 0
## 904 1 1 1 1 0
## 905 1 1 0 1 1
## 906 1 1 1 1 1
## 907 0 1 1 1 1
## 908 1 1 1 1 1
## 909 1 1 1 1 1
## 910 1 1 1 1 1
## 911 1 0 1 1 1
## 912 0 1 0 1 1
## 913 1 1 0 1 0
## 914 1 0 0 1 0
## 915 1 1 1 1 1
## 916 1 1 0 1 1
## 917 1 1 1 1 1
## 918 1 1 1 1 1
## 919 1 0 1 1 1
## 920 1 0 1 1 1
## 921 1 1 1 1 1
## 922 1 1 1 1 1
## 923 1 0 1 1 1
## 924 1 1 1 1 1
## 925 1 1 1 1 1
## 926 0 1 1 1 1
## 927 1 1 1 1 1
## 928 0 1 0 1 1
## 929 1 1 1 1 1
## 930 1 1 1 1 1
## 931 1 0 1 1 1
## 932 1 1 1 1 1
## 933 0 1 0 0 0
## 934 1 0 1 1 1
## 935 1 1 1 1 1
## 936 0 1 0 1 0
## 937 1 0 1 1 1
## 938 1 1 1 1 1
## 939 1 0 1 1 1
## 940 1 0 1 1 1
## 941 1 0 1 1 1
## 942 1 1 1 1 1
## 943 1 1 1 1 1
## 944 1 1 0 1 1
## 945 1 1 1 1 1
## 946 1 1 1 1 1
## 947 1 1 0 1 1
## 948 1 1 1 1 1
## 949 1 1 1 1 1
## 950 1 1 1 1 0
## 951 1 1 1 1 0
## 952 1 1 1 1 1
## 953 1 1 1 1 1
## 954 1 1 1 1 1
## 955 1 0 1 1 1
## 956 1 1 1 1 1
## 957 1 1 1 1 1
## 958 0 1 0 1 1
## 959 1 1 1 1 1
## 960 1 1 1 1 0
## 961 1 1 0 1 0
## 962 1 1 1 1 0
## 963 1 1 1 1 1
## 964 1 0 1 1 1
## 965 0 1 1 1 1
## 966 1 0 1 1 1
## 967 1 1 1 1 1
## 968 1 0 1 1 1
## 969 1 1 0 1 1
## 970 1 0 1 1 1
## 971 1 1 1 1 1
## 972 1 1 1 1 1
## 973 1 1 1 1 1
## 974 1 1 1 1 1
## 975 1 1 1 1 1
## 976 1 1 1 1 1
## 977 1 1 1 1 1
## 978 1 1 1 1 1
## 979 1 1 1 1 1
## 980 1 1 1 1 1
## 981 0 0 0 1 1
## 982 1 1 1 1 1
## 983 1 1 1 1 1
## 984 1 1 1 1 1
## 985 1 1 1 1 1
## 986 1 1 1 1 1
## 987 0 1 0 1 1
## 988 0 1 0 1 1
## 989 0 1 1 1 1
## 990 0 1 0 1 1
## 991 1 1 1 1 1
## 992 0 1 0 1 1
## 993 1 1 1 1 1
## 994 0 1 1 1 1
## 995 1 1 1 1 1
## 996 1 1 1 1 1
## 997 0 1 0 1 1
## 998 1 1 1 1 1
## 999 1 1 1 1 1
## 1000 1 1 1 1 0
## 1001 1 1 1 1 1
## 1002 0 1 0 1 1
## 1003 1 0 1 1 1
## 1004 1 0 1 1 1
## 1005 1 0 1 1 1
## 1006 1 0 1 1 1
## 1007 1 0 1 1 1
## 1008 1 0 1 1 1
## 1009 1 0 1 1 1
## 1010 1 0 1 1 1
## 1011 1 0 1 1 1
## 1012 1 0 1 1 1
## 1013 1 0 1 1 1
## 1014 1 0 1 1 1
## 1015 1 0 1 1 1
## 1016 1 0 1 1 1
## 1017 1 1 1 1 1
## 1018 0 1 0 1 1
## 1019 1 0 1 1 1
## 1020 1 1 1 1 1
## 1021 1 1 1 1 1
## 1022 1 1 1 1 1
## 1023 1 1 0 1 1
## 1024 1 1 0 1 1
## 1025 1 0 1 1 1
## 1026 1 0 0 1 1
## 1027 1 1 1 1 1
## 1028 1 0 0 1 1
## 1029 1 0 0 1 1
## 1030 1 1 1 1 1
## 1031 1 1 1 1 1
## 1032 1 1 1 1 1
## 1033 0 1 0 1 1
## 1034 1 1 1 1 1
## 1035 0 1 0 1 1
## 1036 1 1 1 1 1
## 1037 0 1 1 1 1
## 1038 1 1 0 1 0
## 1039 1 1 1 1 1
## 1040 0 0 1 1 1
## 1041 0 1 0 1 1
## 1042 1 1 1 1 1
## 1043 1 1 1 1 1
## 1044 1 1 1 1 1
## 1045 1 1 1 1 1
## 1046 0 1 0 1 1
## 1047 1 1 0 1 1
## 1048 1 1 1 1 1
## 1049 1 1 1 1 1
## 1050 1 1 1 1 1
## 1051 1 0 1 1 1
## 1052 1 0 1 1 1
## 1053 1 1 1 1 1
## 1054 1 0 1 1 1
## 1055 1 1 0 1 1
## 1056 0 1 0 1 1
## 1057 1 1 1 1 0
## 1058 1 1 1 1 1
## 1059 1 0 0 1 1
## 1060 1 0 0 1 1
## 1061 1 0 0 1 1
## 1062 1 0 0 1 1
## 1063 1 0 0 1 1
## 1064 1 0 0 1 1
## 1065 0 0 0 1 1
## 1066 1 0 0 1 1
## 1067 0 1 0 1 1
## 1068 1 0 0 1 1
## 1069 1 1 1 1 1
## 1070 0 1 1 1 1
## 1071 1 1 0 1 1
## 1072 1 1 1 1 1
## 1073 1 1 1 1 1
## 1074 1 1 0 1 1
## 1075 1 1 1 1 1
## 1076 1 1 1 1 1
## 1077 0 1 0 1 1
## 1078 1 0 0 1 1
## 1079 1 0 0 1 1
## 1080 0 1 0 1 1
## 1081 1 0 0 1 1
## 1082 1 1 1 1 1
## 1083 1 1 1 1 1
## 1084 1 1 1 1 0
## 1085 1 1 1 1 1
## 1086 0 1 1 1 1
## 1087 0 0 0 0 0
## 1088 1 0 1 1 1
## 1089 1 1 1 1 1
## 1090 1 1 1 1 1
## 1091 1 1 1 1 1
## 1092 0 1 1 1 1
## 1093 0 1 0 1 1
## 1094 1 1 1 1 1
## 1095 0 1 0 1 1
## 1096 1 0 0 1 1
## 1097 1 0 0 1 1
## 1098 1 0 0 1 1
## 1099 1 0 0 1 1
## 1100 1 0 0 1 1
## 1101 1 1 1 1 1
## 1102 1 0 0 1 1
## 1103 1 0 1 1 1
## 1104 1 1 1 1 1
## 1105 1 1 0 1 1
## 1106 0 1 1 1 1
## 1107 1 1 0 1 1
## 1108 1 1 0 1 1
## 1109 1 1 0 1 1
## 1110 1 1 0 1 1
## 1111 1 1 1 1 1
## 1112 1 1 0 1 1
## 1113 1 1 0 1 1
## 1114 1 0 0 1 1
## 1115 1 0 1 1 1
## 1116 1 1 1 1 1
## 1117 1 1 1 1 1
## 1118 1 0 1 1 1
## 1119 0 1 1 1 1
## 1120 1 1 1 1 1
## 1121 1 1 1 1 1
## 1122 1 1 1 1 1
## 1123 1 1 0 1 1
## 1124 1 0 0 1 1
## 1125 1 1 1 1 1
## 1126 1 1 1 1 1
## 1127 1 1 1 1 1
## 1128 1 1 1 1 1
## 1129 1 1 1 1 1
## 1130 1 1 1 1 1
## 1131 1 1 1 1 1
## 1132 1 0 1 1 1
## 1133 1 1 0 1 1
## 1134 1 0 1 1 1
## 1135 1 0 1 1 1
## 1136 1 0 0 1 1
## 1137 1 0 0 1 1
## 1138 1 1 0 1 1
## 1139 1 1 1 1 1
## 1140 1 0 0 1 0
## 1141 1 1 1 1 1
## 1142 1 1 1 1 1
## 1143 1 1 1 1 1
## 1144 1 1 1 1 1
## 1145 0 1 0 0 1
## 1146 1 1 1 1 1
## 1147 1 1 1 1 1
## 1148 0 1 0 1 1
## 1149 0 1 0 0 1
## 1150 0 1 0 0 1
## 1151 1 0 1 1 1
## 1152 1 1 0 1 0
## 1153 1 0 1 1 1
## 1154 1 1 1 1 1
## 1155 0 1 1 1 1
## 1156 1 1 1 1 1
## 1157 1 1 1 1 1
## 1158 1 1 0 1 1
## 1159 1 0 0 1 1
## 1160 0 1 0 0 1
## 1161 1 1 1 1 1
## 1162 1 1 1 1 1
## 1163 1 1 0 1 1
## 1164 1 0 1 1 1
## 1165 1 1 1 1 1
## 1166 1 1 1 1 1
## 1167 1 1 1 1 0
## 1168 0 1 1 1 1
## 1169 1 1 1 1 1
## 1170 1 1 1 1 1
## 1171 1 1 1 1 1
## 1172 1 1 1 1 1
## 1173 1 0 1 1 1
## 1174 1 1 1 1 1
## 1175 1 1 1 1 1
## 1176 1 1 1 1 1
## 1177 1 1 1 1 1
## 1178 1 1 1 1 1
## 1179 1 0 0 1 0
## 1180 1 1 1 1 1
## 1181 1 1 1 1 1
## 1182 1 1 1 1 1
## 1183 1 1 1 1 1
## 1184 1 1 1 1 1
## 1185 0 1 1 1 1
## 1186 0 0 0 1 1
## 1187 0 1 0 1 1
## 1188 0 1 0 0 1
## 1189 1 1 1 1 1
## 1190 0 0 1 1 1
## 1191 0 1 0 1 1
## 1192 0 0 0 1 0
## 1193 0 1 1 1 1
## 1194 1 0 1 1 1
## 1195 0 0 1 0 1
## 1196 1 0 0 1 1
## 1197 1 0 0 1 1
## 1198 1 0 1 1 1
## 1199 1 1 1 1 1
## 1200 0 0 1 1 1
## 1201 1 1 0 1 1
## 1202 1 1 1 1 1
## 1203 1 1 1 1 1
## 1204 1 0 1 1 1
## 1205 1 1 0 1 1
## 1206 1 0 1 1 1
## 1207 1 1 1 1 1
## 1208 1 1 1 1 1
## 1209 1 1 1 1 1
## 1210 1 0 1 1 1
## 1211 1 1 1 1 1
## 1212 1 1 1 1 1
## 1213 1 0 1 1 1
## 1214 1 1 1 1 1
## 1215 1 0 0 1 0
## 1216 0 0 1 1 1
## 1217 0 0 1 1 1
## 1218 0 0 1 1 1
## 1219 0 0 1 1 1
## 1220 0 0 1 1 1
## 1221 1 1 1 1 1
## 1222 0 1 1 1 1
## 1223 1 1 1 1 1
## 1224 0 1 0 1 1
## 1225 0 1 0 1 1
## 1226 1 1 0 1 1
## 1227 1 0 1 1 1
## 1228 1 0 1 1 1
## 1229 1 1 1 1 1
## 1230 1 1 1 1 1
## 1231 1 0 1 1 1
## 1232 1 0 0 1 1
## 1233 1 0 1 1 1
## 1234 0 1 0 1 0
## 1235 1 1 0 1 0
## 1236 1 1 1 1 1
## 1237 1 1 1 1 1
## 1238 1 1 1 1 1
## 1239 1 1 1 1 1
## 1240 1 1 1 1 1
## 1241 1 0 0 1 1
## 1242 0 1 0 1 1
## 1243 1 1 1 1 1
## 1244 1 0 1 1 1
## 1245 0 1 1 1 1
## 1246 1 1 0 1 1
## 1247 1 0 1 1 1
## 1248 1 0 1 1 1
## 1249 1 1 1 1 1
## 1250 1 0 1 1 1
## 1251 1 1 1 1 1
## 1252 1 1 1 1 1
## 1253 1 1 1 1 1
## 1254 0 1 0 1 1
## 1255 1 1 1 1 1
## 1256 1 0 1 1 1
## 1257 0 1 0 1 1
## 1258 1 1 1 1 1
## 1259 1 1 1 1 1
## 1260 1 1 1 1 1
## 1261 1 1 1 1 1
## 1262 0 1 0 1 1
## 1263 1 1 1 1 1
## 1264 1 1 1 1 0
## 1265 1 1 1 1 1
## 1266 1 0 1 1 1
## 1267 0 1 1 1 1
## 1268 1 0 1 1 1
## 1269 0 1 1 1 1
## 1270 0 1 0 1 1
## 1271 1 1 1 1 1
## 1272 0 1 0 0 1
## 1273 0 0 0 1 1
## 1274 1 1 1 1 0
## 1275 1 1 0 1 1
## 1276 1 1 0 1 1
## 1277 0 0 1 1 1
## 1278 0 1 1 1 1
## 1279 0 1 1 0 0
## 1280 1 1 1 1 0
## 1281 1 1 1 1 1
## 1282 1 1 1 1 1
## 1283 0 1 0 1 1
## 1284 1 1 1 1 1
## 1285 1 1 0 1 1
## 1286 1 1 1 1 1
## 1287 0 1 0 1 1
## 1288 0 1 0 1 1
## 1289 1 1 1 1 1
## 1290 1 1 1 1 1
## 1291 0 0 0 1 0
## 1292 1 1 1 1 1
## 1293 0 1 1 1 1
## 1294 0 1 0 1 1
## 1295 1 1 1 1 1
## 1296 1 1 1 1 1
## 1297 1 1 1 1 1
## 1298 1 0 1 1 1
## 1299 1 1 1 1 1
## 1300 1 0 1 1 1
## 1301 1 1 1 1 1
## 1302 1 1 1 1 1
## 1303 1 1 1 1 1
## 1304 1 1 1 1 1
## 1305 1 0 1 1 1
## 1306 0 1 1 1 1
## 1307 1 1 1 1 1
## 1308 1 1 0 1 1
## 1309 1 1 1 1 1
## 1310 1 0 1 1 1
## 1311 1 0 0 1 1
## 1312 1 1 1 1 1
## 1313 0 1 0 1 1
## 1314 1 1 0 1 1
## 1315 0 1 0 1 0
## 1316 0 1 0 1 1
## 1317 0 1 0 1 0
## 1318 0 0 0 1 1
## 1319 0 1 0 1 1
## 1320 0 0 0 1 1
## 1321 1 1 1 1 1
## 1322 1 1 1 1 1
## 1323 1 0 1 1 1
## 1324 0 1 1 1 1
## 1325 1 0 1 1 1
## 1326 1 0 1 1 0
## 1327 1 0 1 1 1
## 1328 1 1 1 1 1
## 1329 1 0 1 1 1
## 1330 1 1 1 1 1
## 1331 1 1 0 1 1
## 1332 1 0 1 1 1
## 1333 1 1 1 1 1
## 1334 1 0 1 1 1
## 1335 1 0 1 1 1
## 1336 1 1 1 1 1
## 1337 1 0 1 1 1
## 1338 1 1 0 1 1
## 1339 1 0 1 1 1
## 1340 1 1 1 1 1
## 1341 1 1 1 1 1
## 1342 1 1 1 1 0
## 1343 1 0 1 1 1
## 1344 1 1 1 1 0
## 1345 0 1 1 1 0
## 1346 1 1 0 1 1
## 1347 0 0 1 1 0
## 1348 1 1 1 1 0
## 1349 1 1 1 1 1
## 1350 1 1 1 1 1
## 1351 1 0 1 1 1
## 1352 1 1 1 1 0
## 1353 1 1 1 1 0
## 1354 1 1 0 1 1
## 1355 0 0 1 1 0
## 1356 1 1 1 1 1
## 1357 1 1 1 1 1
## 1358 1 1 1 1 1
## 1359 1 1 1 1 0
## 1360 1 1 1 1 0
## 1361 1 0 1 1 1
## 1362 1 1 1 1 1
## 1363 1 1 1 1 0
## 1364 1 1 1 1 0
## 1365 1 1 1 1 0
## 1366 0 1 1 1 1
## 1367 1 1 1 1 0
## 1368 1 1 1 1 0
## 1369 1 1 1 1 0
## 1370 1 1 1 1 0
## 1371 1 1 1 1 0
## 1372 1 1 1 1 1
## 1373 1 0 0 1 1
## 1374 1 1 0 1 1
## 1375 1 1 1 1 1
## 1376 1 1 1 1 1
## 1377 1 1 0 1 1
## 1378 1 1 1 1 0
## 1379 1 1 1 1 0
## 1380 1 0 1 1 1
## 1381 1 1 0 1 1
## 1382 1 1 1 1 1
## 1383 1 0 1 1 1
## 1384 1 0 1 1 1
## 1385 1 1 0 1 1
## 1386 1 1 0 1 1
## 1387 1 0 1 1 1
## 1388 1 1 1 1 1
## 1389 1 1 0 1 1
## 1390 1 1 1 1 0
## 1391 1 1 1 1 0
## 1392 1 0 1 1 0
## 1393 1 1 1 1 1
## 1394 1 1 1 1 1
## 1395 1 1 1 1 1
## 1396 1 0 1 1 1
## 1397 1 0 0 1 1
## 1398 1 1 1 1 1
## 1399 0 1 1 1 1
## 1400 1 1 1 1 1
## 1401 1 1 1 1 1
## 1402 1 1 1 1 1
## 1403 1 1 1 1 1
## 1404 1 1 0 1 1
## 1405 1 1 1 1 1
## 1406 1 1 0 1 0
## 1407 1 1 1 1 1
## 1408 0 0 0 1 0
## 1409 1 1 1 1 1
## 1410 1 1 1 1 1
## 1411 1 1 1 1 1
## 1412 0 1 0 1 1
## 1413 0 1 0 1 1
## 1414 1 1 1 1 1
## 1415 0 0 0 1 1
## 1416 1 1 1 1 1
## 1417 1 1 1 1 1
## 1418 0 1 0 1 1
## 1419 1 0 1 1 1
## 1420 1 0 1 1 1
## 1421 1 0 1 1 1
## 1422 1 0 1 1 1
## 1423 1 0 1 1 1
## 1424 1 1 1 1 1
## 1425 1 0 0 1 1
## 1426 1 1 1 1 1
## 1427 1 1 0 1 1
## 1428 1 1 1 1 1
## 1429 1 1 1 1 1
## 1430 1 1 1 1 1
## 1431 0 1 0 0 1
## 1432 0 1 0 1 1
## 1433 0 1 1 1 1
## 1434 0 1 0 1 1
## 1435 1 1 1 1 1
## 1436 0 1 0 1 1
## 1437 1 1 1 1 1
## 1438 0 1 0 1 1
## 1439 1 1 1 1 1
## 1440 1 0 1 1 1
## 1441 1 0 1 1 1
## 1442 1 1 1 1 1
## 1443 1 0 1 1 1
## 1444 1 0 1 1 1
## 1445 1 0 1 1 1
## 1446 0 0 1 1 1
## 1447 1 0 1 1 1
## 1448 1 0 1 1 1
## 1449 1 1 1 1 1
## 1450 1 1 1 1 1
## 1451 1 0 1 1 1
## 1452 1 1 0 1 1
## 1453 0 1 0 1 1
## 1454 0 1 0 1 1
## 1455 0 1 0 1 1
## 1456 1 1 1 1 1
## 1457 1 0 1 1 1
## 1458 1 1 1 1 1
## 1459 1 1 0 1 1
## 1460 1 1 0 1 1
## 1461 0 1 0 1 1
## 1462 1 1 1 0 1
## 1463 1 1 1 1 1
## 1464 1 1 1 1 1
## 1465 1 1 1 1 1
## 1466 1 1 1 1 1
## 1467 0 1 0 1 1
## 1468 0 1 0 1 1
## 1469 0 0 1 1 1
## 1470 1 1 1 1 0
## 1471 0 0 0 0 1
## 1472 1 1 1 1 1
## 1473 0 1 0 1 1
## 1474 1 1 1 1 1
## 1475 1 1 1 1 1
## 1476 1 1 1 1 1
## 1477 1 1 1 1 1
## 1478 1 1 1 1 1
## 1479 1 0 1 1 1
## 1480 0 0 1 1 1
## 1481 0 1 1 1 0
## 1482 0 0 1 1 1
## 1483 0 1 0 1 1
## 1484 1 1 1 1 1
## 1485 1 1 0 1 1
## 1486 1 0 1 1 1
## 1487 1 0 1 1 1
## 1488 0 1 1 0 1
## 1489 1 0 1 1 1
## 1490 1 1 1 1 1
## 1491 1 0 1 1 1
## 1492 1 0 1 1 1
## 1493 1 0 1 1 1
## 1494 1 0 1 1 1
## 1495 1 0 1 1 1
## 1496 0 0 0 0 1
## 1497 1 0 1 1 1
## 1498 1 0 1 1 1
## 1499 1 0 1 1 1
## 1500 1 0 1 1 1
## 1501 1 0 1 1 1
## 1502 1 1 1 1 1
## 1503 1 1 1 1 1
## 1504 1 1 0 1 1
## 1505 1 1 1 1 1
## 1506 1 1 1 1 1
## 1507 1 1 1 1 1
## 1508 1 1 0 1 1
## 1509 1 0 1 1 1
## 1510 1 0 1 1 1
## 1511 1 1 0 1 1
## 1512 1 1 1 1 1
## 1513 1 1 1 1 1
## 1514 1 0 1 1 1
## 1515 1 1 0 1 1
## 1516 1 1 0 1 1
## 1517 1 0 1 1 1
## 1518 1 1 1 1 1
## 1519 1 0 1 1 1
## 1520 1 1 1 1 1
## 1521 1 0 1 1 1
## 1522 1 1 1 1 1
## 1523 1 1 1 1 1
## 1524 1 1 0 1 1
## 1525 1 1 1 1 1
## 1526 1 1 1 1 1
## 1527 0 1 1 1 1
## 1528 1 1 1 1 1
## 1529 1 1 1 1 1
## 1530 1 1 1 1 1
## 1531 1 1 1 1 1
## 1532 1 1 1 1 1
## 1533 1 0 0 1 1
## 1534 1 1 1 1 1
## 1535 1 1 1 1 1
## 1536 1 1 1 1 1
## 1537 0 0 1 1 1
## 1538 1 1 0 1 1
## 1539 1 1 1 1 1
## 1540 1 1 0 1 1
## 1541 1 1 1 1 1
## 1542 1 1 0 1 1
## 1543 1 1 1 1 1
## 1544 0 0 1 1 1
## 1545 0 0 1 1 1
## 1546 0 0 0 1 1
## 1547 1 1 1 1 1
## 1548 1 0 1 1 1
## 1549 1 0 1 1 1
## 1550 1 0 1 1 1
## 1551 1 1 1 1 1
## 1552 0 1 1 1 1
## 1553 1 1 1 1 1
## 1554 1 1 1 1 1
## 1555 1 1 1 1 1
## 1556 1 1 1 1 1
## 1557 1 1 1 1 1
## 1558 1 1 1 1 1
## 1559 1 1 1 1 1
## 1560 1 1 1 1 1
## 1561 1 0 1 1 1
## 1562 1 0 1 1 1
## 1563 1 0 1 1 1
## 1564 1 1 1 1 1
## 1565 0 0 1 1 1
## 1566 0 0 1 1 0
## 1567 1 1 1 1 1
## 1568 1 1 1 1 1
## 1569 1 1 1 1 1
## 1570 1 1 1 1 1
## 1571 1 1 1 1 1
## 1572 1 1 1 1 1
## 1573 1 1 1 1 1
## 1574 1 0 1 1 1
## 1575 1 0 1 1 1
## 1576 1 1 1 1 1
## 1577 1 0 1 1 1
## 1578 1 1 1 1 1
## 1579 0 1 1 1 1
## 1580 1 0 1 1 1
## 1581 0 0 1 1 1
## 1582 0 1 1 1 1
## 1583 0 1 1 1 1
## 1584 1 1 1 1 0
## 1585 1 0 1 1 1
## 1586 1 0 1 1 1
## 1587 0 0 1 1 0
## 1588 1 1 0 1 1
## 1589 1 0 1 1 1
## 1590 1 0 1 1 1
## 1591 1 0 1 1 1
## 1592 1 0 1 1 1
## 1593 1 0 1 1 1
## 1594 1 0 1 1 1
## 1595 0 1 0 1 0
## 1596 1 0 1 1 1
## 1597 1 1 1 1 1
## 1598 1 0 1 1 1
## 1599 1 0 1 1 1
## 1600 1 0 0 1 1
## 1601 1 0 1 1 1
## 1602 1 0 1 1 1
## 1603 1 0 1 1 1
## 1604 1 1 1 1 1
## 1605 1 1 1 1 1
## 1606 1 0 1 1 1
## 1607 1 1 1 1 1
## 1608 1 1 1 1 1
## 1609 1 0 1 1 1
## 1610 1 0 1 1 1
## 1611 1 0 1 1 1
## 1612 0 0 1 1 1
## 1613 1 1 1 1 1
## 1614 1 1 1 1 1
## 1615 1 0 1 1 1
## 1616 1 0 1 1 1
## 1617 1 0 1 1 1
## 1618 1 0 1 1 1
## 1619 1 0 1 1 1
## 1620 1 0 1 1 1
## 1621 1 0 1 1 1
## 1622 1 0 0 1 1
## 1623 1 1 1 1 1
## 1624 1 1 1 1 1
## 1625 1 1 0 1 1
## 1626 1 1 1 1 1
## 1627 1 1 0 1 1
## 1628 1 1 1 1 1
## 1629 1 1 0 1 1
## 1630 1 1 0 1 1
## 1631 1 1 1 1 1
## 1632 1 1 1 1 1
## 1633 0 1 0 1 1
## 1634 1 1 0 1 1
## 1635 0 1 0 1 1
## 1636 1 1 1 1 1
## 1637 0 1 0 1 1
## 1638 1 1 1 1 0
## 1639 1 1 1 1 1
## 1640 1 1 0 1 1
## 1641 1 1 1 1 1
## 1642 1 1 1 1 1
## 1643 1 1 1 1 1
## 1644 1 1 0 1 1
## 1645 1 1 1 1 1
## 1646 1 1 1 1 1
## 1647 1 1 1 1 1
## 1648 1 1 0 1 0
## 1649 1 0 1 1 1
## 1650 1 1 1 1 1
## 1651 1 1 1 1 1
## 1652 1 1 0 1 1
## 1653 0 0 1 1 1
## 1654 0 0 1 1 1
## 1655 1 0 0 1 1
## 1656 1 0 1 1 1
## 1657 1 1 1 1 1
## 1658 1 1 1 1 1
## 1659 1 1 0 1 1
## 1660 1 1 1 1 0
## 1661 1 1 1 1 1
## 1662 1 0 1 1 1
## 1663 1 1 1 1 0
## 1664 0 1 0 1 1
## 1665 0 1 0 1 1
## 1666 0 0 0 1 1
## 1667 1 1 1 1 1
## 1668 1 1 1 1 1
## 1669 1 1 1 1 1
## 1670 1 1 1 1 1
## 1671 1 1 1 1 1
## 1672 1 1 1 1 1
## 1673 1 1 1 1 1
## 1674 1 1 1 1 1
## 1675 1 1 1 1 1
## 1676 0 0 1 1 0
## 1677 1 0 1 1 1
## 1678 1 0 1 1 1
## 1679 1 1 1 1 1
## 1680 1 1 1 1 1
## 1681 1 0 1 1 1
## 1682 0 0 1 1 0
## 1683 1 1 0 1 1
## 1684 1 0 1 1 1
## 1685 1 0 1 1 1
## 1686 1 0 1 1 1
## 1687 1 1 1 1 1
## 1688 1 0 1 1 1
## 1689 0 1 1 1 0
## 1690 1 0 1 1 1
## 1691 0 0 0 1 1
## 1692 0 0 1 1 1
## 1693 0 0 0 1 1
## 1694 1 1 1 1 1
## 1695 1 0 1 1 1
## 1696 1 1 1 1 1
## 1697 0 1 1 1 1
## 1698 1 0 1 1 1
## 1699 1 0 1 1 1
## 1700 1 1 1 1 1
## 1701 1 0 1 1 1
## 1702 1 0 1 1 1
## 1703 0 0 1 1 0
## 1704 1 0 1 1 0
## 1705 1 0 1 1 1
## 1706 1 1 1 1 1
## 1707 1 1 1 1 1
## 1708 1 1 1 1 1
## 1709 1 1 1 1 1
## 1710 0 0 0 1 1
## 1711 0 0 1 1 0
## 1712 1 1 1 1 1
## 1713 1 0 1 1 1
## 1714 1 0 1 1 1
## 1715 1 1 1 1 0
## 1716 1 1 1 1 1
## 1717 0 0 1 1 1
## 1718 1 1 1 1 1
## 1719 0 0 1 1 1
## 1720 1 1 1 1 1
## 1721 1 0 1 1 1
## 1722 1 1 1 1 1
## 1723 0 0 0 1 1
## 1724 1 1 1 1 1
## 1725 1 1 1 1 1
## hv_phone hv_facebook hv_reviews hv_manual_offline hv_manual_jumio
## 1 1 0 1 1 0
## 2 1 0 1 1 0
## 3 1 0 1 1 0
## 4 1 0 1 0 1
## 5 1 0 1 0 1
## 6 1 1 1 0 0
## 7 1 0 1 0 1
## 8 1 0 1 0 1
## 9 1 0 1 1 0
## 10 1 1 1 0 0
## 11 1 1 1 0 0
## 12 1 0 0 0 0
## 13 1 0 1 0 1
## 14 1 1 1 1 1
## 15 1 0 1 0 1
## 16 1 0 1 0 1
## 17 1 1 1 1 1
## 18 1 1 1 1 1
## 19 1 1 1 0 0
## 20 1 1 1 0 1
## 21 1 1 1 0 1
## 22 1 0 1 0 0
## 23 1 0 1 0 0
## 24 1 0 1 0 0
## 25 1 0 1 0 0
## 26 1 0 1 0 1
## 27 1 0 1 0 1
## 28 1 0 1 0 0
## 29 1 0 1 0 0
## 30 1 0 1 0 0
## 31 1 0 1 0 1
## 32 1 0 1 0 1
## 33 1 0 1 0 0
## 34 1 0 1 0 1
## 35 1 0 0 0 0
## 36 1 0 0 0 0
## 37 1 0 1 0 1
## 38 1 0 1 0 1
## 39 1 0 1 0 1
## 40 1 0 1 0 0
## 41 1 0 1 0 1
## 42 1 0 1 0 1
## 43 1 0 1 0 0
## 44 1 0 0 0 0
## 45 1 0 0 0 0
## 46 1 0 0 0 0
## 47 1 0 1 0 0
## 48 1 0 1 0 0
## 49 1 0 1 0 0
## 50 1 0 1 0 0
## 51 1 0 1 0 1
## 52 1 0 1 0 0
## 53 1 0 1 0 0
## 54 1 0 0 0 0
## 55 1 0 1 0 1
## 56 1 0 1 0 1
## 57 1 0 1 0 1
## 58 1 0 1 0 1
## 59 1 0 1 0 0
## 60 1 0 1 0 0
## 61 1 0 1 0 1
## 62 1 0 1 0 1
## 63 1 0 1 0 1
## 64 1 0 0 0 0
## 65 1 0 1 0 1
## 66 1 0 1 0 1
## 67 1 0 1 0 0
## 68 1 0 1 0 1
## 69 1 0 1 0 1
## 70 1 0 1 0 1
## 71 1 0 1 0 1
## 72 1 0 1 0 1
## 73 1 0 1 0 0
## 74 1 0 1 1 1
## 75 1 0 1 0 1
## 76 1 0 0 0 1
## 77 1 0 1 0 1
## 78 1 0 1 0 1
## 79 1 0 1 0 1
## 80 1 0 1 0 0
## 81 1 0 1 0 1
## 82 1 0 1 1 1
## 83 1 0 1 0 1
## 84 1 0 1 0 1
## 85 1 0 1 0 1
## 86 1 0 1 0 1
## 87 1 0 1 0 1
## 88 1 0 1 0 0
## 89 1 0 1 0 0
## 90 1 0 1 0 0
## 91 1 0 1 0 1
## 92 1 0 1 0 1
## 93 1 0 1 0 1
## 94 1 0 1 0 0
## 95 1 0 1 0 0
## 96 1 0 1 0 1
## 97 1 0 1 0 1
## 98 1 0 1 0 1
## 99 1 0 1 0 1
## 100 1 1 1 0 1
## 101 1 1 1 0 1
## 102 1 1 1 0 1
## 103 1 0 1 0 1
## 104 1 0 1 0 1
## 105 1 0 1 0 1
## 106 1 1 1 0 1
## 107 1 0 1 0 1
## 108 1 0 1 0 1
## 109 1 0 0 0 0
## 110 1 0 1 0 1
## 111 1 0 0 0 0
## 112 1 0 1 0 1
## 113 1 0 1 0 1
## 114 1 0 1 0 0
## 115 1 0 1 0 1
## 116 1 0 1 0 1
## 117 1 0 1 0 1
## 118 1 1 1 0 1
## 119 1 0 0 0 0
## 120 1 0 1 0 1
## 121 1 1 1 0 1
## 122 1 0 0 0 0
## 123 1 0 1 0 1
## 124 1 0 1 0 1
## 125 1 0 1 0 1
## 126 1 0 1 0 0
## 127 1 0 1 0 0
## 128 1 0 1 0 1
## 129 1 0 1 0 1
## 130 1 0 1 0 1
## 131 1 1 1 0 0
## 132 1 0 1 0 1
## 133 1 0 1 0 1
## 134 1 0 1 0 1
## 135 1 1 1 0 0
## 136 1 1 1 0 0
## 137 1 0 1 0 0
## 138 1 0 1 0 1
## 139 1 0 1 0 1
## 140 1 0 1 0 1
## 141 1 0 1 0 1
## 142 1 0 1 0 1
## 143 1 0 0 0 0
## 144 1 0 0 0 0
## 145 1 0 0 0 0
## 146 1 0 1 0 1
## 147 1 0 1 0 1
## 148 1 0 1 0 1
## 149 1 0 1 0 1
## 150 1 0 1 0 1
## 151 1 0 1 0 1
## 152 1 0 1 0 1
## 153 1 0 1 0 1
## 154 1 0 1 0 1
## 155 1 0 1 0 1
## 156 1 0 1 0 0
## 157 1 0 1 0 0
## 158 1 0 1 0 1
## 159 1 0 0 0 1
## 160 1 0 1 0 1
## 161 1 0 1 0 1
## 162 1 0 1 0 1
## 163 1 0 1 0 1
## 164 1 0 1 0 1
## 165 1 0 1 0 0
## 166 1 0 1 0 1
## 167 1 0 1 0 1
## 168 1 0 1 0 1
## 169 0 0 0 0 0
## 170 1 0 1 0 1
## 171 1 0 1 0 1
## 172 1 0 1 0 1
## 173 1 0 1 0 1
## 174 1 0 1 0 1
## 175 1 0 1 0 1
## 176 1 0 1 0 1
## 177 1 0 1 0 1
## 178 1 1 1 0 1
## 179 1 0 1 0 1
## 180 1 0 1 0 1
## 181 1 0 1 0 1
## 182 1 0 1 0 1
## 183 1 0 1 0 1
## 184 1 0 1 0 1
## 185 1 0 1 0 1
## 186 1 0 1 0 0
## 187 1 0 1 0 1
## 188 1 0 1 0 1
## 189 1 0 1 0 1
## 190 1 0 1 0 1
## 191 1 0 1 0 1
## 192 1 0 1 0 1
## 193 1 0 1 0 1
## 194 1 0 1 0 0
## 195 1 0 1 1 1
## 196 1 0 1 0 1
## 197 1 0 1 0 1
## 198 1 0 1 0 1
## 199 1 0 1 0 1
## 200 1 0 1 0 1
## 201 1 0 1 0 1
## 202 1 0 1 0 0
## 203 1 0 1 0 0
## 204 1 0 1 0 1
## 205 1 0 1 0 0
## 206 1 0 1 0 0
## 207 1 0 1 0 0
## 208 1 0 1 0 1
## 209 1 0 1 0 0
## 210 1 0 1 0 0
## 211 1 0 1 0 0
## 212 1 0 1 0 0
## 213 1 0 1 0 0
## 214 1 0 1 0 0
## 215 1 0 1 0 0
## 216 1 1 1 0 1
## 217 1 0 1 0 0
## 218 1 0 1 0 0
## 219 1 0 1 0 0
## 220 1 0 1 0 1
## 221 1 0 1 0 0
## 222 1 0 1 1 1
## 223 1 0 1 0 0
## 224 1 0 1 0 0
## 225 1 0 1 0 1
## 226 1 0 1 0 0
## 227 1 0 1 0 0
## 228 1 0 1 0 0
## 229 1 0 1 0 0
## 230 1 0 1 0 1
## 231 1 0 1 0 0
## 232 1 0 1 0 0
## 233 1 0 1 0 0
## 234 1 0 1 0 0
## 235 1 0 1 0 1
## 236 1 0 1 0 1
## 237 1 0 1 0 1
## 238 1 0 1 0 1
## 239 1 0 1 0 0
## 240 1 0 1 0 0
## 241 1 0 1 0 0
## 242 1 0 1 0 0
## 243 1 0 1 0 0
## 244 1 0 1 0 0
## 245 1 0 1 0 0
## 246 1 0 1 0 0
## 247 1 0 1 0 0
## 248 1 0 1 0 1
## 249 1 1 1 0 1
## 250 1 0 1 0 1
## 251 1 0 1 0 1
## 252 1 0 1 0 1
## 253 1 0 1 0 1
## 254 1 1 1 0 0
## 255 1 0 1 0 0
## 256 1 0 1 0 1
## 257 1 0 1 0 1
## 258 1 0 1 0 1
## 259 1 0 1 0 0
## 260 1 0 1 0 0
## 261 1 0 1 0 1
## 262 1 0 0 0 0
## 263 1 0 1 0 0
## 264 1 0 1 0 1
## 265 1 0 1 0 1
## 266 1 0 1 0 1
## 267 1 0 1 0 1
## 268 1 0 1 0 1
## 269 1 0 1 0 1
## 270 1 0 1 0 1
## 271 1 0 1 0 0
## 272 1 0 1 0 0
## 273 1 0 1 0 0
## 274 1 0 1 0 0
## 275 1 0 1 0 1
## 276 1 0 1 0 1
## 277 1 0 1 0 1
## 278 1 0 1 0 1
## 279 1 0 1 0 1
## 280 1 0 1 0 1
## 281 1 0 1 0 1
## 282 1 0 1 0 1
## 283 1 0 1 0 1
## 284 1 0 1 0 1
## 285 1 0 1 0 1
## 286 1 0 1 0 1
## 287 1 0 1 0 1
## 288 1 0 1 0 1
## 289 1 0 1 0 1
## 290 1 0 1 0 1
## 291 1 0 1 0 0
## 292 1 0 1 0 1
## 293 1 0 1 0 1
## 294 1 0 0 0 0
## 295 1 0 1 0 1
## 296 1 0 1 0 0
## 297 1 0 1 0 1
## 298 1 0 1 0 1
## 299 1 0 1 0 0
## 300 1 0 1 0 1
## 301 1 0 1 0 1
## 302 1 0 1 0 0
## 303 1 0 1 0 1
## 304 1 0 1 0 1
## 305 1 0 0 0 0
## 306 1 0 1 0 1
## 307 1 0 1 0 0
## 308 1 0 1 0 1
## 309 1 1 1 1 1
## 310 1 0 1 0 0
## 311 1 0 1 0 0
## 312 1 0 1 0 1
## 313 1 0 1 0 1
## 314 1 0 1 0 1
## 315 1 0 1 0 1
## 316 1 0 1 0 0
## 317 1 0 1 0 1
## 318 1 0 1 0 0
## 319 1 0 1 0 1
## 320 1 0 1 0 1
## 321 1 0 1 0 1
## 322 1 0 1 0 1
## 323 1 0 0 0 1
## 324 1 0 1 0 1
## 325 1 0 1 0 0
## 326 1 0 1 0 1
## 327 1 0 1 0 1
## 328 1 0 1 0 0
## 329 1 0 1 0 1
## 330 1 0 1 0 0
## 331 1 0 1 0 0
## 332 1 0 1 0 0
## 333 1 1 1 0 1
## 334 1 0 1 0 1
## 335 1 0 1 0 0
## 336 1 0 1 0 1
## 337 1 0 1 0 0
## 338 1 0 1 0 1
## 339 1 0 1 0 1
## 340 1 0 1 0 1
## 341 1 0 0 0 0
## 342 1 0 0 0 0
## 343 1 0 1 0 1
## 344 1 1 1 0 1
## 345 1 0 1 0 1
## 346 1 0 1 0 1
## 347 1 0 1 0 1
## 348 1 0 0 0 0
## 349 1 0 1 0 0
## 350 1 1 1 1 1
## 351 1 0 1 0 1
## 352 1 0 1 0 1
## 353 1 0 1 0 1
## 354 1 0 1 0 0
## 355 1 0 1 0 1
## 356 1 0 1 0 1
## 357 1 0 1 0 1
## 358 1 0 1 0 1
## 359 1 1 0 0 0
## 360 1 0 1 0 1
## 361 1 0 1 0 1
## 362 1 0 1 0 1
## 363 1 0 1 0 0
## 364 1 0 1 0 1
## 365 1 0 1 0 1
## 366 1 0 1 0 1
## 367 1 0 1 0 1
## 368 1 0 1 0 1
## 369 1 1 0 0 0
## 370 1 0 1 0 1
## 371 1 0 1 0 1
## 372 1 0 1 0 1
## 373 1 0 1 0 1
## 374 1 0 1 0 0
## 375 1 1 1 0 0
## 376 1 1 1 0 0
## 377 1 1 1 0 0
## 378 1 0 1 0 1
## 379 1 0 1 0 1
## 380 1 0 1 0 1
## 381 1 0 1 0 1
## 382 1 0 1 0 1
## 383 1 0 1 0 1
## 384 1 0 1 0 1
## 385 1 0 1 0 0
## 386 1 0 1 0 0
## 387 1 0 1 0 0
## 388 1 0 1 0 0
## 389 1 0 1 0 0
## 390 1 0 1 0 0
## 391 1 0 1 0 1
## 392 1 0 1 0 1
## 393 1 0 0 0 0
## 394 1 0 1 0 1
## 395 1 0 1 0 1
## 396 1 0 1 0 1
## 397 1 0 0 0 0
## 398 1 0 1 0 0
## 399 1 0 1 1 0
## 400 1 0 0 0 0
## 401 1 0 1 0 0
## 402 1 0 1 0 0
## 403 1 0 0 0 0
## 404 1 0 1 0 0
## 405 1 0 1 0 0
## 406 1 0 1 0 0
## 407 1 0 1 0 0
## 408 1 0 1 0 1
## 409 1 0 1 0 1
## 410 1 0 1 0 1
## 411 1 0 1 0 1
## 412 1 0 1 0 1
## 413 1 0 1 0 0
## 414 1 0 1 0 1
## 415 1 0 1 0 1
## 416 1 0 1 0 1
## 417 0 0 0 0 0
## 418 1 0 1 0 0
## 419 1 0 1 1 0
## 420 1 0 1 0 1
## 421 1 0 1 0 1
## 422 1 0 1 0 1
## 423 1 0 1 0 1
## 424 1 0 0 0 1
## 425 1 0 1 0 1
## 426 1 0 1 0 1
## 427 1 0 1 0 1
## 428 1 0 1 0 1
## 429 1 0 1 0 0
## 430 1 0 1 0 0
## 431 1 0 1 0 1
## 432 1 0 1 0 0
## 433 1 0 1 0 0
## 434 1 0 1 0 1
## 435 1 0 1 0 0
## 436 1 0 1 0 0
## 437 1 0 1 0 1
## 438 1 0 1 0 1
## 439 1 0 1 0 0
## 440 1 0 1 0 0
## 441 1 0 1 0 0
## 442 1 0 1 0 0
## 443 1 0 1 0 1
## 444 1 0 1 0 1
## 445 1 0 1 0 1
## 446 1 0 1 0 1
## 447 1 0 1 0 1
## 448 1 0 0 0 0
## 449 1 0 0 0 0
## 450 1 0 0 0 0
## 451 1 0 0 0 0
## 452 1 0 0 0 0
## 453 1 0 1 0 0
## 454 1 0 1 0 1
## 455 1 0 1 0 0
## 456 1 0 1 0 1
## 457 1 0 1 0 1
## 458 1 0 1 0 1
## 459 1 0 1 0 1
## 460 1 0 1 0 0
## 461 1 1 1 0 1
## 462 1 0 1 0 1
## 463 1 0 1 0 1
## 464 1 0 1 0 1
## 465 1 0 1 0 1
## 466 1 0 1 0 0
## 467 1 0 1 1 1
## 468 1 0 1 0 0
## 469 1 0 1 0 1
## 470 1 0 1 0 0
## 471 1 1 1 0 1
## 472 1 0 1 0 1
## 473 1 0 1 0 0
## 474 1 0 1 0 0
## 475 1 0 1 0 1
## 476 1 0 1 0 1
## 477 1 0 1 0 1
## 478 1 0 1 0 1
## 479 1 0 1 0 1
## 480 1 0 1 0 1
## 481 1 0 1 0 0
## 482 1 1 1 0 0
## 483 1 0 1 0 1
## 484 1 0 1 0 0
## 485 1 0 1 0 1
## 486 1 0 1 0 1
## 487 1 0 1 1 0
## 488 1 0 1 1 0
## 489 1 0 1 1 0
## 490 1 0 1 1 0
## 491 1 0 1 1 0
## 492 1 0 1 1 0
## 493 1 0 1 1 0
## 494 1 0 1 1 0
## 495 1 0 1 0 0
## 496 1 0 1 0 1
## 497 1 0 1 0 1
## 498 1 0 1 0 1
## 499 1 0 1 0 1
## 500 1 0 1 0 1
## 501 1 0 1 0 1
## 502 1 1 1 0 0
## 503 1 0 1 0 1
## 504 1 0 1 0 1
## 505 1 0 1 0 1
## 506 1 0 0 0 0
## 507 1 1 1 0 0
## 508 1 0 1 0 1
## 509 1 0 1 0 1
## 510 1 0 1 0 1
## 511 1 1 1 0 0
## 512 1 0 1 0 1
## 513 1 0 1 0 1
## 514 1 0 1 0 1
## 515 1 0 1 0 1
## 516 1 0 1 0 1
## 517 1 1 1 0 0
## 518 1 0 1 0 1
## 519 1 0 1 0 1
## 520 1 0 1 0 1
## 521 1 1 1 0 0
## 522 1 0 1 0 1
## 523 1 0 1 0 1
## 524 1 0 1 0 1
## 525 1 0 1 0 1
## 526 1 0 1 0 1
## 527 1 0 1 0 1
## 528 1 0 1 0 1
## 529 1 0 1 0 1
## 530 1 0 1 0 1
## 531 1 0 1 0 1
## 532 1 0 1 0 1
## 533 1 0 1 0 0
## 534 1 0 1 0 0
## 535 1 0 1 0 0
## 536 1 0 1 0 1
## 537 1 0 1 0 1
## 538 1 0 0 0 1
## 539 1 0 1 0 0
## 540 1 0 1 0 0
## 541 1 0 0 0 1
## 542 1 0 1 0 1
## 543 1 0 1 0 0
## 544 1 0 1 0 1
## 545 1 0 1 0 1
## 546 1 0 1 0 0
## 547 1 0 1 0 1
## 548 1 0 1 0 0
## 549 1 0 1 0 0
## 550 1 0 1 0 1
## 551 1 0 1 0 0
## 552 1 0 1 0 0
## 553 1 1 1 0 1
## 554 1 0 1 0 1
## 555 1 0 1 0 1
## 556 1 0 1 0 0
## 557 1 0 1 0 0
## 558 1 0 1 0 0
## 559 1 0 1 0 0
## 560 1 0 1 0 0
## 561 1 0 1 0 0
## 562 1 0 1 0 0
## 563 1 0 1 0 1
## 564 1 0 0 0 0
## 565 1 0 1 0 1
## 566 1 0 0 0 1
## 567 1 0 1 0 1
## 568 1 0 1 0 1
## 569 1 0 1 0 1
## 570 1 0 1 0 1
## 571 1 0 1 0 0
## 572 1 1 1 0 0
## 573 1 0 1 0 0
## 574 1 0 1 0 0
## 575 1 0 1 0 0
## 576 1 0 1 0 0
## 577 1 0 1 0 0
## 578 1 0 1 0 0
## 579 1 0 1 0 1
## 580 1 0 1 0 0
## 581 1 0 1 0 0
## 582 1 0 1 0 1
## 583 1 0 0 0 0
## 584 1 0 1 0 1
## 585 1 0 1 0 1
## 586 1 0 1 0 1
## 587 1 0 1 0 1
## 588 1 0 1 0 0
## 589 1 0 1 0 1
## 590 1 0 1 0 0
## 591 1 0 1 0 1
## 592 1 0 1 0 1
## 593 1 0 1 0 1
## 594 1 0 1 0 1
## 595 1 0 1 0 1
## 596 1 0 1 0 0
## 597 1 0 1 0 1
## 598 1 0 1 0 1
## 599 1 0 1 0 1
## 600 1 0 1 0 0
## 601 1 0 1 0 1
## 602 1 0 1 0 1
## 603 1 0 1 0 0
## 604 1 0 1 0 0
## 605 1 0 1 0 0
## 606 1 0 1 0 1
## 607 1 0 1 0 0
## 608 1 0 1 0 0
## 609 1 0 1 0 0
## 610 1 0 1 0 0
## 611 1 0 1 0 1
## 612 1 0 1 0 1
## 613 1 0 1 0 1
## 614 1 0 1 0 0
## 615 1 0 1 0 1
## 616 1 0 1 0 1
## 617 1 0 1 0 0
## 618 1 0 1 0 1
## 619 1 0 1 0 1
## 620 1 0 1 0 1
## 621 1 0 1 0 1
## 622 1 0 1 0 1
## 623 1 0 0 0 0
## 624 1 0 1 0 0
## 625 1 0 1 0 1
## 626 1 0 0 0 1
## 627 1 0 1 0 0
## 628 1 0 1 0 1
## 629 1 0 1 0 0
## 630 1 0 1 0 0
## 631 1 0 1 0 1
## 632 1 1 1 0 1
## 633 1 1 1 0 1
## 634 1 0 1 0 0
## 635 1 0 1 0 0
## 636 1 0 1 0 0
## 637 1 0 1 0 0
## 638 1 0 1 0 1
## 639 1 0 1 0 1
## 640 1 0 1 0 1
## 641 1 0 1 0 0
## 642 1 0 0 0 1
## 643 1 0 1 0 0
## 644 1 0 1 0 1
## 645 1 0 1 0 1
## 646 1 0 1 0 1
## 647 1 0 1 0 0
## 648 1 0 1 0 1
## 649 1 0 1 0 1
## 650 1 0 1 0 1
## 651 1 0 1 0 1
## 652 1 0 0 0 1
## 653 1 0 1 0 1
## 654 1 0 0 0 1
## 655 1 0 1 0 1
## 656 1 0 0 0 1
## 657 1 0 1 0 0
## 658 1 0 1 0 0
## 659 1 0 1 0 1
## 660 1 0 1 0 1
## 661 1 0 0 0 0
## 662 1 0 1 0 1
## 663 1 0 1 0 1
## 664 1 0 0 1 0
## 665 1 0 0 0 0
## 666 1 0 0 0 0
## 667 1 0 0 0 0
## 668 1 0 0 0 0
## 669 1 0 0 0 0
## 670 1 0 0 0 0
## 671 1 0 0 0 0
## 672 1 0 0 0 0
## 673 1 0 0 0 0
## 674 1 0 0 0 0
## 675 1 0 0 0 0
## 676 1 0 0 0 0
## 677 1 0 0 0 0
## 678 1 0 0 0 0
## 679 1 0 0 0 0
## 680 1 0 0 0 0
## 681 1 0 1 0 1
## 682 1 0 1 0 1
## 683 1 0 1 0 0
## 684 1 0 1 0 1
## 685 1 0 0 0 0
## 686 1 0 0 0 0
## 687 1 0 1 0 0
## 688 1 0 1 0 1
## 689 1 0 1 0 1
## 690 1 0 0 0 1
## 691 1 0 0 0 1
## 692 1 0 0 0 1
## 693 1 0 1 0 1
## 694 1 0 1 0 1
## 695 1 0 1 0 1
## 696 1 0 1 0 1
## 697 1 0 1 0 1
## 698 1 0 0 0 0
## 699 1 0 0 0 0
## 700 1 0 0 0 0
## 701 1 0 0 0 0
## 702 1 0 1 0 1
## 703 1 0 1 0 1
## 704 1 0 1 0 1
## 705 1 0 1 0 1
## 706 1 0 0 0 0
## 707 1 0 1 0 0
## 708 1 0 0 0 1
## 709 1 0 1 0 0
## 710 1 0 1 0 0
## 711 1 0 1 0 0
## 712 1 0 0 0 0
## 713 1 0 0 0 0
## 714 1 0 0 0 0
## 715 1 0 0 0 0
## 716 1 0 0 0 0
## 717 1 0 0 0 0
## 718 1 0 0 0 0
## 719 1 0 0 0 0
## 720 1 0 0 0 0
## 721 1 0 0 0 0
## 722 1 0 0 0 0
## 723 1 0 1 0 1
## 724 1 0 0 0 1
## 725 1 0 1 0 1
## 726 1 0 1 0 1
## 727 1 0 1 0 0
## 728 1 0 1 0 1
## 729 1 0 1 0 1
## 730 1 0 0 1 0
## 731 1 0 1 0 1
## 732 1 0 0 0 1
## 733 1 0 0 0 0
## 734 1 0 1 0 0
## 735 1 0 1 0 1
## 736 1 0 1 0 0
## 737 1 0 1 0 0
## 738 1 0 1 0 0
## 739 1 0 1 0 1
## 740 1 0 1 0 0
## 741 1 0 1 0 0
## 742 1 0 1 0 1
## 743 1 0 1 0 1
## 744 1 0 1 0 1
## 745 1 0 0 0 0
## 746 1 0 0 0 1
## 747 1 0 0 0 1
## 748 1 0 1 0 0
## 749 1 0 0 0 1
## 750 1 0 1 0 0
## 751 1 0 1 0 1
## 752 1 0 0 0 0
## 753 1 0 0 0 0
## 754 1 0 1 0 0
## 755 1 0 1 0 1
## 756 1 0 1 0 1
## 757 1 0 0 0 1
## 758 1 0 0 0 0
## 759 1 0 0 0 1
## 760 1 0 0 0 1
## 761 1 0 1 0 0
## 762 1 0 1 0 0
## 763 1 0 0 0 1
## 764 1 0 1 0 1
## 765 1 0 1 0 0
## 766 1 0 1 0 1
## 767 1 0 0 0 1
## 768 1 0 1 0 1
## 769 1 0 1 0 0
## 770 1 1 1 0 1
## 771 1 0 1 0 1
## 772 1 0 0 1 0
## 773 1 0 1 0 0
## 774 1 0 1 0 1
## 775 1 0 1 0 1
## 776 1 1 1 0 1
## 777 1 0 1 0 1
## 778 1 0 0 0 1
## 779 1 0 1 0 1
## 780 1 0 1 0 1
## 781 1 1 0 0 0
## 782 1 0 1 0 0
## 783 1 0 1 0 0
## 784 1 0 1 0 0
## 785 1 0 1 0 0
## 786 1 0 1 0 1
## 787 1 0 0 0 0
## 788 1 0 1 0 1
## 789 1 0 1 0 1
## 790 1 0 1 0 0
## 791 1 0 1 0 0
## 792 1 0 1 0 0
## 793 1 0 0 0 0
## 794 1 0 0 0 1
## 795 1 0 0 0 0
## 796 1 0 0 0 0
## 797 1 0 1 0 1
## 798 1 0 1 0 1
## 799 1 0 0 0 1
## 800 1 0 0 0 1
## 801 1 1 0 0 0
## 802 1 0 0 0 0
## 803 1 0 0 0 0
## 804 1 0 1 0 1
## 805 1 0 1 0 0
## 806 1 0 0 0 0
## 807 1 0 0 0 0
## 808 1 0 1 0 1
## 809 1 0 1 0 0
## 810 1 0 1 0 1
## 811 1 0 1 0 1
## 812 1 0 1 0 1
## 813 1 0 1 0 1
## 814 1 0 1 0 1
## 815 1 0 0 0 0
## 816 1 0 0 0 1
## 817 1 0 0 0 0
## 818 1 0 1 0 1
## 819 1 0 1 0 1
## 820 1 0 0 0 0
## 821 1 0 0 0 0
## 822 1 0 1 0 1
## 823 1 0 0 0 0
## 824 1 0 0 0 0
## 825 1 0 0 0 0
## 826 1 0 0 0 0
## 827 1 0 0 0 0
## 828 1 0 0 0 0
## 829 1 0 1 0 1
## 830 1 0 1 0 0
## 831 1 0 0 0 1
## 832 1 0 0 0 1
## 833 1 0 0 0 1
## 834 1 0 0 0 0
## 835 1 0 0 0 0
## 836 1 0 0 0 0
## 837 1 0 0 0 0
## 838 1 0 0 0 0
## 839 1 0 0 0 0
## 840 1 0 1 0 1
## 841 1 0 1 0 0
## 842 1 0 1 0 1
## 843 1 0 1 0 1
## 844 1 0 1 0 0
## 845 1 0 1 0 0
## 846 1 0 1 0 1
## 847 1 0 1 0 0
## 848 1 0 1 0 0
## 849 1 0 1 0 1
## 850 1 0 1 0 1
## 851 1 0 1 0 1
## 852 1 0 0 0 0
## 853 1 0 1 0 1
## 854 1 0 1 0 1
## 855 1 0 1 0 1
## 856 1 0 1 1 0
## 857 1 0 1 0 1
## 858 1 0 1 0 1
## 859 1 0 1 0 1
## 860 1 0 0 0 0
## 861 1 0 1 0 0
## 862 1 0 1 0 1
## 863 1 0 0 0 0
## 864 1 0 1 0 1
## 865 1 0 1 0 1
## 866 1 0 1 0 1
## 867 1 0 1 0 1
## 868 1 0 0 0 1
## 869 1 0 1 0 1
## 870 1 0 1 0 1
## 871 1 0 1 0 1
## 872 1 0 1 0 1
## 873 1 1 1 0 1
## 874 1 0 1 0 0
## 875 1 0 1 0 1
## 876 1 0 1 0 1
## 877 1 0 0 0 1
## 878 1 0 0 0 0
## 879 1 0 0 0 0
## 880 1 0 0 0 0
## 881 1 0 1 0 1
## 882 1 0 0 0 0
## 883 1 0 0 0 1
## 884 1 0 0 0 1
## 885 1 1 0 0 0
## 886 1 0 0 0 1
## 887 1 0 1 0 1
## 888 1 0 0 0 1
## 889 1 0 0 0 1
## 890 1 0 0 0 1
## 891 1 1 0 0 1
## 892 1 1 1 0 1
## 893 1 0 0 0 1
## 894 1 0 0 0 1
## 895 1 0 1 0 1
## 896 1 0 0 0 1
## 897 1 0 1 0 1
## 898 1 0 0 0 1
## 899 1 0 1 0 1
## 900 1 0 1 0 1
## 901 1 0 1 0 1
## 902 1 0 1 0 1
## 903 1 0 0 0 1
## 904 1 0 0 0 1
## 905 1 0 1 0 0
## 906 1 0 1 0 1
## 907 1 1 1 0 1
## 908 1 0 1 0 1
## 909 1 0 1 0 1
## 910 1 0 0 0 0
## 911 1 0 0 0 0
## 912 1 0 1 0 1
## 913 1 0 0 0 1
## 914 1 0 0 0 1
## 915 1 0 1 0 1
## 916 1 1 1 0 1
## 917 1 0 1 0 1
## 918 1 0 1 0 1
## 919 1 0 1 0 1
## 920 1 0 0 0 0
## 921 1 0 0 0 0
## 922 1 0 0 0 1
## 923 1 0 1 0 0
## 924 1 0 1 0 1
## 925 1 0 0 0 1
## 926 1 0 0 0 1
## 927 1 0 0 0 1
## 928 1 0 0 0 0
## 929 1 0 0 0 1
## 930 1 0 0 0 1
## 931 1 0 0 0 0
## 932 1 0 0 0 0
## 933 1 1 0 0 0
## 934 1 0 0 0 0
## 935 1 0 0 0 0
## 936 1 1 0 0 0
## 937 1 0 0 0 1
## 938 1 0 1 0 0
## 939 1 0 0 0 0
## 940 1 0 0 0 0
## 941 1 0 0 0 0
## 942 1 0 0 0 0
## 943 1 0 1 0 1
## 944 1 0 1 0 1
## 945 1 0 0 0 1
## 946 1 0 1 0 1
## 947 1 0 0 0 1
## 948 1 0 1 0 1
## 949 1 0 1 0 1
## 950 1 0 1 0 1
## 951 1 0 0 0 0
## 952 1 0 1 0 1
## 953 1 0 1 0 1
## 954 1 0 0 0 0
## 955 1 1 0 0 0
## 956 1 0 1 0 1
## 957 1 0 1 0 1
## 958 1 0 1 0 1
## 959 1 0 0 0 0
## 960 0 0 0 0 0
## 961 0 0 0 0 0
## 962 0 0 0 0 0
## 963 1 1 0 0 0
## 964 1 0 0 0 0
## 965 1 0 0 0 0
## 966 1 0 0 0 0
## 967 1 0 0 0 0
## 968 1 0 0 0 0
## 969 1 0 0 0 1
## 970 1 0 1 0 1
## 971 1 0 1 0 1
## 972 1 0 1 0 1
## 973 1 0 1 0 1
## 974 1 0 1 0 1
## 975 1 0 1 0 1
## 976 1 0 1 0 1
## 977 1 0 1 0 1
## 978 1 0 1 0 1
## 979 1 0 0 0 1
## 980 1 0 1 0 1
## 981 1 0 0 0 0
## 982 1 0 1 0 0
## 983 1 0 1 0 1
## 984 1 0 1 0 1
## 985 1 0 0 0 1
## 986 1 0 1 0 1
## 987 1 0 0 0 1
## 988 1 0 1 0 1
## 989 1 0 0 0 0
## 990 1 0 0 0 1
## 991 1 0 0 0 1
## 992 1 0 1 0 1
## 993 1 0 0 0 1
## 994 1 0 1 0 1
## 995 1 0 1 0 0
## 996 1 0 0 0 1
## 997 1 0 1 0 1
## 998 1 0 1 0 0
## 999 1 0 1 0 0
## 1000 0 0 0 0 0
## 1001 1 0 0 0 1
## 1002 1 0 0 0 1
## 1003 1 0 0 0 0
## 1004 1 0 0 0 0
## 1005 1 0 0 0 0
## 1006 1 0 0 0 0
## 1007 1 0 0 0 0
## 1008 1 0 0 0 0
## 1009 1 0 0 0 0
## 1010 1 0 0 0 0
## 1011 1 0 0 0 0
## 1012 1 0 0 0 0
## 1013 1 0 0 0 0
## 1014 1 0 0 0 0
## 1015 1 0 0 0 0
## 1016 1 0 0 0 0
## 1017 1 0 1 0 0
## 1018 1 0 0 0 0
## 1019 1 0 1 0 1
## 1020 1 1 1 0 1
## 1021 1 0 0 0 0
## 1022 1 0 0 0 1
## 1023 1 0 0 0 1
## 1024 1 0 1 0 1
## 1025 1 0 1 0 1
## 1026 1 0 0 0 0
## 1027 1 1 1 0 1
## 1028 1 0 0 0 0
## 1029 1 0 0 0 0
## 1030 1 0 0 0 1
## 1031 1 1 1 0 1
## 1032 1 1 1 0 1
## 1033 1 0 0 0 0
## 1034 1 0 1 0 1
## 1035 1 0 1 0 1
## 1036 1 0 1 0 0
## 1037 1 0 0 0 1
## 1038 1 0 1 0 1
## 1039 1 0 1 0 1
## 1040 1 0 1 0 1
## 1041 1 0 1 0 1
## 1042 1 0 1 0 0
## 1043 1 0 1 0 1
## 1044 1 0 1 0 1
## 1045 1 0 0 0 0
## 1046 1 0 1 0 1
## 1047 1 0 1 0 1
## 1048 1 0 0 0 0
## 1049 1 0 1 0 1
## 1050 1 0 0 0 0
## 1051 1 0 0 0 0
## 1052 1 0 0 0 0
## 1053 1 0 0 0 0
## 1054 1 0 0 0 0
## 1055 1 0 1 0 1
## 1056 1 0 0 0 1
## 1057 1 0 0 0 0
## 1058 1 0 1 0 0
## 1059 1 0 0 0 0
## 1060 1 0 0 0 0
## 1061 1 0 0 0 0
## 1062 1 0 0 0 0
## 1063 1 0 0 0 0
## 1064 1 0 0 0 0
## 1065 1 0 0 0 0
## 1066 1 0 0 0 0
## 1067 1 0 1 0 1
## 1068 1 0 0 0 0
## 1069 1 0 1 0 0
## 1070 1 0 1 0 1
## 1071 1 0 0 0 1
## 1072 1 0 1 0 1
## 1073 1 0 1 0 0
## 1074 1 0 1 0 1
## 1075 1 1 1 0 1
## 1076 1 1 1 0 1
## 1077 1 0 0 0 0
## 1078 1 0 0 0 0
## 1079 1 0 0 0 0
## 1080 1 0 1 0 1
## 1081 1 0 0 0 0
## 1082 1 0 1 0 0
## 1083 1 0 1 0 1
## 1084 1 0 0 0 0
## 1085 1 1 0 0 1
## 1086 1 0 1 0 1
## 1087 1 0 0 0 0
## 1088 1 0 1 0 0
## 1089 1 0 1 0 1
## 1090 1 0 1 0 1
## 1091 1 0 1 0 1
## 1092 0 0 1 0 0
## 1093 1 0 0 0 1
## 1094 1 0 1 0 1
## 1095 1 0 1 0 1
## 1096 1 0 0 0 0
## 1097 1 0 0 0 0
## 1098 1 0 0 0 0
## 1099 1 0 0 0 0
## 1100 1 0 0 0 0
## 1101 1 1 1 0 1
## 1102 1 0 0 0 0
## 1103 1 0 0 0 0
## 1104 1 0 1 0 0
## 1105 1 0 0 0 0
## 1106 1 0 1 0 1
## 1107 1 0 0 0 0
## 1108 1 0 0 0 0
## 1109 1 0 0 0 0
## 1110 1 0 0 0 0
## 1111 1 0 1 0 0
## 1112 1 0 0 0 0
## 1113 1 0 0 0 0
## 1114 1 0 0 0 0
## 1115 1 0 0 0 0
## 1116 1 0 0 0 0
## 1117 1 0 0 0 0
## 1118 1 0 0 0 0
## 1119 1 0 1 0 1
## 1120 1 0 1 0 1
## 1121 1 0 0 0 1
## 1122 1 0 1 0 1
## 1123 1 0 1 0 1
## 1124 1 0 0 0 0
## 1125 1 0 1 0 1
## 1126 1 0 0 0 1
## 1127 1 0 0 0 1
## 1128 1 0 0 0 1
## 1129 1 0 0 0 1
## 1130 1 0 0 0 1
## 1131 1 0 0 0 1
## 1132 1 0 0 0 0
## 1133 1 0 0 0 0
## 1134 1 0 0 0 0
## 1135 1 0 0 0 0
## 1136 1 0 0 0 0
## 1137 1 0 0 0 0
## 1138 1 0 0 0 0
## 1139 1 0 1 0 1
## 1140 1 0 0 0 0
## 1141 1 0 0 0 0
## 1142 1 0 0 0 1
## 1143 1 0 0 0 1
## 1144 1 0 0 0 0
## 1145 1 0 0 0 0
## 1146 1 0 1 0 0
## 1147 1 0 1 0 1
## 1148 1 0 1 0 1
## 1149 1 0 1 0 1
## 1150 1 0 1 0 1
## 1151 1 0 0 0 0
## 1152 1 0 0 0 0
## 1153 1 0 0 0 1
## 1154 1 0 0 0 1
## 1155 1 1 1 0 1
## 1156 1 0 0 0 1
## 1157 1 0 1 0 1
## 1158 1 0 1 0 1
## 1159 1 0 1 0 1
## 1160 1 0 1 0 1
## 1161 1 0 0 0 1
## 1162 1 0 1 0 1
## 1163 1 0 0 0 1
## 1164 1 0 0 0 0
## 1165 1 0 1 0 0
## 1166 1 0 0 0 1
## 1167 1 0 1 0 1
## 1168 1 0 0 0 1
## 1169 1 0 1 0 1
## 1170 1 0 1 0 1
## 1171 1 0 1 0 1
## 1172 1 0 1 0 1
## 1173 1 0 1 0 1
## 1174 1 0 1 0 1
## 1175 1 0 1 0 1
## 1176 1 0 1 0 1
## 1177 1 0 1 0 1
## 1178 1 0 1 0 0
## 1179 1 0 0 0 0
## 1180 1 0 1 0 0
## 1181 1 0 1 0 0
## 1182 1 0 1 0 0
## 1183 1 0 1 0 0
## 1184 1 0 1 0 0
## 1185 1 0 0 0 0
## 1186 1 0 1 0 0
## 1187 1 0 1 0 0
## 1188 1 0 1 0 1
## 1189 1 0 0 0 1
## 1190 1 0 0 0 0
## 1191 1 1 1 0 1
## 1192 1 0 0 0 0
## 1193 1 0 1 0 1
## 1194 1 0 1 0 1
## 1195 1 0 1 0 1
## 1196 1 0 1 0 0
## 1197 1 0 1 0 0
## 1198 1 0 0 0 0
## 1199 1 0 0 0 1
## 1200 1 0 0 0 0
## 1201 1 0 1 0 0
## 1202 1 0 0 0 0
## 1203 1 0 0 0 1
## 1204 1 0 0 0 0
## 1205 1 0 0 0 1
## 1206 1 0 1 0 1
## 1207 1 0 1 0 1
## 1208 1 0 1 0 1
## 1209 1 0 0 0 1
## 1210 1 0 0 0 0
## 1211 1 0 0 0 1
## 1212 1 0 0 0 0
## 1213 1 0 1 0 1
## 1214 1 0 1 0 1
## 1215 1 0 0 0 0
## 1216 1 0 0 0 0
## 1217 1 0 0 0 0
## 1218 1 0 0 0 0
## 1219 1 0 0 0 0
## 1220 1 0 0 0 0
## 1221 1 0 0 0 0
## 1222 1 0 1 0 1
## 1223 1 0 1 0 0
## 1224 1 0 1 0 1
## 1225 1 0 1 0 1
## 1226 1 0 1 0 1
## 1227 1 0 0 0 0
## 1228 1 0 0 0 1
## 1229 1 0 0 0 0
## 1230 1 0 1 0 0
## 1231 1 0 1 0 1
## 1232 1 0 0 0 1
## 1233 1 0 0 0 0
## 1234 1 1 0 0 0
## 1235 1 0 0 0 0
## 1236 1 0 0 0 1
## 1237 1 0 1 0 1
## 1238 1 0 0 0 0
## 1239 1 0 1 0 1
## 1240 1 0 1 0 1
## 1241 1 0 1 0 1
## 1242 1 0 1 0 1
## 1243 1 0 1 0 1
## 1244 1 0 0 0 1
## 1245 1 0 1 0 1
## 1246 1 0 0 0 0
## 1247 1 0 1 0 1
## 1248 1 0 1 0 1
## 1249 1 0 0 0 1
## 1250 1 0 0 0 1
## 1251 1 0 0 0 1
## 1252 1 0 1 0 1
## 1253 1 0 1 0 1
## 1254 1 0 0 0 1
## 1255 1 0 0 0 1
## 1256 1 0 0 0 1
## 1257 1 0 1 0 1
## 1258 1 0 0 0 1
## 1259 1 0 1 0 0
## 1260 1 0 1 0 0
## 1261 1 0 0 0 1
## 1262 1 0 1 0 1
## 1263 1 0 0 0 1
## 1264 1 0 0 0 1
## 1265 1 0 0 0 1
## 1266 1 0 0 0 0
## 1267 1 0 1 0 1
## 1268 1 0 0 0 0
## 1269 1 0 1 1 1
## 1270 1 0 0 0 1
## 1271 1 0 0 0 1
## 1272 1 0 1 0 1
## 1273 1 0 1 0 0
## 1274 1 0 1 0 1
## 1275 1 0 0 0 1
## 1276 1 0 1 0 1
## 1277 1 0 0 0 1
## 1278 1 0 0 0 0
## 1279 1 0 0 0 0
## 1280 1 0 0 0 1
## 1281 1 0 1 0 1
## 1282 1 0 0 0 0
## 1283 1 0 1 0 1
## 1284 1 0 1 0 1
## 1285 1 1 1 0 1
## 1286 1 0 1 0 1
## 1287 1 0 1 0 1
## 1288 1 0 1 0 1
## 1289 1 0 0 0 0
## 1290 1 0 0 0 1
## 1291 1 1 0 0 0
## 1292 1 0 0 0 0
## 1293 1 0 1 0 1
## 1294 1 0 1 0 1
## 1295 1 0 0 0 0
## 1296 1 0 0 0 0
## 1297 1 0 0 0 0
## 1298 1 0 1 0 1
## 1299 1 1 1 0 1
## 1300 1 0 1 0 1
## 1301 1 0 1 0 1
## 1302 1 0 1 0 1
## 1303 1 0 0 0 0
## 1304 1 0 0 0 1
## 1305 1 0 0 0 1
## 1306 1 0 1 0 1
## 1307 1 0 1 0 1
## 1308 1 0 1 0 1
## 1309 1 0 0 0 1
## 1310 1 0 1 0 1
## 1311 1 0 1 0 1
## 1312 1 0 1 0 1
## 1313 1 0 0 0 0
## 1314 1 1 1 0 1
## 1315 1 0 0 0 1
## 1316 1 0 1 0 1
## 1317 1 0 0 0 1
## 1318 1 0 1 0 1
## 1319 1 0 1 0 1
## 1320 1 0 1 0 1
## 1321 1 0 0 0 1
## 1322 1 0 0 0 1
## 1323 1 0 1 0 1
## 1324 1 0 0 0 0
## 1325 1 0 0 0 0
## 1326 0 0 0 0 0
## 1327 1 0 1 0 1
## 1328 1 0 0 0 1
## 1329 1 0 1 0 1
## 1330 1 0 0 0 1
## 1331 1 0 1 0 0
## 1332 1 0 1 0 1
## 1333 1 0 1 0 1
## 1334 1 0 1 0 1
## 1335 1 0 1 0 1
## 1336 1 0 0 0 1
## 1337 1 0 1 0 1
## 1338 1 0 0 0 1
## 1339 1 0 1 0 1
## 1340 1 0 0 0 1
## 1341 1 0 0 0 1
## 1342 1 0 1 0 1
## 1343 1 0 1 0 1
## 1344 1 0 1 0 1
## 1345 1 0 1 0 1
## 1346 1 0 0 0 0
## 1347 1 0 1 0 1
## 1348 1 0 1 0 1
## 1349 1 0 0 0 0
## 1350 1 0 1 0 1
## 1351 1 0 1 0 1
## 1352 1 0 1 0 1
## 1353 1 0 1 0 1
## 1354 1 0 0 0 0
## 1355 1 0 1 0 1
## 1356 1 0 1 0 0
## 1357 1 0 1 0 0
## 1358 1 0 0 0 1
## 1359 1 0 1 0 1
## 1360 1 0 1 0 1
## 1361 1 0 1 0 1
## 1362 1 0 1 0 0
## 1363 1 0 1 0 1
## 1364 1 0 1 0 1
## 1365 1 0 1 0 1
## 1366 1 0 0 0 1
## 1367 1 0 1 0 1
## 1368 1 0 1 0 1
## 1369 1 0 1 0 1
## 1370 1 0 1 0 1
## 1371 1 0 1 0 1
## 1372 1 0 0 0 1
## 1373 1 0 0 0 1
## 1374 1 0 0 0 1
## 1375 1 0 0 0 0
## 1376 1 0 1 0 0
## 1377 1 0 0 0 1
## 1378 1 0 1 0 1
## 1379 1 0 1 0 1
## 1380 1 0 1 0 0
## 1381 1 0 0 0 1
## 1382 1 0 0 0 1
## 1383 1 0 1 0 1
## 1384 1 0 1 0 1
## 1385 1 0 0 0 1
## 1386 1 0 1 0 0
## 1387 1 0 1 0 1
## 1388 1 0 0 0 1
## 1389 1 0 1 0 1
## 1390 1 0 1 0 1
## 1391 1 0 1 0 1
## 1392 0 0 0 0 0
## 1393 1 0 1 0 1
## 1394 1 0 0 0 1
## 1395 1 0 1 0 0
## 1396 1 0 0 0 1
## 1397 1 0 0 0 1
## 1398 1 0 1 0 0
## 1399 1 0 0 0 1
## 1400 1 0 1 0 0
## 1401 1 0 0 0 1
## 1402 1 0 0 0 1
## 1403 1 0 1 0 1
## 1404 1 0 1 0 1
## 1405 1 0 0 0 1
## 1406 1 0 0 0 0
## 1407 1 0 0 0 1
## 1408 1 0 1 0 0
## 1409 1 0 0 0 0
## 1410 1 1 1 0 1
## 1411 1 0 0 0 1
## 1412 1 0 1 0 1
## 1413 1 0 0 0 1
## 1414 1 0 0 0 0
## 1415 1 0 0 0 0
## 1416 1 0 1 0 0
## 1417 1 0 0 0 1
## 1418 1 0 1 0 1
## 1419 1 0 1 0 1
## 1420 1 0 1 0 1
## 1421 1 0 0 0 0
## 1422 1 0 1 0 1
## 1423 1 0 1 0 1
## 1424 1 0 1 0 1
## 1425 1 0 1 0 0
## 1426 1 0 0 0 0
## 1427 1 1 0 0 1
## 1428 1 0 0 0 0
## 1429 1 1 1 0 1
## 1430 1 1 1 0 1
## 1431 1 0 1 0 1
## 1432 1 0 0 0 0
## 1433 1 0 0 0 0
## 1434 1 0 1 0 1
## 1435 1 0 1 0 1
## 1436 1 0 0 0 1
## 1437 1 0 1 0 1
## 1438 1 0 0 0 0
## 1439 1 0 0 0 1
## 1440 1 0 0 0 0
## 1441 1 0 1 0 1
## 1442 1 0 1 0 0
## 1443 1 0 0 0 0
## 1444 1 0 1 0 1
## 1445 1 0 0 0 0
## 1446 1 0 0 0 0
## 1447 1 0 1 0 1
## 1448 1 0 0 0 0
## 1449 1 0 0 0 0
## 1450 1 0 0 0 0
## 1451 1 0 0 0 1
## 1452 1 0 1 0 1
## 1453 1 0 0 0 0
## 1454 1 0 1 0 1
## 1455 1 0 0 0 1
## 1456 1 0 1 0 1
## 1457 1 0 0 0 0
## 1458 1 0 0 0 0
## 1459 1 0 1 0 0
## 1460 1 0 1 0 0
## 1461 1 0 1 0 1
## 1462 1 0 1 0 1
## 1463 1 0 0 0 0
## 1464 1 0 0 0 0
## 1465 1 0 0 0 1
## 1466 1 0 0 0 0
## 1467 1 0 1 0 1
## 1468 1 0 0 0 1
## 1469 1 0 0 0 0
## 1470 1 0 1 0 1
## 1471 1 0 0 0 1
## 1472 1 0 1 0 1
## 1473 1 0 0 0 1
## 1474 1 0 0 0 0
## 1475 1 0 0 0 0
## 1476 1 0 1 0 1
## 1477 1 0 1 0 1
## 1478 1 0 1 0 1
## 1479 1 0 1 0 1
## 1480 1 0 0 0 1
## 1481 1 0 0 0 1
## 1482 1 0 0 0 1
## 1483 1 0 1 0 1
## 1484 1 0 0 0 1
## 1485 1 0 1 0 0
## 1486 1 0 0 1 0
## 1487 1 0 0 1 0
## 1488 1 0 0 0 0
## 1489 1 0 1 0 0
## 1490 1 0 1 0 0
## 1491 1 0 0 0 0
## 1492 1 0 0 0 0
## 1493 1 0 1 0 0
## 1494 1 0 1 0 0
## 1495 1 0 1 0 0
## 1496 1 0 0 0 0
## 1497 1 0 1 0 0
## 1498 1 0 1 0 1
## 1499 1 0 1 0 1
## 1500 1 0 1 0 1
## 1501 1 0 1 0 1
## 1502 1 0 0 0 1
## 1503 1 0 0 0 1
## 1504 1 0 0 0 1
## 1505 1 0 0 0 1
## 1506 1 0 0 0 1
## 1507 1 0 0 0 1
## 1508 1 0 0 0 1
## 1509 1 0 1 0 0
## 1510 1 0 1 0 1
## 1511 1 0 0 0 1
## 1512 1 0 0 0 1
## 1513 1 0 0 0 0
## 1514 1 0 0 0 0
## 1515 1 0 1 0 1
## 1516 1 0 1 0 1
## 1517 1 0 0 0 0
## 1518 1 0 0 0 1
## 1519 1 0 0 0 0
## 1520 1 0 0 0 0
## 1521 1 0 1 0 1
## 1522 1 0 0 0 0
## 1523 1 0 0 0 1
## 1524 1 0 0 0 1
## 1525 1 0 1 0 1
## 1526 1 0 0 0 0
## 1527 1 0 1 0 1
## 1528 1 0 0 0 0
## 1529 1 0 0 0 0
## 1530 1 0 1 0 1
## 1531 1 1 1 0 1
## 1532 1 0 0 0 0
## 1533 1 0 1 0 1
## 1534 1 0 0 0 0
## 1535 1 0 1 0 1
## 1536 1 0 1 0 1
## 1537 1 0 0 0 0
## 1538 1 0 1 0 0
## 1539 1 0 0 0 0
## 1540 1 0 1 0 0
## 1541 1 0 0 0 1
## 1542 1 0 1 0 0
## 1543 1 0 1 0 0
## 1544 1 0 0 0 0
## 1545 1 0 0 0 0
## 1546 1 0 0 0 1
## 1547 1 0 0 0 0
## 1548 1 0 0 0 0
## 1549 1 0 0 0 1
## 1550 1 0 1 0 1
## 1551 1 0 0 0 1
## 1552 1 0 1 0 1
## 1553 1 0 1 0 1
## 1554 1 0 0 0 1
## 1555 1 0 0 0 1
## 1556 1 0 1 0 1
## 1557 1 0 0 0 0
## 1558 1 0 0 0 0
## 1559 1 0 0 0 1
## 1560 1 1 1 0 0
## 1561 1 0 0 0 0
## 1562 1 0 0 0 0
## 1563 1 0 0 0 0
## 1564 1 0 1 0 1
## 1565 1 0 1 0 1
## 1566 1 0 1 0 1
## 1567 1 0 0 0 1
## 1568 1 0 0 0 1
## 1569 1 0 0 0 1
## 1570 1 0 0 0 1
## 1571 1 0 0 0 1
## 1572 1 0 0 0 1
## 1573 1 0 0 0 1
## 1574 1 0 0 0 1
## 1575 1 0 0 0 1
## 1576 1 0 1 0 1
## 1577 1 0 0 0 1
## 1578 1 0 1 0 1
## 1579 1 1 1 0 1
## 1580 1 0 1 0 1
## 1581 1 0 0 0 0
## 1582 1 0 1 0 1
## 1583 1 0 0 0 0
## 1584 0 0 0 0 0
## 1585 1 0 0 0 0
## 1586 1 0 0 0 0
## 1587 1 0 1 0 1
## 1588 1 0 1 0 0
## 1589 1 0 0 0 1
## 1590 1 0 0 0 0
## 1591 1 0 0 0 0
## 1592 1 0 0 0 0
## 1593 1 0 0 0 0
## 1594 1 0 0 0 0
## 1595 1 0 0 0 0
## 1596 1 0 1 0 1
## 1597 1 0 1 0 1
## 1598 1 0 1 0 1
## 1599 1 0 1 0 1
## 1600 1 0 0 0 0
## 1601 1 0 0 0 0
## 1602 1 0 0 0 1
## 1603 1 0 0 0 1
## 1604 1 0 1 0 1
## 1605 1 0 1 0 1
## 1606 1 0 0 0 0
## 1607 1 0 1 0 1
## 1608 1 0 0 0 1
## 1609 1 0 0 0 0
## 1610 1 0 0 0 0
## 1611 1 0 0 0 0
## 1612 1 0 0 0 0
## 1613 1 0 1 0 1
## 1614 1 0 1 0 1
## 1615 1 0 0 0 1
## 1616 1 0 0 0 1
## 1617 1 0 0 0 1
## 1618 1 0 0 0 1
## 1619 1 0 0 0 0
## 1620 1 0 0 0 0
## 1621 1 0 0 0 0
## 1622 1 0 0 0 1
## 1623 1 0 1 0 1
## 1624 1 0 1 0 1
## 1625 1 0 0 0 1
## 1626 1 0 0 0 1
## 1627 1 0 1 0 0
## 1628 1 0 1 0 0
## 1629 1 0 1 0 0
## 1630 1 0 1 0 0
## 1631 1 0 1 0 1
## 1632 1 0 0 0 1
## 1633 1 0 0 0 0
## 1634 1 0 0 0 0
## 1635 1 0 0 0 1
## 1636 1 1 1 0 1
## 1637 1 0 1 0 1
## 1638 1 0 0 0 0
## 1639 1 0 0 0 1
## 1640 1 0 0 0 0
## 1641 1 0 1 0 1
## 1642 1 0 0 0 1
## 1643 1 0 0 0 1
## 1644 1 0 0 0 1
## 1645 1 0 0 0 0
## 1646 1 0 0 0 1
## 1647 1 0 1 0 0
## 1648 1 0 0 0 1
## 1649 1 0 1 0 1
## 1650 1 0 0 0 1
## 1651 1 0 0 0 1
## 1652 1 0 0 0 0
## 1653 1 0 0 0 1
## 1654 1 0 0 0 1
## 1655 1 0 0 0 1
## 1656 1 0 1 0 1
## 1657 1 0 1 0 1
## 1658 1 0 0 0 1
## 1659 1 0 0 0 0
## 1660 1 0 1 0 1
## 1661 1 0 1 0 0
## 1662 1 0 1 0 0
## 1663 1 0 0 0 0
## 1664 1 0 1 0 1
## 1665 1 0 1 0 1
## 1666 1 0 0 0 1
## 1667 1 0 0 0 1
## 1668 1 0 1 0 0
## 1669 1 0 1 0 0
## 1670 1 0 1 0 0
## 1671 1 0 1 0 1
## 1672 1 0 1 0 0
## 1673 1 0 1 0 0
## 1674 1 0 1 0 1
## 1675 1 0 0 0 1
## 1676 1 0 1 0 1
## 1677 1 0 0 0 0
## 1678 1 0 0 0 0
## 1679 1 0 0 0 1
## 1680 1 0 0 0 1
## 1681 1 0 0 0 1
## 1682 1 0 1 0 1
## 1683 1 0 0 0 1
## 1684 1 0 0 0 1
## 1685 1 0 0 0 0
## 1686 1 0 0 0 0
## 1687 1 0 0 0 0
## 1688 1 0 1 0 1
## 1689 1 0 0 0 0
## 1690 1 0 1 0 1
## 1691 1 0 0 0 0
## 1692 1 0 0 0 0
## 1693 1 0 0 0 0
## 1694 1 0 1 0 0
## 1695 1 0 0 0 1
## 1696 1 0 0 0 0
## 1697 1 0 1 0 1
## 1698 1 0 1 0 1
## 1699 1 0 1 0 1
## 1700 1 0 0 0 1
## 1701 1 0 1 0 1
## 1702 1 0 1 0 1
## 1703 1 0 1 0 1
## 1704 1 0 0 0 0
## 1705 1 0 1 0 1
## 1706 1 0 0 0 1
## 1707 1 1 1 0 0
## 1708 1 0 1 0 1
## 1709 1 0 1 0 1
## 1710 1 0 0 0 1
## 1711 1 0 0 0 0
## 1712 1 0 1 0 1
## 1713 1 0 0 0 0
## 1714 1 0 1 0 0
## 1715 1 0 0 0 0
## 1716 1 0 1 0 1
## 1717 1 0 0 0 0
## 1718 1 0 1 0 1
## 1719 1 0 1 0 0
## 1720 1 0 0 0 1
## 1721 1 0 1 0 0
## 1722 1 0 1 0 1
## 1723 1 0 0 0 1
## 1724 1 0 1 0 1
## 1725 1 0 1 0 0
## hv_manual_off_gov hv_manual_gov hv_manual_work_email no_of_vf
## 1 0 0 1 5
## 2 0 0 1 5
## 3 0 0 1 5
## 4 1 1 0 8
## 5 1 1 0 8
## 6 1 1 0 7
## 7 1 1 0 8
## 8 1 1 0 8
## 9 0 0 1 5
## 10 1 1 0 7
## 11 1 1 0 7
## 12 0 0 0 2
## 13 0 1 1 6
## 14 1 1 1 9
## 15 0 1 0 5
## 16 1 1 0 8
## 17 1 1 1 9
## 18 1 1 1 9
## 19 1 1 0 8
## 20 1 1 0 7
## 21 0 1 0 6
## 22 1 1 0 4
## 23 1 1 0 4
## 24 1 1 0 4
## 25 0 0 0 3
## 26 0 1 0 5
## 27 0 1 0 5
## 28 0 0 0 2
## 29 0 0 0 2
## 30 1 1 0 4
## 31 0 1 1 6
## 32 0 1 0 5
## 33 0 0 0 3
## 34 1 1 0 6
## 35 0 0 0 2
## 36 1 1 1 5
## 37 1 1 0 8
## 38 1 1 1 8
## 39 0 1 1 6
## 40 0 0 0 3
## 41 0 1 0 5
## 42 0 1 0 5
## 43 0 0 0 3
## 44 1 1 1 5
## 45 1 1 1 5
## 46 1 1 1 5
## 47 0 0 0 3
## 48 1 1 0 4
## 49 0 0 0 3
## 50 0 0 0 3
## 51 0 1 0 5
## 52 1 1 0 7
## 53 1 1 0 4
## 54 1 1 1 5
## 55 0 1 0 7
## 56 0 1 0 7
## 57 0 1 0 5
## 58 0 1 0 6
## 59 0 0 0 3
## 60 1 1 0 4
## 61 0 0 0 4
## 62 0 1 0 5
## 63 0 0 0 4
## 64 1 1 1 5
## 65 0 0 0 4
## 66 0 1 0 7
## 67 0 0 0 3
## 68 0 0 0 4
## 69 0 0 0 4
## 70 0 1 0 7
## 71 0 1 0 7
## 72 1 1 0 7
## 73 1 1 0 4
## 74 1 1 0 8
## 75 0 0 0 4
## 76 0 1 0 6
## 77 0 1 0 7
## 78 0 0 0 4
## 79 0 0 0 4
## 80 1 1 0 4
## 81 0 1 0 7
## 82 0 1 0 6
## 83 0 0 0 4
## 84 0 1 1 6
## 85 0 1 0 7
## 86 0 1 1 6
## 87 1 1 0 6
## 88 1 1 0 7
## 89 1 1 0 7
## 90 1 1 0 7
## 91 0 1 1 6
## 92 0 1 1 6
## 93 1 1 0 5
## 94 1 1 0 7
## 95 1 1 0 7
## 96 1 1 0 7
## 97 1 1 0 8
## 98 1 1 0 8
## 99 0 0 0 4
## 100 0 1 0 6
## 101 0 1 0 6
## 102 0 1 0 6
## 103 1 1 0 7
## 104 1 1 0 6
## 105 1 1 0 7
## 106 0 1 0 6
## 107 0 0 0 4
## 108 0 0 0 4
## 109 1 1 1 5
## 110 0 0 0 4
## 111 1 1 1 5
## 112 0 0 0 4
## 113 0 0 0 4
## 114 0 0 0 3
## 115 1 1 1 8
## 116 1 1 0 7
## 117 0 0 0 4
## 118 0 0 0 5
## 119 1 1 1 5
## 120 1 1 0 5
## 121 1 1 1 10
## 122 1 1 1 5
## 123 0 0 0 4
## 124 0 0 0 4
## 125 0 0 0 4
## 126 0 0 1 4
## 127 1 1 0 7
## 128 1 1 0 8
## 129 0 0 0 4
## 130 1 1 0 8
## 131 1 1 0 8
## 132 0 1 1 6
## 133 0 1 1 5
## 134 0 0 0 4
## 135 1 1 0 8
## 136 1 1 0 8
## 137 0 0 0 3
## 138 0 1 0 5
## 139 0 0 0 4
## 140 0 1 0 5
## 141 0 0 0 4
## 142 0 0 0 4
## 143 1 1 1 5
## 144 1 1 1 5
## 145 1 1 1 5
## 146 0 0 0 4
## 147 1 1 0 8
## 148 1 1 1 9
## 149 1 1 0 8
## 150 0 0 0 4
## 151 1 1 0 8
## 152 0 0 0 4
## 153 0 0 0 4
## 154 0 0 0 4
## 155 0 0 0 4
## 156 0 0 0 3
## 157 0 0 0 3
## 158 0 1 1 6
## 159 1 1 0 7
## 160 0 1 0 5
## 161 0 1 0 7
## 162 0 1 0 7
## 163 0 1 0 7
## 164 0 0 0 4
## 165 1 1 0 4
## 166 1 1 1 9
## 167 1 1 0 8
## 168 0 0 0 4
## 169 0 0 0 0
## 170 0 1 0 6
## 171 0 1 0 6
## 172 0 1 0 6
## 173 0 1 0 6
## 174 0 1 0 6
## 175 0 1 0 6
## 176 0 1 0 6
## 177 0 1 0 6
## 178 0 1 0 6
## 179 1 1 0 6
## 180 1 1 0 6
## 181 1 1 0 6
## 182 1 1 0 6
## 183 0 1 0 5
## 184 1 1 0 6
## 185 0 0 0 4
## 186 0 0 1 4
## 187 0 1 0 7
## 188 0 1 0 7
## 189 0 1 0 7
## 190 1 1 0 6
## 191 1 1 0 6
## 192 1 1 0 6
## 193 1 1 0 6
## 194 1 1 0 4
## 195 0 1 1 7
## 196 0 1 0 5
## 197 0 1 0 5
## 198 0 1 0 5
## 199 0 1 0 5
## 200 0 1 0 5
## 201 0 1 0 5
## 202 1 1 0 6
## 203 0 0 0 2
## 204 0 0 0 4
## 205 0 0 0 3
## 206 0 0 0 3
## 207 0 0 0 3
## 208 0 0 0 4
## 209 1 1 0 6
## 210 1 1 0 6
## 211 1 1 0 6
## 212 1 1 0 6
## 213 1 1 0 6
## 214 1 1 0 6
## 215 0 0 0 3
## 216 0 0 0 5
## 217 0 0 1 4
## 218 1 1 0 6
## 219 1 1 0 7
## 220 0 1 1 6
## 221 0 0 0 3
## 222 0 0 0 5
## 223 1 1 0 7
## 224 0 0 0 3
## 225 1 1 0 6
## 226 0 0 1 4
## 227 0 0 1 4
## 228 0 0 1 4
## 229 1 1 0 7
## 230 1 1 0 8
## 231 0 0 1 4
## 232 0 0 1 4
## 233 0 0 1 4
## 234 0 0 1 4
## 235 0 1 0 5
## 236 1 1 0 5
## 237 0 0 0 4
## 238 0 1 0 5
## 239 0 0 0 3
## 240 0 0 0 3
## 241 0 0 0 3
## 242 0 0 0 3
## 243 0 0 0 3
## 244 0 0 0 3
## 245 0 0 0 3
## 246 0 0 0 3
## 247 0 0 0 3
## 248 1 1 0 6
## 249 1 1 1 11
## 250 0 1 0 7
## 251 0 1 0 8
## 252 0 1 0 5
## 253 0 1 0 5
## 254 1 1 0 8
## 255 0 0 0 3
## 256 1 1 0 6
## 257 1 1 0 6
## 258 1 1 0 6
## 259 0 0 0 4
## 260 0 0 0 3
## 261 0 1 0 5
## 262 1 1 0 4
## 263 0 0 0 3
## 264 0 1 0 6
## 265 0 1 0 6
## 266 0 0 0 4
## 267 1 1 0 8
## 268 1 1 0 7
## 269 1 1 0 7
## 270 1 1 0 7
## 271 0 0 1 4
## 272 1 1 0 7
## 273 1 1 0 7
## 274 0 0 0 3
## 275 1 1 0 8
## 276 1 1 0 8
## 277 0 1 0 5
## 278 0 1 0 5
## 279 1 1 0 8
## 280 0 1 0 5
## 281 0 1 0 5
## 282 0 1 0 5
## 283 0 1 0 5
## 284 0 1 0 5
## 285 0 1 0 5
## 286 0 1 0 5
## 287 0 1 0 5
## 288 1 1 0 8
## 289 1 1 0 5
## 290 0 1 1 7
## 291 0 0 0 3
## 292 0 0 0 4
## 293 0 0 0 4
## 294 0 0 0 2
## 295 0 1 1 9
## 296 0 0 0 3
## 297 0 0 0 4
## 298 1 1 1 9
## 299 0 0 0 3
## 300 0 1 0 7
## 301 0 1 0 5
## 302 0 0 0 3
## 303 0 0 0 4
## 304 0 0 0 4
## 305 0 0 0 2
## 306 0 1 0 6
## 307 0 0 0 3
## 308 0 1 0 5
## 309 1 1 0 8
## 310 0 0 0 3
## 311 0 0 0 3
## 312 0 0 0 4
## 313 1 1 0 6
## 314 1 1 1 9
## 315 0 1 0 7
## 316 0 0 0 3
## 317 0 0 0 4
## 318 0 0 0 3
## 319 1 1 0 8
## 320 0 0 0 4
## 321 0 1 1 6
## 322 0 0 0 4
## 323 1 1 0 7
## 324 1 1 0 6
## 325 0 0 0 3
## 326 0 0 0 4
## 327 0 1 0 6
## 328 1 1 0 6
## 329 0 1 0 5
## 330 0 0 0 3
## 331 0 0 0 3
## 332 1 1 0 7
## 333 0 1 0 6
## 334 0 0 0 4
## 335 0 0 0 3
## 336 1 1 0 7
## 337 0 0 0 3
## 338 0 1 0 5
## 339 0 1 0 5
## 340 0 1 0 5
## 341 1 1 1 5
## 342 1 1 1 5
## 343 0 0 0 4
## 344 0 1 0 6
## 345 0 1 0 5
## 346 0 0 0 4
## 347 0 0 0 4
## 348 1 1 1 5
## 349 1 1 0 7
## 350 1 1 1 9
## 351 0 1 0 6
## 352 0 1 0 6
## 353 0 1 0 5
## 354 0 0 0 3
## 355 0 1 0 5
## 356 1 1 0 8
## 357 1 1 0 8
## 358 0 1 0 5
## 359 0 0 0 2
## 360 1 1 0 7
## 361 0 0 0 4
## 362 1 1 0 7
## 363 0 0 0 3
## 364 1 1 1 7
## 365 0 0 0 4
## 366 0 0 0 4
## 367 1 1 0 7
## 368 0 1 0 5
## 369 0 0 0 3
## 370 0 0 0 4
## 371 0 0 0 4
## 372 0 0 0 4
## 373 1 1 0 7
## 374 0 0 0 2
## 375 1 1 0 7
## 376 1 1 0 7
## 377 1 1 0 7
## 378 0 0 0 4
## 379 1 1 1 9
## 380 0 1 0 5
## 381 1 1 0 6
## 382 0 1 0 5
## 383 1 1 0 6
## 384 0 1 0 8
## 385 0 0 0 3
## 386 0 0 0 3
## 387 0 0 0 3
## 388 0 0 0 3
## 389 0 0 0 3
## 390 0 0 0 3
## 391 1 1 0 8
## 392 1 1 0 8
## 393 0 0 0 2
## 394 1 1 0 8
## 395 0 0 0 4
## 396 0 1 0 6
## 397 1 1 1 5
## 398 1 1 0 7
## 399 0 0 0 5
## 400 1 1 1 5
## 401 1 1 0 6
## 402 0 0 0 3
## 403 0 0 0 3
## 404 0 0 0 3
## 405 0 0 0 3
## 406 1 1 0 6
## 407 1 1 0 6
## 408 0 0 0 4
## 409 1 1 0 6
## 410 1 1 0 6
## 411 1 1 0 6
## 412 0 1 1 6
## 413 0 0 0 4
## 414 0 1 1 6
## 415 1 1 0 6
## 416 0 1 1 7
## 417 0 0 0 1
## 418 0 0 0 3
## 419 0 0 0 5
## 420 0 1 0 5
## 421 0 1 0 5
## 422 1 1 0 6
## 423 1 1 0 6
## 424 0 1 0 6
## 425 0 1 0 8
## 426 0 0 1 6
## 427 0 0 0 4
## 428 0 1 0 5
## 429 0 0 0 3
## 430 1 1 0 6
## 431 0 1 0 5
## 432 0 0 0 3
## 433 0 0 0 4
## 434 0 0 0 4
## 435 0 0 0 3
## 436 1 1 0 7
## 437 1 1 1 7
## 438 0 1 0 5
## 439 1 1 0 4
## 440 1 1 0 6
## 441 0 0 0 3
## 442 0 0 1 4
## 443 1 1 1 7
## 444 0 1 0 6
## 445 0 0 0 4
## 446 0 0 0 4
## 447 0 0 0 4
## 448 0 0 0 3
## 449 0 0 0 3
## 450 0 0 0 3
## 451 0 0 0 3
## 452 0 0 0 3
## 453 1 1 0 6
## 454 1 1 0 6
## 455 0 0 1 4
## 456 0 1 1 8
## 457 1 1 0 7
## 458 1 1 0 9
## 459 0 1 0 5
## 460 0 0 0 3
## 461 1 1 1 10
## 462 0 0 0 4
## 463 0 0 0 4
## 464 0 1 0 5
## 465 1 1 0 6
## 466 0 0 1 4
## 467 1 1 0 7
## 468 1 1 0 6
## 469 0 0 0 4
## 470 0 0 0 3
## 471 0 1 0 6
## 472 0 1 0 5
## 473 0 0 0 3
## 474 0 0 0 3
## 475 0 1 0 5
## 476 1 1 0 6
## 477 1 1 0 6
## 478 1 1 0 6
## 479 0 0 0 4
## 480 1 1 0 6
## 481 1 1 0 7
## 482 0 0 0 4
## 483 0 1 0 5
## 484 0 0 0 3
## 485 1 1 0 5
## 486 0 0 0 4
## 487 0 0 0 4
## 488 0 0 0 4
## 489 0 0 0 4
## 490 0 0 0 4
## 491 0 0 0 4
## 492 0 0 0 4
## 493 0 0 0 4
## 494 0 0 0 4
## 495 1 1 0 7
## 496 0 0 0 4
## 497 0 0 0 4
## 498 0 1 0 6
## 499 0 0 0 4
## 500 1 1 0 5
## 501 1 1 0 5
## 502 1 1 0 6
## 503 1 1 1 6
## 504 1 1 1 6
## 505 1 1 0 8
## 506 1 1 1 5
## 507 1 1 0 5
## 508 1 1 0 8
## 509 1 1 0 8
## 510 1 1 0 8
## 511 1 1 0 6
## 512 0 1 0 7
## 513 0 1 0 5
## 514 1 1 0 7
## 515 0 1 0 5
## 516 1 1 0 7
## 517 1 1 0 5
## 518 1 1 0 5
## 519 1 1 0 8
## 520 0 1 0 5
## 521 1 1 0 5
## 522 1 1 0 8
## 523 1 1 0 8
## 524 1 1 0 8
## 525 1 1 0 8
## 526 1 1 0 8
## 527 0 1 0 5
## 528 1 1 1 6
## 529 1 1 1 6
## 530 1 1 0 7
## 531 1 1 0 5
## 532 1 1 0 5
## 533 0 0 0 3
## 534 0 0 0 3
## 535 0 0 0 3
## 536 1 1 0 5
## 537 0 1 0 7
## 538 1 1 0 6
## 539 0 0 0 3
## 540 0 0 0 3
## 541 1 1 0 6
## 542 1 1 1 9
## 543 0 0 0 3
## 544 1 1 0 8
## 545 0 1 0 5
## 546 1 1 0 4
## 547 1 1 0 8
## 548 0 0 0 2
## 549 0 0 1 4
## 550 0 0 0 4
## 551 1 1 0 7
## 552 0 0 0 3
## 553 0 1 0 7
## 554 0 1 0 5
## 555 0 1 0 7
## 556 0 0 1 4
## 557 0 0 1 4
## 558 0 0 1 4
## 559 0 0 1 4
## 560 0 0 1 4
## 561 0 0 1 4
## 562 0 0 1 4
## 563 1 1 0 6
## 564 0 0 0 2
## 565 0 0 0 4
## 566 1 1 0 4
## 567 1 1 0 6
## 568 0 0 0 4
## 569 0 0 0 4
## 570 0 0 0 4
## 571 1 1 0 6
## 572 1 1 0 8
## 573 0 0 0 3
## 574 0 0 0 3
## 575 0 0 0 3
## 576 0 0 1 4
## 577 0 0 1 4
## 578 0 0 0 3
## 579 0 0 0 4
## 580 0 0 0 3
## 581 0 0 1 4
## 582 1 1 1 6
## 583 0 0 0 3
## 584 0 1 0 5
## 585 0 0 0 4
## 586 1 1 0 7
## 587 0 1 0 5
## 588 0 0 1 5
## 589 0 0 0 4
## 590 0 0 1 4
## 591 0 0 0 4
## 592 1 1 1 8
## 593 1 1 1 8
## 594 1 1 1 8
## 595 0 1 0 6
## 596 1 1 0 7
## 597 1 1 0 6
## 598 0 1 0 7
## 599 0 1 0 5
## 600 0 0 1 4
## 601 0 0 0 4
## 602 1 1 0 9
## 603 0 0 1 4
## 604 1 1 0 6
## 605 0 0 0 3
## 606 1 1 0 8
## 607 1 1 0 7
## 608 1 1 0 7
## 609 1 1 0 7
## 610 1 1 0 7
## 611 0 1 0 5
## 612 1 1 1 8
## 613 0 1 0 5
## 614 1 1 0 7
## 615 0 1 0 7
## 616 0 1 0 7
## 617 0 0 0 2
## 618 0 0 0 4
## 619 1 1 0 6
## 620 1 1 0 8
## 621 0 1 0 5
## 622 1 1 0 6
## 623 0 0 0 1
## 624 1 1 0 7
## 625 0 0 0 4
## 626 1 1 0 6
## 627 1 1 0 4
## 628 1 1 1 6
## 629 0 0 1 4
## 630 0 0 1 4
## 631 0 0 0 4
## 632 1 1 0 7
## 633 1 1 1 10
## 634 0 0 1 4
## 635 0 0 1 4
## 636 0 0 1 4
## 637 1 1 0 7
## 638 1 1 0 8
## 639 1 1 1 6
## 640 0 1 0 5
## 641 1 1 0 6
## 642 1 1 0 4
## 643 1 1 0 6
## 644 0 0 0 4
## 645 0 0 0 4
## 646 0 0 0 4
## 647 0 0 1 4
## 648 1 1 0 7
## 649 1 1 0 7
## 650 1 1 0 6
## 651 0 0 0 4
## 652 1 1 0 6
## 653 1 1 0 9
## 654 1 1 1 8
## 655 0 0 0 4
## 656 1 1 0 7
## 657 1 1 0 4
## 658 1 1 0 4
## 659 0 0 0 4
## 660 1 1 0 6
## 661 1 1 0 6
## 662 1 1 0 6
## 663 1 1 0 5
## 664 0 0 0 4
## 665 1 1 1 7
## 666 1 1 1 7
## 667 1 1 1 7
## 668 1 1 1 7
## 669 1 1 1 7
## 670 1 1 1 7
## 671 1 1 1 7
## 672 1 1 1 7
## 673 1 1 1 7
## 674 1 1 1 7
## 675 1 1 1 7
## 676 1 1 1 7
## 677 1 1 1 7
## 678 1 1 1 7
## 679 1 1 1 7
## 680 1 1 1 7
## 681 0 1 0 5
## 682 0 0 0 4
## 683 1 1 0 4
## 684 0 1 0 5
## 685 1 1 0 6
## 686 0 0 1 3
## 687 0 0 1 4
## 688 1 1 0 8
## 689 1 1 0 8
## 690 0 1 0 4
## 691 0 1 0 4
## 692 1 1 0 7
## 693 0 1 0 5
## 694 1 1 0 7
## 695 1 1 0 8
## 696 0 1 0 5
## 697 0 1 0 5
## 698 1 1 0 6
## 699 1 1 0 6
## 700 1 1 0 6
## 701 0 0 1 3
## 702 1 1 0 8
## 703 0 1 0 5
## 704 0 1 0 7
## 705 0 0 0 4
## 706 1 1 0 5
## 707 0 0 1 4
## 708 1 1 0 6
## 709 0 0 0 3
## 710 0 0 0 3
## 711 0 0 0 3
## 712 1 1 0 6
## 713 1 1 1 7
## 714 1 1 1 7
## 715 1 1 1 7
## 716 1 1 1 7
## 717 1 1 1 7
## 718 1 1 1 7
## 719 1 1 1 7
## 720 1 1 1 7
## 721 1 1 1 7
## 722 1 1 1 7
## 723 0 0 0 4
## 724 1 1 0 7
## 725 1 1 0 6
## 726 0 0 0 4
## 727 0 0 0 3
## 728 0 1 0 5
## 729 0 1 0 7
## 730 0 0 0 4
## 731 0 1 0 7
## 732 1 1 0 7
## 733 1 1 0 6
## 734 0 0 0 3
## 735 0 1 0 5
## 736 1 1 0 7
## 737 0 0 0 3
## 738 0 0 0 3
## 739 0 1 0 7
## 740 0 0 0 3
## 741 0 0 0 3
## 742 1 1 0 6
## 743 1 1 1 9
## 744 1 1 0 8
## 745 1 1 0 6
## 746 1 1 0 6
## 747 1 1 0 6
## 748 0 0 0 3
## 749 1 1 0 7
## 750 1 1 0 4
## 751 0 0 0 4
## 752 1 1 0 6
## 753 1 1 0 5
## 754 0 0 0 3
## 755 0 1 0 5
## 756 0 0 0 4
## 757 1 1 0 7
## 758 0 0 0 2
## 759 0 1 0 4
## 760 1 1 0 7
## 761 0 0 0 3
## 762 0 0 0 3
## 763 1 1 0 7
## 764 1 1 0 6
## 765 0 0 0 3
## 766 1 1 0 8
## 767 0 1 0 4
## 768 0 1 0 7
## 769 0 0 0 3
## 770 1 1 0 7
## 771 1 1 0 8
## 772 0 0 0 4
## 773 1 1 0 4
## 774 1 1 0 5
## 775 1 1 0 6
## 776 1 1 0 7
## 777 0 1 0 5
## 778 1 1 0 7
## 779 0 1 1 6
## 780 0 1 1 6
## 781 1 1 0 4
## 782 0 0 0 3
## 783 0 0 0 3
## 784 0 0 0 3
## 785 0 0 0 3
## 786 0 1 0 5
## 787 0 0 0 2
## 788 0 1 0 7
## 789 0 1 0 7
## 790 1 1 0 4
## 791 0 0 0 3
## 792 1 1 0 7
## 793 0 0 0 2
## 794 1 1 0 7
## 795 0 0 0 2
## 796 0 0 0 2
## 797 0 0 0 4
## 798 0 1 0 7
## 799 0 1 0 6
## 800 0 1 0 6
## 801 0 0 0 3
## 802 0 0 0 2
## 803 0 0 0 1
## 804 0 1 0 5
## 805 1 1 0 6
## 806 1 1 0 5
## 807 0 0 0 2
## 808 1 1 0 6
## 809 0 0 1 4
## 810 0 0 0 4
## 811 0 0 0 4
## 812 1 1 0 9
## 813 1 1 0 9
## 814 0 1 0 5
## 815 0 0 0 2
## 816 1 1 0 7
## 817 1 1 1 7
## 818 1 1 0 5
## 819 1 1 0 6
## 820 0 0 0 2
## 821 0 0 0 2
## 822 0 1 0 5
## 823 0 0 1 3
## 824 0 0 1 3
## 825 0 0 1 3
## 826 0 0 1 3
## 827 1 1 0 6
## 828 0 0 0 2
## 829 0 0 0 4
## 830 0 0 0 3
## 831 0 1 0 6
## 832 0 1 0 4
## 833 1 1 0 7
## 834 0 0 0 2
## 835 1 1 1 7
## 836 1 1 1 7
## 837 1 1 1 7
## 838 1 1 1 7
## 839 1 1 1 7
## 840 0 1 0 5
## 841 0 0 0 3
## 842 0 1 0 7
## 843 0 0 0 4
## 844 0 0 0 3
## 845 0 0 0 3
## 846 0 0 0 4
## 847 0 0 0 3
## 848 0 0 0 3
## 849 1 1 1 9
## 850 0 0 0 4
## 851 0 0 0 4
## 852 0 0 1 3
## 853 0 0 0 4
## 854 0 0 0 4
## 855 0 0 0 4
## 856 1 1 0 9
## 857 0 0 0 4
## 858 0 0 0 4
## 859 0 0 0 4
## 860 1 1 0 7
## 861 0 0 1 4
## 862 0 0 0 4
## 863 0 0 0 2
## 864 0 1 0 5
## 865 0 0 0 4
## 866 0 0 0 4
## 867 0 1 0 7
## 868 0 1 0 4
## 869 0 1 0 5
## 870 0 0 0 4
## 871 0 0 0 4
## 872 0 0 0 4
## 873 1 1 0 9
## 874 0 0 0 3
## 875 0 0 0 4
## 876 0 0 0 4
## 877 1 1 0 7
## 878 0 0 0 2
## 879 0 0 0 2
## 880 0 0 0 2
## 881 0 1 0 5
## 882 1 1 0 4
## 883 1 1 0 7
## 884 1 1 0 7
## 885 1 1 0 5
## 886 1 1 0 7
## 887 0 1 0 7
## 888 1 1 0 7
## 889 1 1 0 7
## 890 1 1 0 6
## 891 1 1 0 8
## 892 1 1 0 7
## 893 1 1 0 7
## 894 1 1 0 7
## 895 0 1 0 5
## 896 1 1 0 7
## 897 0 0 0 4
## 898 1 1 1 8
## 899 0 1 0 5
## 900 1 1 1 8
## 901 0 1 0 7
## 902 0 1 0 5
## 903 1 1 0 6
## 904 1 1 0 6
## 905 1 1 1 6
## 906 0 0 0 4
## 907 1 1 1 10
## 908 1 1 0 6
## 909 0 1 0 7
## 910 0 0 0 2
## 911 0 0 0 2
## 912 0 1 0 5
## 913 1 1 0 4
## 914 1 1 0 4
## 915 0 0 0 4
## 916 0 1 0 6
## 917 0 0 0 4
## 918 1 1 0 8
## 919 0 0 0 4
## 920 1 1 0 7
## 921 0 0 0 2
## 922 1 1 0 7
## 923 1 1 0 7
## 924 1 1 0 8
## 925 1 1 0 7
## 926 1 1 0 7
## 927 1 1 0 7
## 928 0 0 0 3
## 929 1 1 0 7
## 930 1 1 0 7
## 931 1 1 0 7
## 932 0 0 0 2
## 933 0 0 0 2
## 934 0 0 0 2
## 935 1 1 0 4
## 936 0 0 0 2
## 937 1 1 0 7
## 938 0 0 0 3
## 939 0 0 0 2
## 940 0 0 0 2
## 941 0 0 0 2
## 942 0 0 0 2
## 943 1 1 0 6
## 944 1 1 0 8
## 945 1 1 0 5
## 946 1 1 1 8
## 947 1 1 0 7
## 948 0 0 0 4
## 949 0 0 0 4
## 950 0 1 0 5
## 951 1 1 0 5
## 952 0 0 0 4
## 953 0 0 0 4
## 954 0 0 0 2
## 955 1 1 0 5
## 956 0 0 0 4
## 957 0 0 0 4
## 958 0 1 0 5
## 959 1 1 0 4
## 960 0 0 0 1
## 961 0 0 0 1
## 962 0 0 0 1
## 963 1 1 0 5
## 964 0 0 0 2
## 965 0 0 0 2
## 966 0 0 0 2
## 967 0 0 0 2
## 968 0 0 0 2
## 969 1 1 0 5
## 970 0 0 0 4
## 971 0 0 0 4
## 972 0 0 0 4
## 973 0 1 0 5
## 974 0 0 0 4
## 975 1 1 0 6
## 976 0 0 0 4
## 977 0 0 0 4
## 978 0 0 0 4
## 979 1 1 0 7
## 980 0 0 0 4
## 981 0 0 0 2
## 982 0 0 1 4
## 983 0 0 0 4
## 984 0 1 0 5
## 985 1 1 0 7
## 986 0 0 0 4
## 987 1 1 0 7
## 988 0 1 0 5
## 989 0 0 0 2
## 990 1 1 0 7
## 991 1 1 0 7
## 992 0 1 0 5
## 993 0 1 0 4
## 994 0 1 0 7
## 995 0 0 0 3
## 996 1 1 0 7
## 997 0 1 0 7
## 998 0 0 0 3
## 999 0 0 0 3
## 1000 0 0 0 1
## 1001 1 1 0 7
## 1002 1 1 0 7
## 1003 1 1 0 3
## 1004 1 1 0 3
## 1005 1 1 0 3
## 1006 1 1 0 3
## 1007 1 1 0 3
## 1008 1 1 0 3
## 1009 1 1 0 3
## 1010 1 1 0 3
## 1011 1 1 0 3
## 1012 1 1 0 3
## 1013 1 1 0 3
## 1014 1 1 0 3
## 1015 1 1 0 3
## 1016 1 1 0 3
## 1017 0 0 0 3
## 1018 1 1 0 5
## 1019 0 0 0 4
## 1020 0 1 0 7
## 1021 0 0 0 2
## 1022 1 1 0 5
## 1023 1 1 0 7
## 1024 0 1 0 5
## 1025 1 1 0 6
## 1026 0 0 0 2
## 1027 0 1 0 7
## 1028 0 0 0 2
## 1029 0 0 0 2
## 1030 1 1 0 7
## 1031 0 1 0 7
## 1032 0 1 0 7
## 1033 0 0 0 2
## 1034 0 0 0 4
## 1035 0 1 0 7
## 1036 0 0 0 3
## 1037 1 1 0 7
## 1038 1 1 0 5
## 1039 1 1 1 7
## 1040 0 1 0 5
## 1041 0 1 0 5
## 1042 0 0 1 4
## 1043 0 0 0 4
## 1044 0 0 0 4
## 1045 0 0 0 2
## 1046 0 1 0 5
## 1047 1 1 0 9
## 1048 1 1 0 4
## 1049 0 1 0 6
## 1050 0 0 0 2
## 1051 0 0 0 2
## 1052 0 0 0 2
## 1053 0 0 0 2
## 1054 0 0 0 2
## 1055 0 1 0 7
## 1056 1 1 0 7
## 1057 1 1 0 5
## 1058 1 1 0 7
## 1059 0 0 1 3
## 1060 0 0 1 3
## 1061 0 0 1 3
## 1062 0 0 1 3
## 1063 0 0 1 3
## 1064 0 0 1 3
## 1065 1 1 0 6
## 1066 0 0 1 3
## 1067 0 1 0 5
## 1068 0 0 1 3
## 1069 0 0 0 3
## 1070 0 1 0 7
## 1071 1 1 0 7
## 1072 0 0 0 4
## 1073 1 1 0 7
## 1074 1 1 0 6
## 1075 0 1 0 7
## 1076 0 1 0 7
## 1077 0 0 0 2
## 1078 0 0 1 3
## 1079 0 0 1 3
## 1080 0 1 0 7
## 1081 0 0 1 3
## 1082 1 1 0 4
## 1083 0 1 0 5
## 1084 1 1 0 5
## 1085 1 1 0 6
## 1086 0 1 0 7
## 1087 0 0 0 1
## 1088 0 0 1 4
## 1089 0 0 0 4
## 1090 0 0 0 4
## 1091 1 1 0 8
## 1092 0 0 0 2
## 1093 1 1 0 7
## 1094 0 0 0 4
## 1095 0 1 0 5
## 1096 1 1 0 7
## 1097 1 1 0 7
## 1098 0 0 0 2
## 1099 0 0 0 2
## 1100 0 0 0 2
## 1101 0 1 0 7
## 1102 1 1 0 7
## 1103 1 1 0 4
## 1104 1 1 0 7
## 1105 0 0 0 2
## 1106 0 1 0 5
## 1107 0 0 0 2
## 1108 0 0 0 2
## 1109 0 0 0 2
## 1110 0 0 0 2
## 1111 0 0 0 3
## 1112 0 0 0 2
## 1113 0 0 0 2
## 1114 0 0 0 2
## 1115 1 1 0 4
## 1116 1 1 0 4
## 1117 1 1 0 4
## 1118 1 1 0 4
## 1119 0 1 0 5
## 1120 0 1 0 6
## 1121 0 1 0 4
## 1122 0 0 0 4
## 1123 1 1 0 8
## 1124 0 0 1 3
## 1125 0 1 0 6
## 1126 1 1 0 7
## 1127 1 1 0 7
## 1128 1 1 0 7
## 1129 1 1 0 7
## 1130 1 1 0 7
## 1131 1 1 0 7
## 1132 0 0 0 2
## 1133 0 0 1 3
## 1134 0 0 0 2
## 1135 0 0 0 2
## 1136 0 0 0 2
## 1137 0 0 0 2
## 1138 0 0 0 2
## 1139 1 1 0 8
## 1140 0 0 0 1
## 1141 1 1 0 6
## 1142 1 1 0 7
## 1143 1 1 0 7
## 1144 1 1 0 4
## 1145 1 1 0 4
## 1146 0 0 0 3
## 1147 1 1 0 8
## 1148 0 1 0 7
## 1149 1 1 0 8
## 1150 1 1 0 8
## 1151 1 1 0 6
## 1152 0 0 0 1
## 1153 1 1 0 7
## 1154 1 1 0 7
## 1155 1 1 1 10
## 1156 1 1 0 7
## 1157 0 0 0 4
## 1158 1 1 0 6
## 1159 1 1 0 7
## 1160 1 1 0 8
## 1161 0 1 0 4
## 1162 1 1 0 6
## 1163 1 1 0 5
## 1164 0 0 0 2
## 1165 1 1 0 4
## 1166 1 1 0 7
## 1167 1 1 0 5
## 1168 1 1 0 7
## 1169 0 0 0 4
## 1170 0 0 0 4
## 1171 0 0 0 4
## 1172 0 0 0 4
## 1173 0 0 0 4
## 1174 0 1 0 7
## 1175 0 1 0 7
## 1176 0 1 0 7
## 1177 0 1 0 7
## 1178 0 0 0 3
## 1179 0 0 0 1
## 1180 0 0 0 3
## 1181 0 0 0 3
## 1182 0 0 0 3
## 1183 0 0 0 3
## 1184 0 0 0 3
## 1185 0 0 0 2
## 1186 0 0 0 3
## 1187 0 0 0 3
## 1188 1 1 0 8
## 1189 1 1 0 7
## 1190 1 1 0 4
## 1191 1 1 0 7
## 1192 0 0 0 1
## 1193 0 1 0 5
## 1194 0 0 0 4
## 1195 1 1 0 6
## 1196 0 0 0 3
## 1197 0 0 0 3
## 1198 0 0 1 3
## 1199 1 1 1 8
## 1200 1 1 0 4
## 1201 0 0 0 3
## 1202 0 0 1 3
## 1203 1 1 0 6
## 1204 0 0 1 3
## 1205 1 1 0 5
## 1206 0 0 0 4
## 1207 0 0 0 4
## 1208 0 0 0 4
## 1209 1 1 1 8
## 1210 0 0 0 2
## 1211 1 1 0 7
## 1212 0 0 1 3
## 1213 0 0 0 4
## 1214 0 1 0 5
## 1215 1 1 0 3
## 1216 1 1 1 7
## 1217 1 1 1 7
## 1218 1 1 1 7
## 1219 1 1 1 7
## 1220 1 1 1 7
## 1221 0 0 1 3
## 1222 0 1 0 7
## 1223 0 0 1 4
## 1224 0 1 0 7
## 1225 0 1 0 7
## 1226 1 1 0 8
## 1227 0 0 1 3
## 1228 1 1 1 8
## 1229 0 0 1 3
## 1230 0 0 1 4
## 1231 0 0 0 4
## 1232 1 1 0 7
## 1233 0 0 1 3
## 1234 0 0 0 2
## 1235 0 0 0 1
## 1236 1 1 0 4
## 1237 0 0 0 4
## 1238 0 0 1 3
## 1239 0 1 0 6
## 1240 0 0 0 4
## 1241 1 1 0 6
## 1242 0 1 0 5
## 1243 0 1 0 7
## 1244 1 1 0 5
## 1245 0 1 0 5
## 1246 1 1 0 6
## 1247 0 0 0 4
## 1248 0 0 0 4
## 1249 1 1 0 5
## 1250 1 1 0 5
## 1251 1 1 1 8
## 1252 1 1 0 6
## 1253 1 1 0 6
## 1254 1 1 0 7
## 1255 1 1 0 4
## 1256 1 1 0 4
## 1257 0 1 0 7
## 1258 1 1 0 4
## 1259 0 0 0 4
## 1260 0 0 0 4
## 1261 1 1 0 4
## 1262 0 1 0 5
## 1263 1 1 0 4
## 1264 1 1 0 6
## 1265 1 1 0 4
## 1266 0 0 0 2
## 1267 1 1 0 6
## 1268 0 0 1 3
## 1269 0 1 0 6
## 1270 1 1 0 7
## 1271 1 1 1 8
## 1272 1 1 0 8
## 1273 0 0 0 3
## 1274 1 1 0 7
## 1275 1 1 1 8
## 1276 1 1 0 8
## 1277 1 1 0 7
## 1278 1 1 0 5
## 1279 0 0 0 1
## 1280 1 1 0 3
## 1281 0 1 0 6
## 1282 0 0 1 3
## 1283 0 1 0 5
## 1284 1 1 0 8
## 1285 0 1 0 7
## 1286 0 1 0 7
## 1287 0 1 0 5
## 1288 0 1 0 7
## 1289 1 1 0 6
## 1290 1 1 0 4
## 1291 0 0 0 2
## 1292 0 0 1 3
## 1293 0 1 0 7
## 1294 0 1 0 5
## 1295 0 0 0 2
## 1296 0 0 0 2
## 1297 0 0 0 2
## 1298 0 0 0 4
## 1299 0 1 0 6
## 1300 0 1 0 5
## 1301 0 1 1 6
## 1302 0 0 0 4
## 1303 0 0 1 3
## 1304 1 1 1 8
## 1305 1 1 0 7
## 1306 0 1 0 5
## 1307 0 1 0 7
## 1308 0 1 0 7
## 1309 1 1 0 7
## 1310 1 1 1 7
## 1311 0 0 0 4
## 1312 0 0 0 4
## 1313 0 0 0 2
## 1314 0 0 1 6
## 1315 1 1 0 6
## 1316 0 1 0 7
## 1317 1 1 0 6
## 1318 0 1 0 5
## 1319 0 1 0 5
## 1320 0 1 0 5
## 1321 1 1 1 9
## 1322 1 1 1 9
## 1323 1 1 0 8
## 1324 0 0 0 2
## 1325 1 1 0 6
## 1326 0 0 0 0
## 1327 1 1 0 8
## 1328 1 1 0 7
## 1329 1 1 0 8
## 1330 1 1 0 5
## 1331 0 0 0 3
## 1332 1 1 0 8
## 1333 1 1 0 8
## 1334 1 1 0 8
## 1335 1 1 0 8
## 1336 1 1 1 8
## 1337 1 1 0 8
## 1338 1 1 0 7
## 1339 1 1 0 8
## 1340 1 1 0 5
## 1341 1 1 0 5
## 1342 1 1 0 7
## 1343 1 1 0 8
## 1344 1 1 0 7
## 1345 1 1 0 7
## 1346 0 0 0 2
## 1347 1 1 0 7
## 1348 1 1 0 7
## 1349 1 1 0 6
## 1350 0 1 1 6
## 1351 0 0 0 4
## 1352 1 1 0 7
## 1353 1 1 0 7
## 1354 0 0 0 2
## 1355 1 1 0 7
## 1356 0 0 1 4
## 1357 0 0 1 4
## 1358 1 1 0 7
## 1359 1 1 0 7
## 1360 1 1 0 7
## 1361 1 1 0 8
## 1362 1 1 0 4
## 1363 1 1 0 7
## 1364 1 1 0 7
## 1365 1 1 0 7
## 1366 1 1 0 7
## 1367 1 1 0 7
## 1368 1 1 0 7
## 1369 1 1 0 7
## 1370 1 1 0 7
## 1371 1 1 0 7
## 1372 1 1 0 5
## 1373 1 1 0 7
## 1374 1 1 0 7
## 1375 1 1 0 6
## 1376 0 0 1 4
## 1377 1 1 0 7
## 1378 1 1 0 7
## 1379 1 1 0 7
## 1380 0 0 0 3
## 1381 1 1 0 7
## 1382 1 1 0 7
## 1383 1 1 0 8
## 1384 1 1 0 8
## 1385 1 1 0 7
## 1386 1 1 1 6
## 1387 1 1 0 8
## 1388 1 1 0 5
## 1389 1 1 0 8
## 1390 1 1 0 7
## 1391 1 1 0 7
## 1392 0 0 0 1
## 1393 1 1 0 6
## 1394 1 1 0 5
## 1395 0 0 1 4
## 1396 1 1 0 5
## 1397 1 1 0 5
## 1398 0 0 1 4
## 1399 1 1 0 7
## 1400 0 0 1 4
## 1401 1 1 0 7
## 1402 1 1 0 7
## 1403 1 1 0 8
## 1404 0 1 0 5
## 1405 1 1 1 9
## 1406 0 0 0 1
## 1407 1 1 0 7
## 1408 1 1 0 6
## 1409 0 0 1 3
## 1410 1 1 1 8
## 1411 1 1 0 5
## 1412 0 1 0 5
## 1413 1 1 0 7
## 1414 0 0 0 2
## 1415 0 0 0 2
## 1416 0 0 0 4
## 1417 0 1 0 4
## 1418 0 1 0 5
## 1419 1 1 0 8
## 1420 1 1 0 8
## 1421 0 0 0 2
## 1422 1 1 0 8
## 1423 1 1 0 8
## 1424 0 1 0 7
## 1425 0 0 0 3
## 1426 0 0 0 2
## 1427 1 1 0 6
## 1428 0 0 0 2
## 1429 1 1 0 9
## 1430 1 1 0 9
## 1431 1 1 0 8
## 1432 0 0 0 2
## 1433 0 0 0 2
## 1434 0 1 0 5
## 1435 1 1 0 8
## 1436 1 1 0 5
## 1437 0 0 0 4
## 1438 1 1 0 6
## 1439 1 1 0 5
## 1440 0 0 0 3
## 1441 0 0 0 4
## 1442 0 0 1 4
## 1443 0 0 0 2
## 1444 0 0 0 4
## 1445 0 0 0 2
## 1446 1 1 0 4
## 1447 1 1 0 8
## 1448 0 0 0 2
## 1449 0 0 0 2
## 1450 0 0 0 2
## 1451 1 1 0 5
## 1452 1 1 0 8
## 1453 0 0 0 2
## 1454 0 1 0 7
## 1455 1 1 0 7
## 1456 0 0 0 4
## 1457 0 0 0 2
## 1458 1 1 1 7
## 1459 1 1 0 7
## 1460 1 1 0 7
## 1461 1 1 0 8
## 1462 0 1 0 5
## 1463 0 0 0 2
## 1464 0 0 0 2
## 1465 1 1 1 9
## 1466 0 0 0 2
## 1467 0 1 0 5
## 1468 1 1 0 7
## 1469 0 0 0 2
## 1470 1 1 0 7
## 1471 1 1 0 7
## 1472 1 1 0 8
## 1473 1 1 0 7
## 1474 0 0 0 2
## 1475 0 0 0 2
## 1476 1 1 0 8
## 1477 1 1 0 8
## 1478 1 1 0 5
## 1479 0 0 0 4
## 1480 1 1 0 7
## 1481 1 1 0 6
## 1482 1 1 0 7
## 1483 0 1 0 5
## 1484 1 1 0 7
## 1485 0 0 0 3
## 1486 0 0 0 4
## 1487 0 0 0 4
## 1488 1 1 1 6
## 1489 0 0 1 4
## 1490 1 1 0 6
## 1491 0 0 0 2
## 1492 0 0 0 2
## 1493 0 0 0 3
## 1494 0 0 0 3
## 1495 0 0 0 3
## 1496 0 0 0 2
## 1497 0 0 0 3
## 1498 0 1 0 6
## 1499 0 1 0 6
## 1500 0 1 0 6
## 1501 0 1 0 6
## 1502 1 1 0 7
## 1503 1 1 0 7
## 1504 1 1 0 7
## 1505 0 1 0 4
## 1506 1 1 0 7
## 1507 1 1 0 7
## 1508 1 1 0 7
## 1509 0 0 0 3
## 1510 0 1 0 6
## 1511 1 1 0 7
## 1512 1 1 0 7
## 1513 0 0 0 2
## 1514 0 0 1 3
## 1515 1 1 1 9
## 1516 1 1 0 6
## 1517 0 0 1 3
## 1518 1 1 0 7
## 1519 0 0 1 3
## 1520 0 0 1 3
## 1521 1 1 1 7
## 1522 0 0 1 3
## 1523 1 1 0 7
## 1524 1 1 0 7
## 1525 1 1 0 8
## 1526 1 1 0 6
## 1527 1 1 0 5
## 1528 1 1 0 6
## 1529 1 1 0 6
## 1530 1 1 0 5
## 1531 1 1 0 7
## 1532 0 0 1 3
## 1533 1 1 1 9
## 1534 1 1 0 6
## 1535 1 1 0 5
## 1536 1 1 0 5
## 1537 1 1 0 4
## 1538 0 0 0 3
## 1539 1 1 0 6
## 1540 0 0 0 3
## 1541 1 1 0 7
## 1542 0 0 0 3
## 1543 1 1 0 7
## 1544 0 0 0 2
## 1545 1 1 0 4
## 1546 1 1 1 8
## 1547 1 1 0 6
## 1548 0 0 1 3
## 1549 1 1 0 7
## 1550 0 0 0 4
## 1551 1 1 0 7
## 1552 1 1 0 5
## 1553 1 1 0 8
## 1554 1 1 1 9
## 1555 0 1 0 4
## 1556 1 1 0 7
## 1557 0 0 0 2
## 1558 0 0 0 2
## 1559 1 1 0 7
## 1560 0 0 0 4
## 1561 0 0 0 2
## 1562 1 1 1 7
## 1563 0 0 0 2
## 1564 0 0 0 4
## 1565 0 0 1 5
## 1566 1 1 0 7
## 1567 1 1 0 7
## 1568 1 1 0 7
## 1569 1 1 0 7
## 1570 1 1 0 7
## 1571 1 1 0 7
## 1572 1 1 0 7
## 1573 1 1 0 7
## 1574 1 1 0 7
## 1575 1 1 0 7
## 1576 0 0 0 4
## 1577 1 1 0 7
## 1578 0 0 0 4
## 1579 1 1 1 10
## 1580 1 1 0 9
## 1581 1 1 0 4
## 1582 1 1 0 8
## 1583 1 1 0 6
## 1584 0 0 0 1
## 1585 0 0 1 3
## 1586 0 0 1 3
## 1587 1 1 0 7
## 1588 0 0 0 3
## 1589 1 1 0 7
## 1590 1 1 0 6
## 1591 1 1 0 6
## 1592 1 1 0 6
## 1593 1 1 0 6
## 1594 1 1 0 6
## 1595 0 0 0 1
## 1596 0 1 0 7
## 1597 0 1 0 7
## 1598 0 1 0 6
## 1599 0 1 0 6
## 1600 0 0 0 2
## 1601 0 0 0 2
## 1602 1 1 0 7
## 1603 1 1 0 7
## 1604 0 0 0 4
## 1605 0 0 0 4
## 1606 0 0 0 2
## 1607 0 0 0 4
## 1608 1 1 0 7
## 1609 0 0 0 2
## 1610 0 0 0 2
## 1611 0 0 1 3
## 1612 0 0 1 3
## 1613 0 0 0 4
## 1614 0 0 0 4
## 1615 1 1 0 5
## 1616 1 1 0 5
## 1617 1 1 0 5
## 1618 1 1 0 5
## 1619 0 0 0 2
## 1620 0 0 0 2
## 1621 0 0 0 2
## 1622 0 1 0 4
## 1623 0 1 0 7
## 1624 1 1 0 8
## 1625 1 1 0 7
## 1626 1 1 0 7
## 1627 0 0 0 3
## 1628 0 0 0 3
## 1629 0 0 0 3
## 1630 0 0 0 3
## 1631 0 0 1 6
## 1632 1 1 0 7
## 1633 0 0 0 2
## 1634 1 1 0 6
## 1635 1 1 0 7
## 1636 1 1 0 9
## 1637 0 1 0 5
## 1638 0 0 0 1
## 1639 1 1 0 7
## 1640 1 1 0 6
## 1641 0 0 0 4
## 1642 1 1 0 5
## 1643 1 1 0 5
## 1644 1 1 0 7
## 1645 0 0 0 2
## 1646 1 1 0 7
## 1647 0 0 1 4
## 1648 1 1 0 6
## 1649 0 1 0 7
## 1650 0 1 0 4
## 1651 1 1 0 7
## 1652 1 1 0 6
## 1653 1 1 0 7
## 1654 1 1 0 7
## 1655 1 1 0 7
## 1656 0 0 0 4
## 1657 0 0 0 4
## 1658 1 1 0 7
## 1659 0 0 0 3
## 1660 1 1 0 5
## 1661 1 1 0 5
## 1662 0 0 1 4
## 1663 0 0 0 1
## 1664 0 1 1 8
## 1665 0 1 0 5
## 1666 0 1 0 4
## 1667 1 1 0 7
## 1668 0 0 1 4
## 1669 0 0 1 4
## 1670 0 0 1 4
## 1671 0 1 0 6
## 1672 0 0 1 4
## 1673 0 0 1 4
## 1674 0 1 0 5
## 1675 1 1 0 7
## 1676 1 1 0 7
## 1677 0 0 1 3
## 1678 0 0 0 2
## 1679 1 1 0 7
## 1680 1 1 0 7
## 1681 1 1 0 5
## 1682 1 1 0 7
## 1683 1 1 0 7
## 1684 0 1 0 4
## 1685 0 0 0 2
## 1686 0 0 0 2
## 1687 1 1 0 7
## 1688 0 1 0 7
## 1689 0 0 0 1
## 1690 0 0 0 4
## 1691 1 1 0 6
## 1692 0 0 0 2
## 1693 0 0 0 2
## 1694 0 0 0 4
## 1695 0 1 0 4
## 1696 0 0 0 2
## 1697 1 1 0 8
## 1698 0 0 0 4
## 1699 0 0 0 4
## 1700 1 1 0 7
## 1701 0 0 0 4
## 1702 0 0 0 4
## 1703 1 1 0 7
## 1704 0 0 0 1
## 1705 0 0 0 4
## 1706 1 1 0 7
## 1707 0 0 0 4
## 1708 1 1 0 7
## 1709 1 1 0 7
## 1710 1 1 0 5
## 1711 0 0 0 1
## 1712 0 1 0 6
## 1713 1 1 0 4
## 1714 0 0 0 3
## 1715 0 0 0 1
## 1716 0 1 0 6
## 1717 1 1 0 4
## 1718 0 1 0 6
## 1719 0 0 0 3
## 1720 1 1 0 7
## 1721 0 0 0 3
## 1722 1 1 0 8
## 1723 1 1 1 8
## 1724 1 1 0 8
## 1725 0 0 0 4
## Days_since_last_review Shared_ind House_ind Private_ind
## 1 714 0 0 1
## 2 810 0 0 1
## 3 722 0 0 1
## 4 623 0 0 1
## 5 369 0 0 1
## 6 710 0 0 1
## 7 825 0 0 1
## 8 979 0 0 1
## 9 690 0 0 1
## 10 727 0 0 1
## 11 721 0 0 1
## 12 693 0 0 1
## 13 1038 0 0 1
## 14 445 0 0 1
## 15 873 0 0 1
## 16 813 0 0 1
## 17 737 0 1 0
## 18 537 0 0 1
## 19 1071 0 0 1
## 20 519 0 1 0
## 21 21 0 1 0
## 22 250 0 1 0
## 23 22 0 1 0
## 24 69 0 1 0
## 25 153 0 1 0
## 26 222 0 0 1
## 27 189 0 0 1
## 28 700 1 0 0
## 29 700 NA NA NA
## 30 693 0 1 0
## 31 981 0 0 1
## 32 640 0 1 0
## 33 258 0 0 1
## 34 167 0 1 0
## 35 728 0 0 1
## 36 626 0 1 0
## 37 121 0 0 1
## 38 888 0 0 1
## 39 574 0 0 1
## 40 1095 1 0 0
## 41 669 0 0 1
## 42 794 0 0 1
## 43 708 0 0 1
## 44 826 0 1 0
## 45 704 0 1 0
## 46 308 0 1 0
## 47 830 0 0 1
## 48 221 0 1 0
## 49 730 NA NA NA
## 50 773 NA NA NA
## 51 837 0 0 1
## 52 655 0 1 0
## 53 19 0 1 0
## 54 615 0 1 0
## 55 658 0 0 1
## 56 680 0 0 1
## 57 704 0 0 1
## 58 26 0 1 0
## 59 700 0 1 0
## 60 730 0 1 0
## 61 77 0 0 1
## 62 808 0 0 1
## 63 11 0 1 0
## 64 262 0 1 0
## 65 663 0 1 0
## 66 693 0 0 1
## 67 646 0 1 0
## 68 704 0 1 0
## 69 160 0 1 0
## 70 692 0 0 1
## 71 711 0 0 1
## 72 31 0 1 0
## 73 57 0 1 0
## 74 887 0 0 1
## 75 250 0 1 0
## 76 686 0 0 1
## 77 697 0 0 1
## 78 1010 0 1 0
## 79 13 0 1 0
## 80 215 0 1 0
## 81 690 0 0 1
## 82 148 0 0 1
## 83 139 0 1 0
## 84 10 0 1 0
## 85 699 0 0 1
## 86 21 0 1 0
## 87 669 0 1 0
## 88 25 0 1 0
## 89 160 0 1 0
## 90 114 0 1 0
## 91 824 0 1 0
## 92 701 0 1 0
## 93 705 0 0 1
## 94 685 0 0 1
## 95 677 0 0 1
## 96 110 0 0 1
## 97 263 0 0 1
## 98 334 0 0 1
## 99 76 0 1 0
## 100 905 0 0 1
## 101 154 0 0 1
## 102 917 0 0 1
## 103 56 0 0 1
## 104 28 0 1 0
## 105 136 0 1 0
## 106 280 0 0 1
## 107 35 0 1 0
## 108 188 0 1 0
## 109 239 0 1 0
## 110 471 0 1 0
## 111 669 0 1 0
## 112 690 0 1 0
## 113 205 0 1 0
## 114 600 0 1 0
## 115 553 0 0 1
## 116 838 0 0 1
## 117 41 0 1 0
## 118 914 0 1 0
## 119 716 0 1 0
## 120 22 0 0 1
## 121 132 0 0 1
## 122 672 0 1 0
## 123 682 0 1 0
## 124 650 0 1 0
## 125 20 0 1 0
## 126 151 0 1 0
## 127 246 0 0 1
## 128 853 0 0 1
## 129 130 0 1 0
## 130 905 0 1 0
## 131 13 0 0 1
## 132 144 0 0 1
## 133 1014 0 0 1
## 134 701 0 1 0
## 135 127 0 0 1
## 136 704 0 0 1
## 137 677 0 1 0
## 138 806 0 1 0
## 139 867 0 1 0
## 140 914 0 0 1
## 141 60 0 1 0
## 142 244 0 1 0
## 143 656 0 1 0
## 144 305 0 1 0
## 145 670 0 1 0
## 146 69 0 1 0
## 147 194 0 0 1
## 148 470 0 0 1
## 149 119 0 0 1
## 150 90 0 1 0
## 151 42 0 0 1
## 152 41 0 1 0
## 153 1095 0 1 0
## 154 182 0 1 0
## 155 649 0 1 0
## 156 320 0 0 1
## 157 9 0 0 1
## 158 258 0 0 1
## 159 893 0 0 1
## 160 804 0 0 1
## 161 758 0 0 1
## 162 709 0 0 1
## 163 688 0 0 1
## 164 711 0 1 0
## 165 830 0 0 1
## 166 792 0 0 1
## 167 712 0 1 0
## 168 51 0 0 1
## 169 305 0 1 0
## 170 753 0 0 1
## 171 122 0 0 1
## 172 898 0 0 1
## 173 202 0 0 1
## 174 988 0 0 1
## 175 344 0 0 1
## 176 425 0 0 1
## 177 189 0 0 1
## 178 916 0 0 1
## 179 660 1 0 0
## 180 663 1 0 0
## 181 919 1 0 0
## 182 718 1 0 0
## 183 659 0 1 0
## 184 776 1 0 0
## 185 12 0 0 1
## 186 27 0 1 0
## 187 694 0 0 1
## 188 720 0 0 1
## 189 683 0 0 1
## 190 892 1 0 0
## 191 744 1 0 0
## 192 741 1 0 0
## 193 694 1 0 0
## 194 140 NA NA NA
## 195 1068 0 1 0
## 196 727 NA NA NA
## 197 750 NA NA NA
## 198 754 NA NA NA
## 199 735 NA NA NA
## 200 833 0 1 0
## 201 610 0 1 0
## 202 668 0 0 1
## 203 1019 NA NA NA
## 204 215 0 1 0
## 205 777 1 0 0
## 206 1065 1 0 0
## 207 952 1 0 0
## 208 803 0 1 0
## 209 686 0 0 1
## 210 691 0 0 1
## 211 895 0 0 1
## 212 689 0 0 1
## 213 682 0 0 1
## 214 780 0 0 1
## 215 856 0 0 1
## 216 14 0 0 1
## 217 547 0 0 1
## 218 27 0 0 1
## 219 659 0 0 1
## 220 866 0 0 1
## 221 729 0 0 1
## 222 90 0 0 1
## 223 703 0 0 1
## 224 846 1 0 0
## 225 714 1 0 0
## 226 666 1 0 0
## 227 936 1 0 0
## 228 692 0 0 1
## 229 12 0 0 1
## 230 51 0 0 1
## 231 769 1 0 0
## 232 692 1 0 0
## 233 80 1 0 0
## 234 762 1 0 0
## 235 1070 NA NA NA
## 236 17 0 1 0
## 237 669 0 1 0
## 238 708 NA NA NA
## 239 654 1 0 0
## 240 705 NA NA NA
## 241 988 1 0 0
## 242 696 NA NA NA
## 243 688 NA NA NA
## 244 831 1 0 0
## 245 698 1 0 0
## 246 690 NA NA NA
## 247 696 NA NA NA
## 248 684 0 0 1
## 249 10 0 1 0
## 250 937 0 0 1
## 251 931 0 1 0
## 252 659 0 0 1
## 253 964 0 0 1
## 254 812 0 1 0
## 255 30 0 0 1
## 256 638 0 0 1
## 257 451 0 0 1
## 258 900 1 0 0
## 259 288 0 0 1
## 260 487 0 0 1
## 261 718 0 0 1
## 262 31 0 1 0
## 263 37 0 0 1
## 264 544 0 0 1
## 265 499 0 0 1
## 266 914 0 1 0
## 267 272 0 0 1
## 268 36 0 1 0
## 269 53 0 1 0
## 270 158 0 1 0
## 271 53 0 0 1
## 272 346 0 0 1
## 273 24 0 0 1
## 274 715 0 0 1
## 275 214 0 0 1
## 276 9 0 1 0
## 277 696 1 0 0
## 278 1083 1 0 0
## 279 688 0 0 1
## 280 640 1 0 0
## 281 898 1 0 0
## 282 860 1 0 0
## 283 723 1 0 0
## 284 692 1 0 0
## 285 710 1 0 0
## 286 659 NA NA NA
## 287 679 NA NA NA
## 288 645 0 0 1
## 289 98 0 0 1
## 290 293 0 0 1
## 291 66 0 0 1
## 292 215 0 1 0
## 293 66 0 0 1
## 294 578 0 0 1
## 295 170 0 0 1
## 296 121 0 0 1
## 297 240 0 1 0
## 298 1063 0 1 0
## 299 48 0 0 1
## 300 754 0 0 1
## 301 681 0 1 0
## 302 79 0 1 0
## 303 231 0 1 0
## 304 112 0 1 0
## 305 163 0 0 1
## 306 792 0 0 1
## 307 631 0 0 1
## 308 878 0 0 1
## 309 694 0 1 0
## 310 703 NA NA NA
## 311 669 NA NA NA
## 312 676 0 1 0
## 313 1020 0 1 0
## 314 49 0 0 1
## 315 579 0 0 1
## 316 199 0 1 0
## 317 31 0 1 0
## 318 37 0 0 1
## 319 846 0 0 1
## 320 75 0 1 0
## 321 853 0 1 0
## 322 213 0 0 1
## 323 891 0 0 1
## 324 672 0 0 1
## 325 936 1 0 0
## 326 33 0 1 0
## 327 550 0 0 1
## 328 732 0 0 1
## 329 832 0 0 1
## 330 239 0 0 1
## 331 558 0 0 1
## 332 735 0 0 1
## 333 62 0 1 0
## 334 160 0 1 0
## 335 867 1 0 0
## 336 866 0 0 1
## 337 970 1 0 0
## 338 46 0 0 1
## 339 729 0 1 0
## 340 275 0 0 1
## 341 770 0 1 0
## 342 964 0 1 0
## 343 975 0 1 0
## 344 961 0 0 1
## 345 867 0 1 0
## 346 76 0 1 0
## 347 686 0 1 0
## 348 759 0 1 0
## 349 29 0 1 0
## 350 702 0 1 0
## 351 248 0 1 0
## 352 209 0 0 1
## 353 392 0 0 1
## 354 484 0 0 1
## 355 122 0 0 1
## 356 127 0 1 0
## 357 701 0 1 0
## 358 767 0 1 0
## 359 621 0 0 1
## 360 109 0 1 0
## 361 662 0 1 0
## 362 364 0 1 0
## 363 694 0 0 1
## 364 540 0 0 1
## 365 208 0 0 1
## 366 44 0 0 1
## 367 291 0 1 0
## 368 651 0 0 1
## 369 612 0 0 1
## 370 286 0 1 0
## 371 133 0 1 0
## 372 351 0 1 0
## 373 897 0 1 0
## 374 964 0 0 1
## 375 719 0 0 1
## 376 700 0 0 1
## 377 732 0 0 1
## 378 865 0 1 0
## 379 404 0 0 1
## 380 730 0 0 1
## 381 880 0 1 0
## 382 789 0 0 1
## 383 453 0 1 0
## 384 754 0 1 0
## 385 730 0 0 1
## 386 99 0 0 1
## 387 46 0 0 1
## 388 917 1 0 0
## 389 808 NA NA NA
## 390 697 NA NA NA
## 391 713 0 0 1
## 392 912 0 0 1
## 393 887 0 0 1
## 394 402 0 0 1
## 395 692 0 1 0
## 396 653 0 0 1
## 397 677 0 1 0
## 398 26 0 0 1
## 399 13 0 0 1
## 400 697 0 1 0
## 401 691 0 0 1
## 402 1067 0 0 1
## 403 172 0 0 1
## 404 843 NA NA NA
## 405 749 NA NA NA
## 406 40 0 0 1
## 407 245 0 1 0
## 408 272 0 1 0
## 409 672 NA NA NA
## 410 852 NA NA NA
## 411 801 0 1 0
## 412 19 0 0 1
## 413 753 0 0 1
## 414 106 0 1 0
## 415 727 0 1 0
## 416 439 0 0 1
## 417 29 0 1 0
## 418 769 NA NA NA
## 419 19 0 0 1
## 420 922 0 0 1
## 421 233 0 0 1
## 422 712 0 0 1
## 423 715 0 0 1
## 424 883 0 0 1
## 425 817 0 1 0
## 426 128 0 0 1
## 427 653 0 1 0
## 428 701 0 0 1
## 429 1076 1 0 0
## 430 737 0 0 1
## 431 835 0 0 1
## 432 704 0 0 1
## 433 580 0 1 0
## 434 838 0 1 0
## 435 775 1 0 0
## 436 130 0 1 0
## 437 356 0 0 1
## 438 840 0 0 1
## 439 773 0 0 1
## 440 248 0 0 1
## 441 1018 1 0 0
## 442 879 0 0 1
## 443 895 0 0 1
## 444 243 0 1 0
## 445 253 0 0 1
## 446 7 0 0 1
## 447 78 0 0 1
## 448 713 NA NA NA
## 449 736 NA NA NA
## 450 193 NA NA NA
## 451 707 NA NA NA
## 452 679 NA NA NA
## 453 717 0 0 1
## 454 661 0 0 1
## 455 885 0 1 0
## 456 689 0 1 0
## 457 761 0 0 1
## 458 789 0 0 1
## 459 23 0 1 0
## 460 530 0 0 1
## 461 671 0 0 1
## 462 235 0 0 1
## 463 439 0 0 1
## 464 728 0 0 1
## 465 546 0 0 1
## 466 246 0 0 1
## 467 307 0 0 1
## 468 675 0 0 1
## 469 518 0 1 0
## 470 625 0 0 1
## 471 817 0 0 1
## 472 1035 0 0 1
## 473 9 0 1 0
## 474 47 0 1 0
## 475 124 0 0 1
## 476 76 0 0 1
## 477 1010 NA NA NA
## 478 706 NA NA NA
## 479 860 0 1 0
## 480 314 NA NA NA
## 481 92 0 0 1
## 482 192 0 0 1
## 483 487 0 0 1
## 484 847 0 0 1
## 485 24 0 1 0
## 486 90 0 1 0
## 487 728 0 0 1
## 488 849 0 0 1
## 489 814 0 0 1
## 490 834 0 0 1
## 491 713 0 0 1
## 492 1022 0 0 1
## 493 775 0 0 1
## 494 775 0 0 1
## 495 61 0 0 1
## 496 604 0 1 0
## 497 647 0 1 0
## 498 21 0 0 1
## 499 230 0 1 0
## 500 109 0 1 0
## 501 678 0 1 0
## 502 772 0 0 1
## 503 698 0 1 0
## 504 712 0 1 0
## 505 715 0 1 0
## 506 168 0 1 0
## 507 1018 0 1 0
## 508 687 0 0 1
## 509 704 0 0 1
## 510 709 0 0 1
## 511 164 0 0 1
## 512 366 0 0 1
## 513 658 0 1 0
## 514 107 0 1 0
## 515 705 NA NA NA
## 516 66 0 1 0
## 517 829 0 1 0
## 518 720 0 1 0
## 519 713 0 1 0
## 520 520 0 0 1
## 521 755 0 1 0
## 522 688 0 1 0
## 523 733 0 1 0
## 524 683 0 1 0
## 525 700 0 1 0
## 526 684 0 1 0
## 527 733 0 0 1
## 528 112 0 1 0
## 529 689 0 1 0
## 530 230 0 1 0
## 531 723 0 1 0
## 532 717 0 1 0
## 533 154 NA NA NA
## 534 830 NA NA NA
## 535 976 NA NA NA
## 536 649 0 1 0
## 537 521 0 1 0
## 538 705 0 0 1
## 539 12 0 0 1
## 540 776 0 0 1
## 541 704 0 0 1
## 542 662 0 0 1
## 543 824 0 0 1
## 544 782 0 0 1
## 545 846 0 0 1
## 546 121 0 0 1
## 547 1073 0 0 1
## 548 675 NA NA NA
## 549 36 0 1 0
## 550 28 0 1 0
## 551 1070 0 0 1
## 552 27 0 0 1
## 553 12 0 1 0
## 554 172 0 0 1
## 555 931 0 0 1
## 556 481 0 1 0
## 557 704 0 1 0
## 558 75 0 1 0
## 559 101 0 1 0
## 560 28 0 1 0
## 561 13 0 1 0
## 562 768 0 0 1
## 563 32 0 1 0
## 564 895 0 0 1
## 565 699 0 1 0
## 566 844 0 0 1
## 567 723 NA NA NA
## 568 232 0 1 0
## 569 914 0 1 0
## 570 341 0 1 0
## 571 26 0 0 1
## 572 671 0 1 0
## 573 655 NA NA NA
## 574 717 NA NA NA
## 575 746 NA NA NA
## 576 26 NA NA NA
## 577 27 NA NA NA
## 578 758 NA NA NA
## 579 490 0 1 0
## 580 518 0 0 1
## 581 30 NA NA NA
## 582 650 0 1 0
## 583 719 0 1 0
## 584 865 0 0 1
## 585 737 0 1 0
## 586 898 0 1 0
## 587 770 0 0 1
## 588 104 0 1 0
## 589 81 0 1 0
## 590 91 NA NA NA
## 591 122 0 1 0
## 592 23 0 1 0
## 593 36 0 1 0
## 594 691 0 1 0
## 595 925 0 0 1
## 596 658 0 0 1
## 597 1055 0 1 0
## 598 761 0 0 1
## 599 487 0 0 1
## 600 747 0 0 1
## 601 196 0 1 0
## 602 785 0 0 1
## 603 87 NA NA NA
## 604 648 0 0 1
## 605 1055 0 0 1
## 606 1093 0 1 0
## 607 22 0 0 1
## 608 433 0 0 1
## 609 61 0 0 1
## 610 661 0 0 1
## 611 1037 0 0 1
## 612 173 0 1 0
## 613 177 0 0 1
## 614 17 0 0 1
## 615 633 0 0 1
## 616 640 0 0 1
## 617 24 0 1 0
## 618 190 0 1 0
## 619 1016 NA NA NA
## 620 832 0 0 1
## 621 808 0 0 1
## 622 1018 NA NA NA
## 623 755 0 0 1
## 624 15 0 0 1
## 625 684 0 1 0
## 626 792 0 0 1
## 627 12 0 1 0
## 628 711 0 1 0
## 629 24 0 1 0
## 630 365 0 1 0
## 631 39 0 1 0
## 632 639 0 0 1
## 633 717 0 0 1
## 634 319 0 1 0
## 635 14 0 1 0
## 636 226 0 1 0
## 637 16 0 0 1
## 638 244 0 1 0
## 639 692 0 1 0
## 640 610 0 0 1
## 641 26 0 0 1
## 642 1084 0 0 1
## 643 18 0 0 1
## 644 639 0 1 0
## 645 1092 0 1 0
## 646 555 0 1 0
## 647 368 NA NA NA
## 648 842 0 0 1
## 649 755 0 1 0
## 650 718 NA NA NA
## 651 266 0 1 0
## 652 681 0 0 1
## 653 21 0 1 0
## 654 681 0 0 1
## 655 316 0 1 0
## 656 889 0 0 1
## 657 142 0 1 0
## 658 18 0 1 0
## 659 626 0 1 0
## 660 742 0 0 1
## 661 685 0 0 1
## 662 1037 0 0 1
## 663 668 0 1 0
## 664 467 NA NA NA
## 665 629 0 0 1
## 666 734 0 0 1
## 667 743 NA NA NA
## 668 704 0 0 1
## 669 365 0 0 1
## 670 718 NA NA NA
## 671 363 0 0 1
## 672 382 0 0 1
## 673 821 NA NA NA
## 674 370 0 0 1
## 675 383 0 0 1
## 676 874 0 0 1
## 677 941 0 0 1
## 678 727 0 0 1
## 679 873 0 0 1
## 680 942 0 0 1
## 681 937 0 0 1
## 682 670 0 1 0
## 683 89 0 1 0
## 684 751 0 0 1
## 685 727 0 1 0
## 686 696 0 1 0
## 687 770 NA NA NA
## 688 398 0 1 0
## 689 1092 0 1 0
## 690 114 0 1 0
## 691 362 0 1 0
## 692 28 0 1 0
## 693 648 0 0 1
## 694 845 0 0 1
## 695 665 0 0 1
## 696 719 NA NA NA
## 697 860 1 0 0
## 698 260 0 0 1
## 699 656 0 0 1
## 700 349 0 0 1
## 701 990 NA NA NA
## 702 384 0 1 0
## 703 542 0 0 1
## 704 508 0 0 1
## 705 716 0 1 0
## 706 201 0 1 0
## 707 342 0 1 0
## 708 231 0 1 0
## 709 344 0 1 0
## 710 368 0 1 0
## 711 461 0 1 0
## 712 229 0 0 1
## 713 996 0 0 1
## 714 364 0 0 1
## 715 319 0 0 1
## 716 376 0 0 1
## 717 843 0 0 1
## 718 697 0 0 1
## 719 313 NA NA NA
## 720 729 0 0 1
## 721 566 0 0 1
## 722 795 0 0 1
## 723 730 0 1 0
## 724 818 0 0 1
## 725 334 0 0 1
## 726 81 0 1 0
## 727 161 0 1 0
## 728 501 0 0 1
## 729 656 0 0 1
## 730 379 NA NA NA
## 731 685 0 0 1
## 732 211 0 0 1
## 733 286 0 1 0
## 734 155 0 1 0
## 735 731 0 0 1
## 736 30 0 0 1
## 737 494 0 0 1
## 738 392 0 0 1
## 739 705 0 0 1
## 740 379 0 1 0
## 741 420 0 1 0
## 742 691 0 0 1
## 743 856 NA NA NA
## 744 882 0 0 1
## 745 665 0 0 1
## 746 678 0 0 1
## 747 559 0 0 1
## 748 360 0 1 0
## 749 895 0 1 0
## 750 21 0 1 0
## 751 818 0 1 0
## 752 34 0 1 0
## 753 364 1 0 0
## 754 863 NA NA NA
## 755 764 0 0 1
## 756 161 0 1 0
## 757 729 0 1 0
## 758 685 0 1 0
## 759 662 0 1 0
## 760 888 0 1 0
## 761 721 NA NA NA
## 762 382 0 1 0
## 763 830 0 1 0
## 764 638 0 0 1
## 765 615 NA NA NA
## 766 610 0 0 1
## 767 722 0 1 0
## 768 499 0 0 1
## 769 828 NA NA NA
## 770 632 0 0 1
## 771 595 0 1 0
## 772 707 NA NA NA
## 773 137 NA NA NA
## 774 9 0 0 1
## 775 650 0 0 1
## 776 535 0 0 1
## 777 1057 0 0 1
## 778 868 0 1 0
## 779 906 0 0 1
## 780 687 0 0 1
## 781 803 0 1 0
## 782 708 0 1 0
## 783 647 NA NA NA
## 784 622 0 1 0
## 785 641 NA NA NA
## 786 871 0 0 1
## 787 685 0 1 0
## 788 759 0 0 1
## 789 693 0 0 1
## 790 729 NA NA NA
## 791 296 0 1 0
## 792 148 0 0 1
## 793 729 0 0 1
## 794 376 1 0 0
## 795 776 0 0 1
## 796 976 0 0 1
## 797 708 0 1 0
## 798 692 0 0 1
## 799 679 0 0 1
## 800 799 0 0 1
## 801 829 0 0 1
## 802 650 NA NA NA
## 803 984 0 0 1
## 804 44 0 1 0
## 805 268 0 0 1
## 806 194 0 1 0
## 807 687 0 0 1
## 808 362 0 0 1
## 809 78 NA NA NA
## 810 833 0 1 0
## 811 823 0 1 0
## 812 121 0 0 1
## 813 25 0 1 0
## 814 813 0 0 1
## 815 12 0 0 1
## 816 695 0 0 1
## 817 662 NA NA NA
## 818 15 0 1 0
## 819 783 0 1 0
## 820 725 0 0 1
## 821 1091 0 0 1
## 822 35 0 1 0
## 823 824 0 0 1
## 824 684 1 0 0
## 825 845 1 0 0
## 826 744 1 0 0
## 827 64 0 0 1
## 828 706 NA NA NA
## 829 488 0 1 0
## 830 1010 0 0 1
## 831 784 0 0 1
## 832 139 0 1 0
## 833 649 0 0 1
## 834 21 0 0 1
## 835 675 NA NA NA
## 836 952 NA NA NA
## 837 719 NA NA NA
## 838 857 NA NA NA
## 839 701 NA NA NA
## 840 660 0 0 1
## 841 704 0 0 1
## 842 1006 0 0 1
## 843 762 0 1 0
## 844 996 NA NA NA
## 845 778 NA NA NA
## 846 1069 0 1 0
## 847 683 NA NA NA
## 848 846 NA NA NA
## 849 1092 0 1 0
## 850 646 0 0 1
## 851 31 0 0 1
## 852 120 0 1 0
## 853 24 0 0 1
## 854 386 0 0 1
## 855 291 0 0 1
## 856 20 0 0 1
## 857 308 0 1 0
## 858 582 0 1 0
## 859 916 0 1 0
## 860 80 0 1 0
## 861 139 NA NA NA
## 862 642 0 1 0
## 863 656 0 1 0
## 864 795 0 0 1
## 865 917 0 1 0
## 866 442 0 1 0
## 867 983 0 0 1
## 868 135 0 1 0
## 869 1005 0 0 1
## 870 24 0 1 0
## 871 502 0 1 0
## 872 720 0 1 0
## 873 870 0 0 1
## 874 748 0 0 1
## 875 122 0 1 0
## 876 91 0 1 0
## 877 1038 0 0 1
## 878 687 NA NA NA
## 879 776 NA NA NA
## 880 337 NA NA NA
## 881 871 0 0 1
## 882 976 0 0 1
## 883 1065 0 0 1
## 884 1011 0 0 1
## 885 179 0 1 0
## 886 452 0 0 1
## 887 1014 0 0 1
## 888 797 0 0 1
## 889 789 0 0 1
## 890 703 0 0 1
## 891 924 0 1 0
## 892 21 0 1 0
## 893 792 0 0 1
## 894 1085 0 0 1
## 895 805 0 0 1
## 896 468 0 0 1
## 897 276 0 1 0
## 898 887 0 0 1
## 899 198 0 0 1
## 900 14 0 1 0
## 901 705 0 0 1
## 902 694 0 0 1
## 903 880 0 0 1
## 904 708 0 0 1
## 905 16 0 1 0
## 906 626 0 1 0
## 907 19 0 0 1
## 908 118 0 1 0
## 909 1012 0 0 1
## 910 163 0 0 1
## 911 691 0 0 1
## 912 457 0 0 1
## 913 1059 0 0 1
## 914 1049 0 0 1
## 915 916 0 1 0
## 916 1066 0 0 1
## 917 272 0 1 0
## 918 734 0 1 0
## 919 312 0 0 1
## 920 19 0 1 0
## 921 818 0 0 1
## 922 107 0 1 0
## 923 683 0 0 1
## 924 882 0 1 0
## 925 665 0 0 1
## 926 910 0 1 0
## 927 615 0 0 1
## 928 21 0 0 1
## 929 739 0 1 0
## 930 736 0 1 0
## 931 241 0 1 0
## 932 712 0 0 1
## 933 91 0 0 1
## 934 706 NA NA NA
## 935 20 0 1 0
## 936 683 0 0 1
## 937 517 0 0 1
## 938 601 0 0 1
## 939 656 NA NA NA
## 940 687 NA NA NA
## 941 754 NA NA NA
## 942 32 0 0 1
## 943 722 0 1 0
## 944 61 0 0 1
## 945 656 0 1 0
## 946 43 0 1 0
## 947 368 0 0 1
## 948 534 0 1 0
## 949 854 0 1 0
## 950 728 0 0 1
## 951 682 0 0 1
## 952 15 0 1 0
## 953 60 0 1 0
## 954 694 0 0 1
## 955 696 0 1 0
## 956 671 0 1 0
## 957 137 0 1 0
## 958 1032 0 0 1
## 959 859 0 1 0
## 960 846 0 1 0
## 961 963 0 1 0
## 962 732 0 1 0
## 963 690 0 1 0
## 964 698 NA NA NA
## 965 803 0 0 1
## 966 701 NA NA NA
## 967 724 NA NA NA
## 968 712 NA NA NA
## 969 652 NA NA NA
## 970 882 0 1 0
## 971 25 0 1 0
## 972 219 0 1 0
## 973 30 0 0 1
## 974 244 0 1 0
## 975 695 NA NA NA
## 976 174 0 1 0
## 977 822 0 1 0
## 978 214 0 1 0
## 979 1020 0 1 0
## 980 396 0 1 0
## 981 1031 1 0 0
## 982 16 0 1 0
## 983 123 0 1 0
## 984 883 0 0 1
## 985 260 0 0 1
## 986 675 0 1 0
## 987 457 0 0 1
## 988 958 0 0 1
## 989 966 0 1 0
## 990 167 0 0 1
## 991 865 0 1 0
## 992 765 0 0 1
## 993 370 0 0 1
## 994 726 0 0 1
## 995 367 0 1 0
## 996 713 0 1 0
## 997 749 0 0 1
## 998 352 0 1 0
## 999 572 0 1 0
## 1000 798 0 1 0
## 1001 893 0 1 0
## 1002 748 0 0 1
## 1003 22 0 1 0
## 1004 20 0 1 0
## 1005 28 0 1 0
## 1006 40 0 1 0
## 1007 22 0 1 0
## 1008 186 0 1 0
## 1009 401 0 1 0
## 1010 48 0 1 0
## 1011 19 0 1 0
## 1012 349 0 1 0
## 1013 83 0 1 0
## 1014 21 0 1 0
## 1015 313 0 1 0
## 1016 148 0 1 0
## 1017 490 0 1 0
## 1018 699 0 0 1
## 1019 104 0 1 0
## 1020 20 0 1 0
## 1021 266 0 0 1
## 1022 656 0 1 0
## 1023 671 0 0 1
## 1024 495 0 0 1
## 1025 275 0 0 1
## 1026 686 NA NA NA
## 1027 29 0 1 0
## 1028 684 NA NA NA
## 1029 668 NA NA NA
## 1030 39 0 1 0
## 1031 15 0 1 0
## 1032 23 0 1 0
## 1033 999 0 1 0
## 1034 682 0 1 0
## 1035 936 0 0 1
## 1036 266 0 0 1
## 1037 730 0 0 1
## 1038 13 0 0 1
## 1039 221 0 1 0
## 1040 991 0 1 0
## 1041 947 0 0 1
## 1042 32 0 1 0
## 1043 447 0 1 0
## 1044 464 0 1 0
## 1045 319 NA NA NA
## 1046 391 0 0 1
## 1047 817 0 0 1
## 1048 717 0 1 0
## 1049 378 0 1 0
## 1050 433 NA NA NA
## 1051 141 NA NA NA
## 1052 292 NA NA NA
## 1053 695 NA NA NA
## 1054 215 NA NA NA
## 1055 767 0 0 1
## 1056 646 0 0 1
## 1057 125 0 1 0
## 1058 690 0 0 1
## 1059 658 NA NA NA
## 1060 717 1 0 0
## 1061 672 0 0 1
## 1062 703 0 0 1
## 1063 894 0 0 1
## 1064 737 0 0 1
## 1065 918 0 0 1
## 1066 661 1 0 0
## 1067 946 0 0 1
## 1068 662 1 0 0
## 1069 506 0 1 0
## 1070 875 0 0 1
## 1071 27 0 1 0
## 1072 79 0 1 0
## 1073 702 0 0 1
## 1074 683 0 0 1
## 1075 9 0 1 0
## 1076 110 0 1 0
## 1077 160 0 0 1
## 1078 662 1 0 0
## 1079 668 1 0 0
## 1080 748 0 0 1
## 1081 714 1 0 0
## 1082 78 0 1 0
## 1083 73 0 0 1
## 1084 48 0 1 0
## 1085 667 0 0 1
## 1086 903 0 0 1
## 1087 938 0 0 1
## 1088 398 NA NA NA
## 1089 176 0 1 0
## 1090 690 0 1 0
## 1091 753 0 1 0
## 1092 27 0 1 0
## 1093 914 0 0 1
## 1094 71 0 1 0
## 1095 881 0 0 1
## 1096 116 0 0 1
## 1097 91 0 0 1
## 1098 705 NA NA NA
## 1099 885 NA NA NA
## 1100 685 NA NA NA
## 1101 7 0 1 0
## 1102 670 0 0 1
## 1103 367 0 1 0
## 1104 711 0 0 1
## 1105 890 NA NA NA
## 1106 162 0 0 1
## 1107 810 NA NA NA
## 1108 749 NA NA NA
## 1109 672 NA NA NA
## 1110 872 NA NA NA
## 1111 425 0 1 0
## 1112 924 NA NA NA
## 1113 851 NA NA NA
## 1114 747 NA NA NA
## 1115 901 0 1 0
## 1116 6 0 1 0
## 1117 704 0 1 0
## 1118 891 0 1 0
## 1119 198 0 0 1
## 1120 26 0 1 0
## 1121 41 0 1 0
## 1122 31 0 1 0
## 1123 74 0 0 1
## 1124 740 NA NA NA
## 1125 317 0 0 1
## 1126 32 0 1 0
## 1127 17 0 1 0
## 1128 290 0 1 0
## 1129 33 0 1 0
## 1130 118 0 1 0
## 1131 678 0 1 0
## 1132 68 0 1 0
## 1133 718 NA NA NA
## 1134 25 0 1 0
## 1135 58 0 1 0
## 1136 745 NA NA NA
## 1137 684 NA NA NA
## 1138 717 NA NA NA
## 1139 820 0 1 0
## 1140 884 0 0 1
## 1141 223 0 0 1
## 1142 616 0 0 1
## 1143 110 0 1 0
## 1144 728 0 1 0
## 1145 785 0 0 1
## 1146 854 0 0 1
## 1147 784 0 1 0
## 1148 517 0 0 1
## 1149 20 0 0 1
## 1150 541 0 0 1
## 1151 30 0 0 1
## 1152 705 0 0 1
## 1153 14 0 0 1
## 1154 881 0 1 0
## 1155 320 0 0 1
## 1156 114 0 1 0
## 1157 723 0 1 0
## 1158 718 1 0 0
## 1159 879 0 0 1
## 1160 709 0 0 1
## 1161 64 0 1 0
## 1162 653 0 0 1
## 1163 365 0 0 1
## 1164 568 NA NA NA
## 1165 136 0 1 0
## 1166 535 0 1 0
## 1167 14 0 1 0
## 1168 730 0 1 0
## 1169 128 0 1 0
## 1170 49 0 1 0
## 1171 596 0 1 0
## 1172 158 0 1 0
## 1173 106 0 1 0
## 1174 684 0 0 1
## 1175 706 0 0 1
## 1176 672 0 0 1
## 1177 61 0 1 0
## 1178 762 0 0 1
## 1179 708 1 0 0
## 1180 518 0 1 0
## 1181 538 0 1 0
## 1182 540 0 1 0
## 1183 506 0 1 0
## 1184 459 0 1 0
## 1185 882 0 0 1
## 1186 860 0 1 0
## 1187 879 0 1 0
## 1188 119 0 0 1
## 1189 152 0 1 0
## 1190 729 0 1 0
## 1191 335 0 0 1
## 1192 853 0 0 1
## 1193 784 0 0 1
## 1194 808 0 1 0
## 1195 848 1 0 0
## 1196 872 1 0 0
## 1197 874 1 0 0
## 1198 714 0 1 0
## 1199 615 0 1 0
## 1200 863 0 1 0
## 1201 806 1 0 0
## 1202 18 0 1 0
## 1203 830 0 0 1
## 1204 543 0 1 0
## 1205 364 NA NA NA
## 1206 128 0 1 0
## 1207 178 0 1 0
## 1208 277 0 1 0
## 1209 751 0 1 0
## 1210 13 0 1 0
## 1211 19 0 1 0
## 1212 104 0 1 0
## 1213 693 0 1 0
## 1214 822 0 0 1
## 1215 584 0 0 1
## 1216 318 0 0 1
## 1217 829 0 0 1
## 1218 728 0 0 1
## 1219 306 0 0 1
## 1220 365 0 0 1
## 1221 241 0 0 1
## 1222 762 0 0 1
## 1223 19 0 1 0
## 1224 776 0 0 1
## 1225 458 0 0 1
## 1226 33 0 0 1
## 1227 77 0 1 0
## 1228 572 0 0 1
## 1229 139 0 0 1
## 1230 829 0 0 1
## 1231 523 0 1 0
## 1232 48 0 0 1
## 1233 825 0 0 1
## 1234 662 0 0 1
## 1235 667 0 0 1
## 1236 365 0 0 1
## 1237 670 0 1 0
## 1238 677 0 0 1
## 1239 590 NA NA NA
## 1240 412 0 1 0
## 1241 698 1 0 0
## 1242 754 0 0 1
## 1243 21 0 1 0
## 1244 685 0 1 0
## 1245 185 0 0 1
## 1246 708 0 0 1
## 1247 198 0 1 0
## 1248 487 0 1 0
## 1249 689 0 1 0
## 1250 610 0 1 0
## 1251 736 0 0 1
## 1252 702 0 1 0
## 1253 658 0 1 0
## 1254 791 0 0 1
## 1255 705 NA NA NA
## 1256 256 NA NA NA
## 1257 334 0 0 1
## 1258 648 NA NA NA
## 1259 710 0 1 0
## 1260 353 0 0 1
## 1261 660 NA NA NA
## 1262 805 0 0 1
## 1263 404 NA NA NA
## 1264 335 0 1 0
## 1265 60 NA NA NA
## 1266 768 0 0 1
## 1267 56 0 0 1
## 1268 23 0 1 0
## 1269 31 0 0 1
## 1270 777 0 0 1
## 1271 609 0 1 0
## 1272 296 0 0 1
## 1273 745 0 0 1
## 1274 117 0 1 0
## 1275 743 0 0 1
## 1276 636 0 0 1
## 1277 66 0 1 0
## 1278 33 0 1 0
## 1279 644 0 0 1
## 1280 656 0 1 0
## 1281 44 0 0 1
## 1282 732 0 0 1
## 1283 625 0 0 1
## 1284 730 0 1 0
## 1285 642 0 0 1
## 1286 717 0 0 1
## 1287 670 0 0 1
## 1288 692 0 0 1
## 1289 225 0 0 1
## 1290 111 0 0 1
## 1291 659 0 0 1
## 1292 49 0 1 0
## 1293 398 0 0 1
## 1294 124 0 0 1
## 1295 103 0 1 0
## 1296 40 0 1 0
## 1297 7 0 1 0
## 1298 700 0 1 0
## 1299 730 0 1 0
## 1300 779 0 0 1
## 1301 6 0 1 0
## 1302 640 0 1 0
## 1303 512 0 1 0
## 1304 734 0 1 0
## 1305 787 0 0 1
## 1306 723 0 0 1
## 1307 685 0 0 1
## 1308 305 0 0 1
## 1309 739 0 0 1
## 1310 725 0 1 0
## 1311 122 0 1 0
## 1312 518 0 1 0
## 1313 754 0 0 1
## 1314 19 0 0 1
## 1315 223 0 0 1
## 1316 648 0 0 1
## 1317 701 0 0 1
## 1318 769 0 0 1
## 1319 672 0 0 1
## 1320 720 0 0 1
## 1321 44 0 0 1
## 1322 23 0 0 1
## 1323 729 0 1 0
## 1324 26 0 0 1
## 1325 157 0 1 0
## 1326 755 0 0 1
## 1327 672 0 1 0
## 1328 19 0 1 0
## 1329 671 0 1 0
## 1330 693 0 0 1
## 1331 327 0 0 1
## 1332 669 0 1 0
## 1333 726 0 1 0
## 1334 715 0 1 0
## 1335 735 0 1 0
## 1336 714 0 0 1
## 1337 685 0 1 0
## 1338 641 0 1 0
## 1339 704 0 1 0
## 1340 647 1 0 0
## 1341 736 0 0 1
## 1342 742 0 0 1
## 1343 707 0 1 0
## 1344 92 0 1 0
## 1345 381 0 1 0
## 1346 709 0 0 1
## 1347 729 0 1 0
## 1348 238 0 1 0
## 1349 737 0 1 0
## 1350 730 0 1 0
## 1351 238 0 1 0
## 1352 117 0 0 1
## 1353 400 0 0 1
## 1354 718 0 0 1
## 1355 700 0 1 0
## 1356 56 0 1 0
## 1357 685 0 1 0
## 1358 713 0 1 0
## 1359 139 0 1 0
## 1360 739 0 0 1
## 1361 738 0 1 0
## 1362 19 0 1 0
## 1363 123 0 1 0
## 1364 333 0 1 0
## 1365 732 0 1 0
## 1366 90 0 1 0
## 1367 99 0 1 0
## 1368 658 0 1 0
## 1369 366 0 1 0
## 1370 273 0 1 0
## 1371 201 0 1 0
## 1372 626 0 0 1
## 1373 54 0 0 1
## 1374 476 0 0 1
## 1375 742 0 1 0
## 1376 12 0 1 0
## 1377 385 0 0 1
## 1378 717 0 1 0
## 1379 157 0 1 0
## 1380 711 1 0 0
## 1381 391 0 0 1
## 1382 705 0 1 0
## 1383 255 0 1 0
## 1384 641 0 1 0
## 1385 371 0 1 0
## 1386 718 0 0 1
## 1387 735 0 1 0
## 1388 730 0 1 0
## 1389 649 0 0 1
## 1390 125 0 1 0
## 1391 138 0 1 0
## 1392 31 0 1 0
## 1393 714 0 0 1
## 1394 636 0 0 1
## 1395 29 0 1 0
## 1396 707 0 0 1
## 1397 691 0 0 1
## 1398 132 0 1 0
## 1399 326 0 1 0
## 1400 640 0 1 0
## 1401 27 0 1 0
## 1402 705 0 1 0
## 1403 702 0 1 0
## 1404 112 0 0 1
## 1405 19 0 0 1
## 1406 690 0 0 1
## 1407 249 0 0 1
## 1408 702 0 0 1
## 1409 646 0 0 1
## 1410 698 0 1 0
## 1411 683 1 0 0
## 1412 722 0 0 1
## 1413 683 0 0 1
## 1414 675 0 0 1
## 1415 708 0 0 1
## 1416 336 0 1 0
## 1417 19 0 1 0
## 1418 363 0 0 1
## 1419 704 0 1 0
## 1420 650 0 1 0
## 1421 461 0 0 1
## 1422 609 0 1 0
## 1423 571 0 1 0
## 1424 25 0 0 1
## 1425 681 1 0 0
## 1426 91 0 0 1
## 1427 705 0 0 1
## 1428 68 0 0 1
## 1429 38 0 1 0
## 1430 10 0 1 0
## 1431 46 0 0 1
## 1432 650 0 0 1
## 1433 685 0 0 1
## 1434 655 0 0 1
## 1435 713 0 1 0
## 1436 349 0 0 1
## 1437 231 0 1 0
## 1438 44 0 0 1
## 1439 672 1 0 0
## 1440 307 0 0 1
## 1441 610 0 1 0
## 1442 321 0 1 0
## 1443 538 0 1 0
## 1444 549 0 1 0
## 1445 7 0 0 1
## 1446 545 0 1 0
## 1447 267 0 1 0
## 1448 5 0 0 1
## 1449 8 0 0 1
## 1450 103 0 0 1
## 1451 690 0 0 1
## 1452 662 0 0 1
## 1453 676 1 0 0
## 1454 131 0 0 1
## 1455 670 0 0 1
## 1456 61 0 1 0
## 1457 34 0 1 0
## 1458 68 0 0 1
## 1459 92 0 0 1
## 1460 18 0 0 1
## 1461 507 0 0 1
## 1462 12 0 0 1
## 1463 256 0 0 1
## 1464 272 0 0 1
## 1465 39 0 1 0
## 1466 185 0 0 1
## 1467 489 0 0 1
## 1468 534 0 0 1
## 1469 661 0 0 1
## 1470 128 0 1 0
## 1471 272 0 0 1
## 1472 219 0 0 1
## 1473 641 0 0 1
## 1474 82 0 0 1
## 1475 58 0 0 1
## 1476 17 0 0 1
## 1477 320 0 1 0
## 1478 22 0 1 0
## 1479 284 0 1 0
## 1480 436 0 0 1
## 1481 605 0 0 1
## 1482 365 0 0 1
## 1483 633 0 0 1
## 1484 114 0 1 0
## 1485 289 0 0 1
## 1486 436 0 0 1
## 1487 366 0 1 0
## 1488 8 0 0 1
## 1489 481 0 0 1
## 1490 26 0 0 1
## 1491 19 0 0 1
## 1492 21 0 0 1
## 1493 82 0 0 1
## 1494 26 0 0 1
## 1495 579 0 0 1
## 1496 598 1 0 0
## 1497 490 0 0 1
## 1498 557 0 0 1
## 1499 527 0 0 1
## 1500 18 0 0 1
## 1501 35 0 0 1
## 1502 11 0 0 1
## 1503 12 0 0 1
## 1504 397 0 0 1
## 1505 44 0 1 0
## 1506 9 0 0 1
## 1507 18 0 0 1
## 1508 30 0 1 0
## 1509 349 0 0 1
## 1510 551 0 0 1
## 1511 26 0 1 0
## 1512 44 0 1 0
## 1513 154 0 0 1
## 1514 561 0 1 0
## 1515 319 0 1 0
## 1516 387 0 1 0
## 1517 31 0 1 0
## 1518 50 0 1 0
## 1519 420 0 1 0
## 1520 266 0 1 0
## 1521 562 0 0 1
## 1522 275 0 1 0
## 1523 24 0 1 0
## 1524 18 0 1 0
## 1525 193 0 1 0
## 1526 365 0 1 0
## 1527 32 0 1 0
## 1528 309 0 1 0
## 1529 363 0 1 0
## 1530 12 0 1 0
## 1531 483 0 0 1
## 1532 339 0 1 0
## 1533 542 0 1 0
## 1534 391 0 1 0
## 1535 11 0 1 0
## 1536 47 0 1 0
## 1537 27 0 1 0
## 1538 151 0 0 1
## 1539 319 0 1 0
## 1540 476 0 0 1
## 1541 225 0 1 0
## 1542 48 0 0 1
## 1543 218 0 0 1
## 1544 113 0 0 1
## 1545 394 0 1 0
## 1546 415 1 0 0
## 1547 231 0 1 0
## 1548 330 0 1 0
## 1549 283 0 0 1
## 1550 84 0 1 0
## 1551 453 0 0 1
## 1552 245 0 0 1
## 1553 12 0 1 0
## 1554 58 0 1 0
## 1555 52 0 0 1
## 1556 82 0 1 0
## 1557 413 0 1 0
## 1558 95 0 1 0
## 1559 110 0 1 0
## 1560 396 0 1 0
## 1561 23 0 0 1
## 1562 172 0 0 1
## 1563 48 0 0 1
## 1564 119 0 1 0
## 1565 17 0 0 1
## 1566 368 0 1 0
## 1567 322 0 0 1
## 1568 25 0 0 1
## 1569 30 0 0 1
## 1570 52 0 0 1
## 1571 115 0 0 1
## 1572 370 0 0 1
## 1573 43 0 0 1
## 1574 318 0 0 1
## 1575 36 0 0 1
## 1576 168 0 1 0
## 1577 354 0 0 1
## 1578 381 0 1 0
## 1579 20 0 1 0
## 1580 24 0 0 1
## 1581 306 0 1 0
## 1582 310 0 1 0
## 1583 34 0 0 1
## 1584 239 0 1 0
## 1585 351 0 1 0
## 1586 259 0 1 0
## 1587 372 0 1 0
## 1588 263 0 0 1
## 1589 28 0 1 0
## 1590 36 0 1 0
## 1591 180 0 1 0
## 1592 31 0 1 0
## 1593 22 0 1 0
## 1594 27 0 1 0
## 1595 351 0 0 1
## 1596 250 0 1 0
## 1597 131 0 1 0
## 1598 130 0 1 0
## 1599 61 0 1 0
## 1600 34 0 1 0
## 1601 89 NA NA NA
## 1602 10 0 0 1
## 1603 35 0 0 1
## 1604 97 0 1 0
## 1605 26 0 1 0
## 1606 6 0 0 1
## 1607 40 0 1 0
## 1608 188 0 0 1
## 1609 17 0 0 1
## 1610 75 0 0 1
## 1611 40 0 0 1
## 1612 227 0 0 1
## 1613 51 0 1 0
## 1614 19 0 1 0
## 1615 21 0 0 1
## 1616 243 0 0 1
## 1617 25 0 0 1
## 1618 16 0 0 1
## 1619 38 0 0 1
## 1620 31 0 0 1
## 1621 8 0 0 1
## 1622 272 0 0 1
## 1623 167 0 1 0
## 1624 16 0 1 0
## 1625 34 0 1 0
## 1626 127 0 0 1
## 1627 145 0 0 1
## 1628 192 0 0 1
## 1629 31 0 0 1
## 1630 33 0 0 1
## 1631 125 0 0 1
## 1632 67 0 1 0
## 1633 242 0 0 1
## 1634 61 0 0 1
## 1635 213 0 0 1
## 1636 282 0 1 0
## 1637 208 0 0 1
## 1638 62 0 1 0
## 1639 17 0 0 1
## 1640 46 0 0 1
## 1641 107 0 1 0
## 1642 112 0 0 1
## 1643 96 0 0 1
## 1644 66 0 1 0
## 1645 14 0 0 1
## 1646 18 0 0 1
## 1647 19 0 1 0
## 1648 256 0 0 1
## 1649 105 0 0 1
## 1650 206 0 0 1
## 1651 24 0 0 1
## 1652 28 0 0 1
## 1653 40 0 1 0
## 1654 71 0 0 1
## 1655 27 0 0 1
## 1656 11 0 0 1
## 1657 184 0 1 0
## 1658 16 0 1 0
## 1659 102 0 0 1
## 1660 9 0 0 1
## 1661 96 0 1 0
## 1662 20 0 1 0
## 1663 24 0 1 0
## 1664 30 0 0 1
## 1665 182 0 0 1
## 1666 138 0 0 1
## 1667 54 0 0 1
## 1668 18 0 1 0
## 1669 12 0 1 0
## 1670 22 0 1 0
## 1671 45 0 0 1
## 1672 20 0 0 1
## 1673 63 0 1 0
## 1674 164 0 0 1
## 1675 20 0 0 1
## 1676 82 0 1 0
## 1677 37 0 0 1
## 1678 14 0 0 1
## 1679 12 0 0 1
## 1680 12 0 0 1
## 1681 128 0 0 1
## 1682 126 0 1 0
## 1683 17 0 1 0
## 1684 118 0 1 0
## 1685 48 0 0 1
## 1686 14 0 0 1
## 1687 90 0 1 0
## 1688 64 0 0 1
## 1689 17 0 1 0
## 1690 14 0 0 1
## 1691 89 0 1 0
## 1692 21 0 0 1
## 1693 57 0 0 1
## 1694 47 0 1 0
## 1695 85 0 1 0
## 1696 73 0 0 1
## 1697 56 0 1 0
## 1698 26 0 0 1
## 1699 61 0 0 1
## 1700 32 0 1 0
## 1701 57 0 0 1
## 1702 75 0 0 1
## 1703 94 0 1 0
## 1704 34 0 1 0
## 1705 8 0 0 1
## 1706 36 0 1 0
## 1707 32 0 1 0
## 1708 41 0 1 0
## 1709 51 0 1 0
## 1710 11 0 0 1
## 1711 21 0 1 0
## 1712 10 0 1 0
## 1713 25 0 1 0
## 1714 21 0 1 0
## 1715 8 0 0 1
## 1716 17 0 1 0
## 1717 12 0 1 0
## 1718 12 0 1 0
## 1719 44 0 0 1
## 1720 36 0 1 0
## 1721 13 0 1 0
## 1722 12 0 1 0
## 1723 14 0 0 1
## 1724 18 0 0 1
## 1725 21 0 1 0
## bookings_since_2019 Price
## 1 18 179
## 2 8 82
## 3 38 82
## 4 10 52
## 5 6 40
## 6 34 72
## 7 4 49
## 8 4 59
## 9 48 48
## 10 30 69
## 11 42 66
## 12 52 83
## 13 2 119
## 14 10 250
## 15 2 69
## 16 6 40
## 17 6 300
## 18 8 150
## 19 2 150
## 20 106 120
## 21 298 200
## 22 14 400
## 23 26 290
## 24 20 284
## 25 20 109
## 26 2 59
## 27 6 79
## 28 74 63
## 29 44 63
## 30 20 260
## 31 4 119
## 32 192 139
## 33 20 50
## 34 50 104
## 35 2 110
## 36 40 80
## 37 22 65
## 38 4 88
## 39 4 110
## 40 2 37
## 41 26 98
## 42 4 69
## 43 6 146
## 44 10 82
## 45 28 63
## 46 38 85
## 47 2 88
## 48 20 350
## 49 20 28
## 50 12 28
## 51 2 89
## 52 124 130
## 53 40 260
## 54 42 84
## 55 92 64
## 56 124 64
## 57 8 101
## 58 84 179
## 59 2 106
## 60 8 320
## 61 182 196
## 62 10 76
## 63 326 180
## 64 52 67
## 65 12 90
## 66 34 90
## 67 12 128
## 68 12 88
## 69 42 65
## 70 30 64
## 71 36 64
## 72 90 99
## 73 20 410
## 74 48 40
## 75 14 90
## 76 4 45
## 77 82 90
## 78 2 98
## 79 136 163
## 80 14 200
## 81 54 64
## 82 8 61
## 83 36 130
## 84 14 149
## 85 48 64
## 86 14 149
## 87 8 70
## 88 200 86
## 89 138 96
## 90 182 84
## 91 2 228
## 92 8 200
## 93 12 112
## 94 120 129
## 95 90 99
## 96 22 56
## 97 12 40
## 98 18 46
## 99 8 82
## 100 66 70
## 101 76 70
## 102 88 60
## 103 24 45
## 104 80 168
## 105 90 98
## 106 72 80
## 107 70 70
## 108 32 80
## 109 22 64
## 110 44 80
## 111 28 83
## 112 16 72
## 113 22 74
## 114 24 128
## 115 2 108
## 116 2 66
## 117 26 98
## 118 6 180
## 119 30 75
## 120 24 94
## 121 98 62
## 122 46 83
## 123 32 130
## 124 28 74
## 125 16 68
## 126 46 364
## 127 20 40
## 128 4 135
## 129 28 80
## 130 2 100
## 131 46 90
## 132 10 76
## 133 6 88
## 134 22 130
## 135 26 100
## 136 24 90
## 137 4 233
## 138 12 150
## 139 20 75
## 140 4 59
## 141 46 77
## 142 16 73
## 143 34 84
## 144 28 70
## 145 12 75
## 146 18 140
## 147 6 59
## 148 8 66
## 149 12 58
## 150 48 130
## 151 2 75
## 152 12 90
## 153 2 88
## 154 68 70
## 155 6 80
## 156 4 188
## 157 30 89
## 158 10 57
## 159 2 55
## 160 4 584
## 161 14 74
## 162 22 74
## 163 20 74
## 164 42 130
## 165 2 88
## 166 6 56
## 167 16 200
## 168 220 168
## 169 4 400
## 170 6 130
## 171 2 130
## 172 2 90
## 173 6 100
## 174 2 100
## 175 2 100
## 176 8 100
## 177 12 100
## 178 64 45
## 179 48 28
## 180 24 33
## 181 2 89
## 182 20 30
## 183 72 180
## 184 18 130
## 185 28 80
## 186 288 305
## 187 74 64
## 188 34 64
## 189 10 74
## 190 4 33
## 191 48 28
## 192 4 36
## 193 6 30
## 194 24 400
## 195 4 250
## 196 6 31
## 197 6 36
## 198 20 31
## 199 14 36
## 200 6 211
## 201 12 461
## 202 32 85
## 203 2 441
## 204 24 93
## 205 14 51
## 206 4 103
## 207 4 79
## 208 4 80
## 209 30 105
## 210 8 125
## 211 4 145
## 212 10 165
## 213 6 165
## 214 6 300
## 215 4 50
## 216 52 50
## 217 8 106
## 218 110 48
## 219 106 88
## 220 4 41
## 221 30 59
## 222 22 80
## 223 102 58
## 224 2 79
## 225 4 29
## 226 42 38
## 227 2 59
## 228 2 129
## 229 96 88
## 230 12 60
## 231 2 38
## 232 2 38
## 233 8 38
## 234 4 38
## 235 2 101
## 236 162 119
## 237 34 123
## 238 8 29
## 239 20 65
## 240 2 24
## 241 4 24
## 242 6 24
## 243 12 24
## 244 8 24
## 245 4 24
## 246 16 47
## 247 28 42
## 248 4 130
## 249 90 148
## 250 2 69
## 251 2 245
## 252 112 49
## 253 4 78
## 254 46 150
## 255 108 109
## 256 220 50
## 257 58 34
## 258 2 38
## 259 14 60
## 260 112 116
## 261 64 77
## 262 12 417
## 263 94 105
## 264 12 200
## 265 14 180
## 266 4 189
## 267 2 56
## 268 132 98
## 269 84 99
## 270 94 89
## 271 34 85
## 272 118 44
## 273 156 38
## 274 42 55
## 275 10 59
## 276 206 139
## 277 10 59
## 278 6 26
## 279 6 85
## 280 28 29
## 281 4 29
## 282 2 29
## 283 2 29
## 284 10 29
## 285 2 28
## 286 68 27
## 287 108 27
## 288 4 65
## 289 68 69
## 290 236 64
## 291 4 100
## 292 46 68
## 293 38 90
## 294 12 79
## 295 2 37
## 296 50 52
## 297 70 78
## 298 2 88
## 299 94 110
## 300 4 59
## 301 28 813
## 302 36 125
## 303 4 73
## 304 4 73
## 305 2 49
## 306 4 150
## 307 4 50
## 308 4 65
## 309 8 198
## 310 8 28
## 311 24 28
## 312 10 80
## 313 6 288
## 314 42 65
## 315 2 54
## 316 20 119
## 317 70 72
## 318 12 80
## 319 4 42
## 320 6 120
## 321 2 65
## 322 62 68
## 323 32 168
## 324 4 136
## 325 2 20
## 326 16 120
## 327 2 140
## 328 8 85
## 329 2 59
## 330 2 180
## 331 10 278
## 332 22 102
## 333 126 157
## 334 60 83
## 335 6 24
## 336 6 60
## 337 26 30
## 338 72 30
## 339 4 89
## 340 2 46
## 341 8 88
## 342 4 88
## 343 18 83
## 344 2 50
## 345 2 154
## 346 12 83
## 347 28 115
## 348 28 115
## 349 40 149
## 350 12 299
## 351 66 190
## 352 6 68
## 353 2 39
## 354 12 65
## 355 6 59
## 356 30 209
## 357 4 210
## 358 30 129
## 359 12 200
## 360 2 243
## 361 74 80
## 362 6 337
## 363 4 65
## 364 4 38
## 365 158 123
## 366 236 142
## 367 4 256
## 368 6 49
## 369 80 50
## 370 8 394
## 371 16 364
## 372 2 355
## 373 2 311
## 374 8 89
## 375 16 72
## 376 16 69
## 377 10 78
## 378 10 83
## 379 12 89
## 380 14 106
## 381 18 229
## 382 2 279
## 383 22 70
## 384 34 214
## 385 2 200
## 386 8 100
## 387 8 130
## 388 4 24
## 389 6 47
## 390 4 225
## 391 80 50
## 392 32 50
## 393 54 50
## 394 42 60
## 395 24 72
## 396 6 130
## 397 18 78
## 398 82 88
## 399 38 90
## 400 32 90
## 401 152 42
## 402 2 40
## 403 34 52
## 404 2 27
## 405 4 27
## 406 64 57
## 407 110 159
## 408 6 137
## 409 12 141
## 410 6 127
## 411 4 127
## 412 14 105
## 413 24 70
## 414 10 276
## 415 16 126
## 416 184 80
## 417 52 219
## 418 18 27
## 419 20 90
## 420 2 560
## 421 2 37
## 422 4 50
## 423 6 50
## 424 6 45
## 425 2 245
## 426 20 38
## 427 10 100
## 428 12 106
## 429 2 49
## 430 32 123
## 431 2 59
## 432 20 50
## 433 58 141
## 434 4 115
## 435 8 34
## 436 12 150
## 437 30 100
## 438 2 59
## 439 6 89
## 440 68 56
## 441 4 19
## 442 2 63
## 443 6 30
## 444 52 158
## 445 10 179
## 446 166 161
## 447 84 140
## 448 8 131
## 449 6 147
## 450 16 240
## 451 6 252
## 452 22 123
## 453 42 40
## 454 66 70
## 455 2 473
## 456 4 149
## 457 10 59
## 458 14 90
## 459 2 399
## 460 10 130
## 461 68 55
## 462 20 111
## 463 56 128
## 464 4 75
## 465 104 68
## 466 2 49
## 467 88 180
## 468 64 49
## 469 6 110
## 470 44 66
## 471 4 40
## 472 2 51
## 473 22 119
## 474 26 119
## 475 2 999
## 476 30 59
## 477 4 145
## 478 16 135
## 479 4 120
## 480 10 136
## 481 44 43
## 482 4 40
## 483 2 59
## 484 22 35
## 485 106 148
## 486 8 68
## 487 2 500
## 488 2 400
## 489 12 300
## 490 8 300
## 491 10 300
## 492 4 300
## 493 16 300
## 494 24 300
## 495 8 35
## 496 28 105
## 497 44 130
## 498 4 130
## 499 8 153
## 500 10 375
## 501 24 616
## 502 32 60
## 503 12 312
## 504 22 662
## 505 50 128
## 506 18 85
## 507 2 239
## 508 20 128
## 509 22 128
## 510 18 128
## 511 20 110
## 512 2 46
## 513 84 140
## 514 8 160
## 515 8 151
## 516 4 320
## 517 2 461
## 518 16 766
## 519 26 148
## 520 2 41
## 521 4 127
## 522 46 138
## 523 6 168
## 524 32 148
## 525 28 148
## 526 44 138
## 527 4 145
## 528 26 416
## 529 14 496
## 530 2 320
## 531 8 462
## 532 14 493
## 533 2 27
## 534 2 27
## 535 2 27
## 536 18 281
## 537 52 2500
## 538 28 90
## 539 10 81
## 540 6 69
## 541 14 100
## 542 50 90
## 543 2 37
## 544 6 63
## 545 2 49
## 546 10 69
## 547 2 61
## 548 4 126
## 549 6 473
## 550 66 65
## 551 2 50
## 552 94 48
## 553 266 155
## 554 8 99
## 555 2 46
## 556 10 155
## 557 16 155
## 558 24 155
## 559 44 157
## 560 14 155
## 561 18 155
## 562 20 50
## 563 82 259
## 564 6 60
## 565 8 141
## 566 2 150
## 567 8 126
## 568 10 85
## 569 12 90
## 570 24 140
## 571 118 60
## 572 4 138
## 573 352 198
## 574 36 207
## 575 22 324
## 576 12 232
## 577 76 223
## 578 2 1284
## 579 16 68
## 580 2 60
## 581 60 240
## 582 20 961
## 583 8 150
## 584 4 39
## 585 44 75
## 586 4 230
## 587 2 39
## 588 46 160
## 589 20 73
## 590 82 176
## 591 14 73
## 592 56 164
## 593 64 181
## 594 24 180
## 595 52 40
## 596 52 240
## 597 4 136
## 598 2 49
## 599 4 49
## 600 32 500
## 601 20 68
## 602 18 90
## 603 124 199
## 604 154 36
## 605 2 188
## 606 2 378
## 607 100 45
## 608 28 98
## 609 94 48
## 610 34 47
## 611 2 33
## 612 22 190
## 613 2 49
## 614 50 48
## 615 4 49
## 616 4 49
## 617 122 457
## 618 12 140
## 619 4 145
## 620 8 235
## 621 2 59
## 622 4 126
## 623 6 70
## 624 94 46
## 625 2 80
## 626 2 65
## 627 244 203
## 628 8 769
## 629 2 538
## 630 2 1356
## 631 14 73
## 632 40 38
## 633 56 65
## 634 8 883
## 635 10 155
## 636 4 195
## 637 80 46
## 638 4 431
## 639 10 530
## 640 6 39
## 641 64 61
## 642 2 50
## 643 54 60
## 644 74 120
## 645 2 100
## 646 34 135
## 647 4 164
## 648 2 64
## 649 8 82
## 650 14 126
## 651 6 364
## 652 30 75
## 653 160 366
## 654 16 55
## 655 10 144
## 656 2 420
## 657 16 319
## 658 24 215
## 659 96 140
## 660 8 90
## 661 178 65
## 662 2 140
## 663 76 200
## 664 42 342
## 665 6 110
## 666 18 170
## 667 4 173
## 668 4 170
## 669 6 146
## 670 4 146
## 671 2 96
## 672 12 96
## 673 6 96
## 674 4 96
## 675 34 96
## 676 24 96
## 677 4 96
## 678 2 253
## 679 4 253
## 680 2 253
## 681 2 75
## 682 20 74
## 683 20 260
## 684 4 85
## 685 14 138
## 686 12 942
## 687 28 357
## 688 2 220
## 689 2 205
## 690 106 328
## 691 46 143
## 692 2 88
## 693 2 60
## 694 4 64
## 695 4 214
## 696 10 29
## 697 56 61
## 698 86 49
## 699 110 39
## 700 120 43
## 701 2 235
## 702 2 485
## 703 2 69
## 704 2 69
## 705 62 115
## 706 270 97
## 707 28 407
## 708 206 89
## 709 26 180
## 710 2 185
## 711 72 255
## 712 178 69
## 713 4 145
## 714 38 145
## 715 6 145
## 716 6 145
## 717 4 145
## 718 14 145
## 719 84 130
## 720 8 130
## 721 4 130
## 722 2 130
## 723 8 125
## 724 4 55
## 725 48 55
## 726 14 200
## 727 32 220
## 728 10 59
## 729 42 64
## 730 6 613
## 731 30 64
## 732 166 60
## 733 154 90
## 734 10 168
## 735 2 59
## 736 68 43
## 737 6 100
## 738 6 100
## 739 60 64
## 740 8 180
## 741 16 90
## 742 124 80
## 743 4 169
## 744 2 43
## 745 64 99
## 746 4 30
## 747 2 80
## 748 26 190
## 749 2 378
## 750 10 260
## 751 4 150
## 752 398 147
## 753 22 85
## 754 18 147
## 755 2 55
## 756 12 90
## 757 10 432
## 758 38 220
## 759 114 328
## 760 2 314
## 761 16 150
## 762 10 168
## 763 4 345
## 764 248 45
## 765 18 205
## 766 2 46
## 767 34 328
## 768 2 38
## 769 52 179
## 770 18 38
## 771 84 109
## 772 16 365
## 773 8 400
## 774 46 78
## 775 10 82
## 776 102 70
## 777 2 39
## 778 6 630
## 779 2 119
## 780 4 148
## 781 2 110
## 782 46 171
## 783 50 147
## 784 4 213
## 785 36 183
## 786 2 59
## 787 38 190
## 788 8 64
## 789 70 64
## 790 10 320
## 791 34 185
## 792 60 51
## 793 6 80
## 794 100 48
## 795 8 80
## 796 4 80
## 797 10 130
## 798 52 90
## 799 2 41
## 800 2 50
## 801 18 92
## 802 80 57
## 803 4 180
## 804 40 145
## 805 70 62
## 806 166 170
## 807 56 141
## 808 14 86
## 809 30 336
## 810 2 198
## 811 4 144
## 812 178 159
## 813 152 350
## 814 4 69
## 815 42 65
## 816 2 55
## 817 38 22
## 818 132 137
## 819 2 80
## 820 22 287
## 821 4 95
## 822 2 120
## 823 2 105
## 824 16 54
## 825 2 50
## 826 4 56
## 827 118 40
## 828 58 221
## 829 6 141
## 830 2 189
## 831 8 35
## 832 14 154
## 833 6 89
## 834 84 80
## 835 12 22
## 836 2 22
## 837 4 22
## 838 8 22
## 839 4 25
## 840 2 49
## 841 2 149
## 842 4 49
## 843 8 213
## 844 4 443
## 845 2 260
## 846 2 179
## 847 30 260
## 848 2 1126
## 849 2 770
## 850 18 106
## 851 42 158
## 852 24 651
## 853 78 182
## 854 16 173
## 855 48 160
## 856 56 81
## 857 4 158
## 858 2 144
## 859 2 141
## 860 74 1015
## 861 24 208
## 862 6 165
## 863 10 280
## 864 2 49
## 865 2 131
## 866 14 137
## 867 2 39
## 868 76 314
## 869 2 49
## 870 4 189
## 871 12 179
## 872 2 144
## 873 2 130
## 874 12 66
## 875 2 122
## 876 2 124
## 877 2 50
## 878 16 555
## 879 2 729
## 880 14 376
## 881 2 79
## 882 6 100
## 883 2 59
## 884 2 69
## 885 26 120
## 886 4 39
## 887 2 59
## 888 2 46
## 889 2 55
## 890 50 70
## 891 6 307
## 892 208 143
## 893 2 59
## 894 2 36
## 895 4 49
## 896 2 39
## 897 14 72
## 898 4 55
## 899 4 59
## 900 54 148
## 901 40 90
## 902 2 45
## 903 4 90
## 904 26 75
## 905 114 90
## 906 2 140
## 907 120 65
## 908 46 88
## 909 4 64
## 910 58 100
## 911 26 100
## 912 2 59
## 913 2 88
## 914 2 48
## 915 4 244
## 916 2 134
## 917 4 157
## 918 2 460
## 919 4 170
## 920 30 115
## 921 32 90
## 922 434 344
## 923 50 98
## 924 2 679
## 925 62 90
## 926 2 100
## 927 14 140
## 928 8 65
## 929 10 610
## 930 6 471
## 931 18 90
## 932 36 60
## 933 8 40
## 934 40 257
## 935 132 480
## 936 42 50
## 937 60 56
## 938 22 70
## 939 12 270
## 940 22 356
## 941 14 320
## 942 26 92
## 943 4 185
## 944 12 118
## 945 16 328
## 946 54 160
## 947 4 69
## 948 4 138
## 949 4 151
## 950 2 51
## 951 62 40
## 952 6 151
## 953 8 124
## 954 30 50
## 955 16 357
## 956 6 118
## 957 10 109
## 958 2 47
## 959 2 200
## 960 16 204
## 961 2 191
## 962 94 150
## 963 82 290
## 964 20 273
## 965 2 78
## 966 16 211
## 967 22 239
## 968 24 216
## 969 282 66
## 970 2 151
## 971 14 86
## 972 2 137
## 973 8 37
## 974 2 140
## 975 26 145
## 976 8 151
## 977 4 124
## 978 4 150
## 979 2 695
## 980 6 120
## 981 2 55
## 982 4 286
## 983 10 96
## 984 2 69
## 985 2 69
## 986 4 146
## 987 4 69
## 988 2 49
## 989 6 120
## 990 4 41
## 991 4 470
## 992 4 41
## 993 90 128
## 994 4 41
## 995 24 146
## 996 6 789
## 997 2 59
## 998 62 150
## 999 26 143
## 1000 12 204
## 1001 2 644
## 1002 2 49
## 1003 136 234
## 1004 92 349
## 1005 90 331
## 1006 100 420
## 1007 106 135
## 1008 120 280
## 1009 98 280
## 1010 150 280
## 1011 114 457
## 1012 106 360
## 1013 114 250
## 1014 132 537
## 1015 114 420
## 1016 106 420
## 1017 50 160
## 1018 26 90
## 1019 8 124
## 1020 156 169
## 1021 20 150
## 1022 48 158
## 1023 16 50
## 1024 22 65
## 1025 66 78
## 1026 10 30
## 1027 130 134
## 1028 14 31
## 1029 140 29
## 1030 2 290
## 1031 136 143
## 1032 138 130
## 1033 2 139
## 1034 2 130
## 1035 4 59
## 1036 8 150
## 1037 14 45
## 1038 50 63
## 1039 70 220
## 1040 2 119
## 1041 2 69
## 1042 30 331
## 1043 4 189
## 1044 2 148
## 1045 56 180
## 1046 10 37
## 1047 2 180
## 1048 6 250
## 1049 60 136
## 1050 10 129
## 1051 34 122
## 1052 72 111
## 1053 24 120
## 1054 24 235
## 1055 4 59
## 1056 4 39
## 1057 26 215
## 1058 28 78
## 1059 94 29
## 1060 16 51
## 1061 24 199
## 1062 44 150
## 1063 2 114
## 1064 8 359
## 1065 2 180
## 1066 66 28
## 1067 2 49
## 1068 82 29
## 1069 42 205
## 1070 2 49
## 1071 2 101
## 1072 4 158
## 1073 24 88
## 1074 38 70
## 1075 90 165
## 1076 90 171
## 1077 4 60
## 1078 64 28
## 1079 28 25
## 1080 2 49
## 1081 24 49
## 1082 30 290
## 1083 8 59
## 1084 16 215
## 1085 38 65
## 1086 2 39
## 1087 2 30
## 1088 24 185
## 1089 4 88
## 1090 14 88
## 1091 2 160
## 1092 2 250
## 1093 2 39
## 1094 32 72
## 1095 2 59
## 1096 6 75
## 1097 4 50
## 1098 14 111
## 1099 6 106
## 1100 32 49
## 1101 98 142
## 1102 4 50
## 1103 2 350
## 1104 10 109
## 1105 2 37
## 1106 2 69
## 1107 8 30
## 1108 14 32
## 1109 2 36
## 1110 4 36
## 1111 22 681
## 1112 2 32
## 1113 2 33
## 1114 6 102
## 1115 2 164
## 1116 6 347
## 1117 4 612
## 1118 2 375
## 1119 4 59
## 1120 64 186
## 1121 92 173
## 1122 6 68
## 1123 134 60
## 1124 8 229
## 1125 28 115
## 1126 78 422
## 1127 92 391
## 1128 86 385
## 1129 106 385
## 1130 94 505
## 1131 86 519
## 1132 72 193
## 1133 30 150
## 1134 174 211
## 1135 66 249
## 1136 12 49
## 1137 12 94
## 1138 32 67
## 1139 2 620
## 1140 2 65
## 1141 18 59
## 1142 54 95
## 1143 2 465
## 1144 2 313
## 1145 6 85
## 1146 2 123
## 1147 2 610
## 1148 2 59
## 1149 42 27
## 1150 14 43
## 1151 66 49
## 1152 10 69
## 1153 6 63
## 1154 2 620
## 1155 44 60
## 1156 2 470
## 1157 6 83
## 1158 4 130
## 1159 2 69
## 1160 4 27
## 1161 22 178
## 1162 20 120
## 1163 32 102
## 1164 12 402
## 1165 6 260
## 1166 56 105
## 1167 32 118
## 1168 2 431
## 1169 6 96
## 1170 4 124
## 1171 6 96
## 1172 4 120
## 1173 2 122
## 1174 26 74
## 1175 8 64
## 1176 14 64
## 1177 26 173
## 1178 4 50
## 1179 8 150
## 1180 42 193
## 1181 12 179
## 1182 28 168
## 1183 28 189
## 1184 26 180
## 1185 2 40
## 1186 4 1000
## 1187 2 1000
## 1188 16 27
## 1189 2 475
## 1190 4 360
## 1191 12 63
## 1192 8 72
## 1193 4 69
## 1194 2 110
## 1195 2 48
## 1196 2 26
## 1197 2 26
## 1198 2 150
## 1199 4 213
## 1200 2 360
## 1201 4 56
## 1202 46 150
## 1203 2 244
## 1204 4 179
## 1205 6 110
## 1206 6 82
## 1207 2 94
## 1208 4 136
## 1209 2 147
## 1210 150 223
## 1211 354 199
## 1212 50 331
## 1213 2 120
## 1214 2 69
## 1215 2 60
## 1216 2 140
## 1217 2 140
## 1218 6 90
## 1219 4 90
## 1220 12 120
## 1221 36 209
## 1222 2 39
## 1223 22 135
## 1224 2 49
## 1225 4 59
## 1226 2 40
## 1227 22 122
## 1228 6 132
## 1229 112 171
## 1230 2 135
## 1231 2 115
## 1232 2 45
## 1233 2 203
## 1234 28 120
## 1235 26 98
## 1236 2 149
## 1237 14 72
## 1238 52 38
## 1239 46 96
## 1240 4 96
## 1241 2 144
## 1242 2 59
## 1243 46 153
## 1244 2 79
## 1245 2 69
## 1246 4 75
## 1247 4 117
## 1248 4 165
## 1249 8 90
## 1250 2 65
## 1251 2 100
## 1252 12 461
## 1253 8 688
## 1254 2 49
## 1255 2 149
## 1256 18 165
## 1257 6 49
## 1258 2 147
## 1259 6 545
## 1260 10 157
## 1261 6 217
## 1262 2 59
## 1263 10 163
## 1264 8 163
## 1265 4 261
## 1266 4 86
## 1267 10 89
## 1268 44 168
## 1269 6 61
## 1270 2 49
## 1271 6 205
## 1272 12 29
## 1273 4 65
## 1274 8 121
## 1275 4 119
## 1276 4 46
## 1277 4 81
## 1278 14 95
## 1279 20 25
## 1280 60 160
## 1281 26 108
## 1282 12 295
## 1283 4 49
## 1284 2 550
## 1285 2 49
## 1286 10 90
## 1287 2 49
## 1288 4 49
## 1289 6 60
## 1290 6 232
## 1291 6 150
## 1292 36 156
## 1293 2 39
## 1294 8 49
## 1295 6 179
## 1296 4 194
## 1297 112 258
## 1298 2 149
## 1299 6 180
## 1300 2 30
## 1301 6 200
## 1302 4 68
## 1303 22 189
## 1304 4 172
## 1305 2 80
## 1306 2 80
## 1307 2 64
## 1308 2 49
## 1309 2 200
## 1310 8 220
## 1311 4 157
## 1312 8 125
## 1313 2 35
## 1314 30 118
## 1315 4 40
## 1316 2 49
## 1317 8 118
## 1318 4 39
## 1319 4 59
## 1320 2 46
## 1321 48 68
## 1322 40 59
## 1323 2 238
## 1324 24 65
## 1325 16 185
## 1326 2 70
## 1327 4 150
## 1328 46 569
## 1329 10 198
## 1330 6 269
## 1331 4 59
## 1332 6 198
## 1333 2 248
## 1334 2 228
## 1335 2 268
## 1336 4 68
## 1337 12 268
## 1338 8 450
## 1339 4 200
## 1340 30 34
## 1341 2 269
## 1342 2 174
## 1343 2 198
## 1344 12 133
## 1345 8 149
## 1346 6 30
## 1347 2 303
## 1348 6 162
## 1349 2 198
## 1350 2 149
## 1351 2 179
## 1352 22 138
## 1353 2 134
## 1354 6 65
## 1355 2 256
## 1356 4 155
## 1357 4 155
## 1358 4 228
## 1359 8 144
## 1360 2 143
## 1361 2 248
## 1362 14 295
## 1363 10 138
## 1364 6 134
## 1365 2 154
## 1366 2 484
## 1367 30 121
## 1368 4 155
## 1369 12 154
## 1370 4 154
## 1371 12 155
## 1372 6 55
## 1373 2 40
## 1374 32 80
## 1375 2 229
## 1376 4 201
## 1377 50 63
## 1378 2 154
## 1379 40 125
## 1380 4 101
## 1381 60 59
## 1382 4 228
## 1383 4 198
## 1384 2 198
## 1385 24 244
## 1386 2 180
## 1387 2 198
## 1388 2 158
## 1389 4 159
## 1390 36 148
## 1391 36 148
## 1392 32 159
## 1393 4 163
## 1394 20 445
## 1395 24 155
## 1396 2 416
## 1397 6 269
## 1398 10 135
## 1399 2 51
## 1400 4 172
## 1401 2 228
## 1402 2 228
## 1403 2 610
## 1404 6 49
## 1405 42 75
## 1406 2 120
## 1407 2 572
## 1408 2 125
## 1409 8 643
## 1410 2 629
## 1411 12 34
## 1412 2 49
## 1413 2 49
## 1414 4 106
## 1415 2 39
## 1416 12 154
## 1417 124 200
## 1418 6 49
## 1419 2 198
## 1420 2 198
## 1421 4 246
## 1422 2 198
## 1423 2 198
## 1424 8 111
## 1425 4 221
## 1426 4 218
## 1427 4 140
## 1428 4 274
## 1429 86 307
## 1430 78 307
## 1431 16 27
## 1432 6 25
## 1433 2 155
## 1434 2 49
## 1435 2 520
## 1436 14 35
## 1437 2 190
## 1438 2 250
## 1439 8 27
## 1440 2 650
## 1441 2 89
## 1442 2 155
## 1443 10 190
## 1444 4 151
## 1445 4 82
## 1446 2 201
## 1447 2 150
## 1448 406 188
## 1449 240 198
## 1450 28 241
## 1451 2 392
## 1452 2 60
## 1453 2 15
## 1454 2 49
## 1455 2 49
## 1456 2 108
## 1457 12 130
## 1458 334 113
## 1459 8 60
## 1460 10 60
## 1461 10 48
## 1462 12 108
## 1463 52 61
## 1464 10 61
## 1465 6 137
## 1466 2 61
## 1467 2 49
## 1468 2 49
## 1469 2 50
## 1470 22 121
## 1471 2 30
## 1472 4 60
## 1473 2 49
## 1474 66 135
## 1475 162 125
## 1476 24 97
## 1477 2 251
## 1478 28 176
## 1479 4 137
## 1480 2 55
## 1481 2 300
## 1482 2 35
## 1483 2 49
## 1484 2 182
## 1485 2 132
## 1486 4 636
## 1487 2 389
## 1488 26 50
## 1489 2 262
## 1490 2 71
## 1491 256 130
## 1492 530 134
## 1493 4 140
## 1494 6 140
## 1495 2 150
## 1496 2 45
## 1497 4 160
## 1498 2 160
## 1499 2 150
## 1500 2 140
## 1501 4 140
## 1502 186 135
## 1503 50 144
## 1504 36 84
## 1505 12 109
## 1506 184 119
## 1507 34 125
## 1508 14 385
## 1509 10 120
## 1510 4 140
## 1511 14 385
## 1512 28 245
## 1513 24 58
## 1514 4 185
## 1515 44 214
## 1516 30 100
## 1517 18 220
## 1518 20 259
## 1519 2 150
## 1520 28 156
## 1521 2 206
## 1522 50 255
## 1523 32 245
## 1524 18 385
## 1525 4 270
## 1526 10 152
## 1527 4 118
## 1528 10 163
## 1529 2 323
## 1530 12 113
## 1531 10 60
## 1532 16 147
## 1533 2 235
## 1534 10 147
## 1535 32 113
## 1536 14 117
## 1537 2 250
## 1538 14 127
## 1539 4 149
## 1540 2 121
## 1541 2 155
## 1542 6 132
## 1543 4 86
## 1544 10 59
## 1545 2 300
## 1546 2 55
## 1547 2 159
## 1548 2 370
## 1549 4 195
## 1550 4 100
## 1551 2 69
## 1552 2 79
## 1553 4 368
## 1554 4 120
## 1555 34 103
## 1556 18 98
## 1557 2 407
## 1558 2 472
## 1559 2 428
## 1560 16 268
## 1561 26 145
## 1562 8 125
## 1563 8 136
## 1564 2 88
## 1565 18 52
## 1566 4 337
## 1567 4 125
## 1568 4 156
## 1569 2 156
## 1570 18 156
## 1571 6 199
## 1572 2 228
## 1573 12 228
## 1574 6 206
## 1575 8 195
## 1576 6 83
## 1577 2 160
## 1578 2 196
## 1579 6 170
## 1580 16 85
## 1581 2 380
## 1582 2 255
## 1583 2 29
## 1584 8 219
## 1585 2 266
## 1586 2 202
## 1587 2 288
## 1588 2 121
## 1589 20 545
## 1590 40 251
## 1591 2 227
## 1592 8 266
## 1593 10 270
## 1594 20 338
## 1595 2 135
## 1596 2 172
## 1597 2 122
## 1598 2 163
## 1599 2 122
## 1600 18 258
## 1601 4 0
## 1602 144 163
## 1603 22 175
## 1604 4 110
## 1605 6 120
## 1606 38 145
## 1607 10 125
## 1608 2 504
## 1609 46 155
## 1610 4 143
## 1611 2 101
## 1612 2 112
## 1613 2 135
## 1614 6 258
## 1615 104 134
## 1616 2 162
## 1617 8 165
## 1618 14 231
## 1619 12 145
## 1620 12 142
## 1621 14 192
## 1622 2 88
## 1623 2 149
## 1624 4 214
## 1625 28 556
## 1626 4 88
## 1627 2 121
## 1628 2 121
## 1629 10 105
## 1630 4 127
## 1631 6 38
## 1632 14 266
## 1633 8 78
## 1634 2 52
## 1635 4 59
## 1636 4 200
## 1637 4 49
## 1638 10 226
## 1639 4 583
## 1640 4 104
## 1641 2 70
## 1642 12 192
## 1643 4 144
## 1644 4 185
## 1645 22 145
## 1646 68 162
## 1647 12 140
## 1648 2 62
## 1649 2 91
## 1650 2 94
## 1651 2 658
## 1652 4 48
## 1653 8 142
## 1654 4 110
## 1655 4 94
## 1656 6 177
## 1657 2 90
## 1658 4 210
## 1659 6 42
## 1660 4 74
## 1661 2 220
## 1662 4 150
## 1663 14 288
## 1664 4 80
## 1665 2 49
## 1666 2 100
## 1667 2 126
## 1668 2 155
## 1669 4 155
## 1670 8 135
## 1671 2 125
## 1672 2 135
## 1673 4 155
## 1674 2 69
## 1675 2 144
## 1676 2 314
## 1677 2 126
## 1678 46 193
## 1679 20 554
## 1680 6 559
## 1681 2 140
## 1682 6 230
## 1683 14 428
## 1684 2 194
## 1685 4 145
## 1686 8 134
## 1687 2 967
## 1688 6 112
## 1689 2 267
## 1690 4 154
## 1691 2 337
## 1692 2 152
## 1693 6 58
## 1694 4 180
## 1695 6 160
## 1696 4 45
## 1697 2 223
## 1698 2 192
## 1699 2 185
## 1700 4 259
## 1701 2 456
## 1702 2 450
## 1703 2 160
## 1704 2 150
## 1705 2 126
## 1706 2 181
## 1707 2 670
## 1708 6 96
## 1709 2 88
## 1710 8 115
## 1711 2 107
## 1712 2 160
## 1713 2 300
## 1714 4 141
## 1715 10 75
## 1716 2 177
## 1717 2 200
## 1718 2 157
## 1719 2 326
## 1720 2 360
## 1721 2 189
## 1722 2 950
## 1723 2 66
## 1724 2 430
## 1725 2 162
corr_list.sin = list_after_2019.sin %>% select_(.dots = c(list_of_vars,"Price"))
chart.Correlation(corr_list.sin, histogram=TRUE, pch=19)
clean_corr.sin <- cor(corr_list.sin, use = "complete.obs")
head(round(clean_corr.sin, 2))
## reviews_since_2019 Rating Reviews Beds Capacity
## reviews_since_2019 1.00 0.12 0.81 -0.01 0.04
## Rating 0.12 1.00 0.11 -0.11 -0.04
## Reviews 0.81 0.11 1.00 0.00 0.05
## Beds -0.01 -0.11 0.00 1.00 0.72
## Capacity 0.04 -0.04 0.05 0.72 1.00
## Monthly_Reviews 0.86 0.11 0.76 -0.02 0.04
## Monthly_Reviews host_acceptance_rate host_Superhost no_of_am
## reviews_since_2019 0.86 0.13 0.17 0.03
## Rating 0.11 0.13 0.23 0.17
## Reviews 0.76 0.03 0.12 0.01
## Beds -0.02 -0.25 -0.12 -0.07
## Capacity 0.04 -0.22 -0.06 0.02
## Monthly_Reviews 1.00 0.15 0.13 -0.02
## Amenities_Wifi Amenities_Shampoo Amenities_Kitchen
## reviews_since_2019 0.02 0.14 0.02
## Rating 0.05 0.07 0.09
## Reviews 0.02 0.08 -0.03
## Beds -0.11 0.04 -0.22
## Capacity -0.02 0.11 -0.09
## Monthly_Reviews 0.03 0.15 -0.01
## Amenities_Long_Term Amenities_Washer Amenities_HairDryer
## reviews_since_2019 -0.04 -0.15 0.18
## Rating 0.00 0.02 0.14
## Reviews 0.00 -0.09 0.18
## Beds 0.00 0.04 0.01
## Capacity 0.02 0.06 0.15
## Monthly_Reviews -0.01 -0.17 0.19
## Amenities_HotWater Amenities_TV Amenities_AC hv_email
## reviews_since_2019 0.07 0.13 -0.02 0.02
## Rating 0.13 0.07 0.05 0.07
## Reviews 0.11 0.12 -0.01 0.05
## Beds -0.15 -0.06 -0.05 -0.04
## Capacity -0.13 0.14 0.05 -0.04
## Monthly_Reviews 0.01 0.14 0.01 0.03
## hv_phone hv_facebook hv_reviews hv_manual_offline
## reviews_since_2019 0.01 0.14 -0.07 0.01
## Rating 0.16 0.03 0.08 0.03
## Reviews 0.01 0.21 0.09 0.03
## Beds -0.03 -0.01 -0.05 -0.01
## Capacity 0.00 0.00 -0.06 -0.03
## Monthly_Reviews -0.01 0.13 -0.13 0.01
## hv_manual_jumio hv_manual_off_gov hv_manual_gov
## reviews_since_2019 -0.10 0.08 0.03
## Rating 0.05 -0.07 -0.08
## Reviews -0.09 0.06 0.04
## Beds -0.09 0.05 0.01
## Capacity -0.07 0.12 0.04
## Monthly_Reviews -0.11 0.07 0.02
## hv_manual_work_email no_of_vf Days_since_last_review
## reviews_since_2019 -0.02 0.00 -0.29
## Rating 0.01 -0.04 -0.13
## Reviews -0.02 0.04 -0.18
## Beds -0.01 -0.04 0.15
## Capacity -0.03 0.02 0.06
## Monthly_Reviews -0.04 -0.01 -0.36
## Shared_ind House_ind Private_ind bookings_since_2019 Price
## reviews_since_2019 -0.05 0.06 -0.04 1.00 0.01
## Rating -0.09 0.06 -0.03 0.12 0.01
## Reviews 0.00 0.01 -0.01 0.81 -0.07
## Beds 0.41 0.00 -0.16 -0.01 0.17
## Capacity 0.19 0.26 -0.34 0.04 0.39
## Monthly_Reviews -0.04 0.00 0.01 0.86 0.02
corrplot(clean_corr.sin)
# lm0 <- lm(Price ~ Capacity, data = sin_listing.clean)
# summary(lm0)
# stargazer(lm0, type = "text")
#
# ggplot(data = sin_listing.clean, aes(x = Capacity, y = Price)) + geom_point(aes(size=3)) +
# scale_colour_hue(l=50) + # Use a slightly darker palette than normal
# geom_smooth(method=lm, # Add linear regression lines
# se=TRUE, # add shaded confidence region
# fullrange=TRUE) +
# theme(axis.text.x = element_text(size=15), axis.text.y = element_text(size=15),
# axis.title=element_text(size=15,face="bold"))
# # vif(lm0)
# ```
# ```{r}
#
# # The moderating effect of type of room. Lets model that.
#
# lm1 <- lm(Price ~ Private_ind + House_ind, data = sin_listing.clean)
# summary(lm1)
# stargazer(lm1, type = "text")
# ```
# ```{r}
# #Regression with Capacity and Dummy Variables for type of room:
#
# lm2 <- lm(Price ~ Capacity + Private_ind + House_ind, data = sin_listing.clean)
# summary(lm2)
# stargazer(lm2, type = "text")
#Regression with Capacity,Dummy Variables and interaction between the two:
# lm3 <- lm(Price ~ Capacity+Private_ind + House_ind+P_Cap+H_Cap, data = sin_listing.clean)
# summary(lm3)
# stargazer(lm3,type = "text")
Comments from Kevin: - I have arbitrarily selected most of the variables, removing those which do not make sense (e.g. id, latitude) and those completely N.A. (e.g Baths) - Instead of imputing, I have removed rows with N.A. In the case of SG data, the entries goes from 1725 to 1373.
### For checking number of missing data
# md.pattern(list_after_2019.country)
clean_subset <- function(list_after_2019.country) {
### Arbitrary selection of a list of variables
selecting_columns <- list_after_2019.sin[,c("Price","Reviews","Beds","Capacity","Monthly_Reviews","Property_Type","Room_Type","Rating","Neighbourhood","host_response_time","host_acceptance_rate","host_Superhost","no_of_am","Amenities_Wifi","Amenities_Shampoo","Amenities_Kitchen","Amenities_Long_Term","Amenities_Washer","Amenities_HairDryer","Amenities_HotWater","Amenities_TV","Amenities_AC","hv_email","hv_phone","hv_facebook","hv_reviews","hv_manual_offline","hv_manual_jumio","hv_manual_off_gov","hv_manual_gov","hv_manual_work_email","no_of_vf","Days_since_last_review","Capacity_Sqr","Beds_Sqr","ln_Price","ln_Beds","ln_Capacity","ln_Rating","Shared_ind","House_ind","Private_ind","Capacity_x_Shared_ind","H_Cap","P_Cap","ln_Capacity_x_Shared_ind","ln_Capacity_x_House_ind","ln_Capacity_x_Private_ind","reviews_since_2019","bookings_since_2019" )]
### Removing rows with blanks instead of imputing
selecting_columns <- na.omit(selecting_columns)
selecting_columns$Property_Type <- as.factor(selecting_columns$Property_Type)
selecting_columns$Neighbourhood <- as.factor(selecting_columns$Neighbourhood )
selecting_columns$host_response_time <- as.factor(selecting_columns$host_response_time)
return(selecting_columns)
}
list_after_2019.sin_clean <- clean_subset(list_after_2019.sin)
Comments from Kevin: Can help to double check if the R-squared value looks too high at 0.80 for a real-world dataset?
#Define Smallest and Full Model
minmod = lm(Price~1, data = list_after_2019.sin_clean)
fullmod = lm(Price~. , data = list_after_2019.sin_clean)
# Using BIC: k=log(nobs(fullmod), Using AIC: k=2
backward_regression_model <- step(fullmod, scope = list(lower = minmod, upper = fullmod),direction = "backward", k=log(nobs(fullmod)), trace=F)
summary(backward_regression_model)
##
## Call:
## lm(formula = Price ~ Reviews + Beds + Property_Type + no_of_am +
## Amenities_Wifi + Amenities_Shampoo + Amenities_Kitchen +
## Amenities_AC + hv_email + Beds_Sqr + ln_Price + ln_Capacity +
## H_Cap + ln_Capacity_x_Shared_ind + reviews_since_2019, data = list_after_2019.sin_clean)
##
## Residuals:
## Min 1Q Median 3Q Max
## -442.12 -30.69 -7.39 20.25 1187.81
##
## Coefficients:
## Estimate Std. Error t value
## (Intercept) -336.36212 46.33642 -7.259
## Reviews 0.32310 0.07989 4.044
## Beds 10.03377 3.25428 3.083
## Property_TypeCampsite -612.44293 56.51970 -10.836
## Property_TypeEntire condominium (condo) -404.87009 36.00710 -11.244
## Property_TypeEntire guest suite -374.24601 59.57493 -6.282
## Property_TypeEntire guesthouse -422.43188 59.96987 -7.044
## Property_TypeEntire loft -425.48705 52.90468 -8.043
## Property_TypeEntire place -423.96570 53.19422 -7.970
## Property_TypeEntire rental unit -400.11977 36.06631 -11.094
## Property_TypeEntire residential home -423.06503 39.55484 -10.696
## Property_TypeEntire serviced apartment -387.02447 36.11503 -10.716
## Property_TypeEntire townhouse -446.83920 59.73765 -7.480
## Property_TypePrivate room -360.10476 47.38099 -7.600
## Property_TypePrivate room in bed and breakfast -352.92331 46.69722 -7.558
## Property_TypePrivate room in bungalow -342.10256 41.11611 -8.320
## Property_TypePrivate room in condominium (condo) -305.08717 37.32559 -8.174
## Property_TypePrivate room in guest suite -321.69620 77.28781 -4.162
## Property_TypePrivate room in hostel -324.48856 43.99763 -7.375
## Property_TypePrivate room in loft -300.41235 47.46030 -6.330
## Property_TypePrivate room in rental unit -308.86150 36.76926 -8.400
## Property_TypePrivate room in residential home -300.71631 37.29825 -8.062
## Property_TypePrivate room in serviced apartment -362.44730 39.92823 -9.077
## Property_TypePrivate room in townhouse -318.48032 38.76834 -8.215
## Property_TypePrivate room in villa -338.99329 45.00957 -7.532
## Property_TypeRoom in aparthotel -339.41093 77.04669 -4.405
## Property_TypeRoom in boutique hotel -371.19770 36.70260 -10.114
## Property_TypeRoom in hotel -363.27003 37.77123 -9.618
## Property_TypeShared room -319.76549 50.30066 -6.357
## Property_TypeShared room in bed and breakfast -346.62706 46.35951 -7.477
## Property_TypeShared room in boutique hotel -387.26634 54.79685 -7.067
## Property_TypeShared room in hostel -393.23235 47.33375 -8.308
## Property_TypeShared room in rental unit -323.00463 51.00462 -6.333
## Property_TypeShared room in residential home -309.93215 63.17733 -4.906
## Property_TypeTent -550.08492 78.02868 -7.050
## Property_TypeTiny house -406.05005 59.50874 -6.823
## no_of_am 0.85362 0.24971 3.418
## Amenities_Wifi -103.91579 19.54933 -5.316
## Amenities_Shampoo -26.75307 4.80026 -5.573
## Amenities_Kitchen -19.37942 6.41145 -3.023
## Amenities_AC -54.02441 14.52273 -3.720
## hv_email 23.25507 7.81535 2.976
## Beds_Sqr -0.46493 0.13578 -3.424
## ln_Price 218.42636 4.68609 46.612
## ln_Capacity -71.31736 10.24705 -6.960
## H_Cap 15.87035 2.24254 7.077
## ln_Capacity_x_Shared_ind 106.91527 18.13406 5.896
## reviews_since_2019 -0.62028 0.13936 -4.451
## Pr(>|t|)
## (Intercept) 6.62e-13 ***
## Reviews 5.55e-05 ***
## Beds 0.002090 **
## Property_TypeCampsite < 2e-16 ***
## Property_TypeEntire condominium (condo) < 2e-16 ***
## Property_TypeEntire guest suite 4.53e-10 ***
## Property_TypeEntire guesthouse 2.99e-12 ***
## Property_TypeEntire loft 1.94e-15 ***
## Property_TypeEntire place 3.39e-15 ***
## Property_TypeEntire rental unit < 2e-16 ***
## Property_TypeEntire residential home < 2e-16 ***
## Property_TypeEntire serviced apartment < 2e-16 ***
## Property_TypeEntire townhouse 1.35e-13 ***
## Property_TypePrivate room 5.57e-14 ***
## Property_TypePrivate room in bed and breakfast 7.62e-14 ***
## Property_TypePrivate room in bungalow < 2e-16 ***
## Property_TypePrivate room in condominium (condo) 6.92e-16 ***
## Property_TypePrivate room in guest suite 3.35e-05 ***
## Property_TypePrivate room in hostel 2.88e-13 ***
## Property_TypePrivate room in loft 3.35e-10 ***
## Property_TypePrivate room in rental unit < 2e-16 ***
## Property_TypePrivate room in residential home 1.66e-15 ***
## Property_TypePrivate room in serviced apartment < 2e-16 ***
## Property_TypePrivate room in townhouse 4.99e-16 ***
## Property_TypePrivate room in villa 9.24e-14 ***
## Property_TypeRoom in aparthotel 1.14e-05 ***
## Property_TypeRoom in boutique hotel < 2e-16 ***
## Property_TypeRoom in hotel < 2e-16 ***
## Property_TypeShared room 2.82e-10 ***
## Property_TypeShared room in bed and breakfast 1.38e-13 ***
## Property_TypeShared room in boutique hotel 2.55e-12 ***
## Property_TypeShared room in hostel 2.39e-16 ***
## Property_TypeShared room in rental unit 3.29e-10 ***
## Property_TypeShared room in residential home 1.05e-06 ***
## Property_TypeTent 2.88e-12 ***
## Property_TypeTiny house 1.35e-11 ***
## no_of_am 0.000649 ***
## Amenities_Wifi 1.25e-07 ***
## Amenities_Shampoo 3.03e-08 ***
## Amenities_Kitchen 0.002554 **
## Amenities_AC 0.000208 ***
## hv_email 0.002978 **
## Beds_Sqr 0.000635 ***
## ln_Price < 2e-16 ***
## ln_Capacity 5.34e-12 ***
## H_Cap 2.38e-12 ***
## ln_Capacity_x_Shared_ind 4.72e-09 ***
## reviews_since_2019 9.27e-06 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Residual standard error: 67.9 on 1325 degrees of freedom
## Multiple R-squared: 0.81, Adjusted R-squared: 0.8032
## F-statistic: 120.2 on 47 and 1325 DF, p-value: < 2.2e-16
# Putting forward stepwise regression in comments in case we need to use
# forward_regression = step(minmod, scope = list(lower = minmod, upper = fullmod),direction = "forward", k=log(nobs(fullmod)), trace=F)
# summary(forward_regression)
set.seed(123)
# Splitting the data into 80:20
train_idx <- sample(1:nrow(list_after_2019.sin_clean), 0.8*nrow(list_after_2019.sin_clean))
training_sin <- list_after_2019.sin_clean[train_idx,]
testing_sin <- list_after_2019.sin_clean[-train_idx,]
final_model_sin <- lm(formula = Price ~ ln_Price + Property_Type + ln_Capacity_x_Private_ind +
Capacity + Amenities_Wifi + Amenities_Shampoo + Amenities_AC +
no_of_am + Amenities_Kitchen + hv_email, data = training_sin)
summary(final_model_sin)
##
## Call:
## lm(formula = Price ~ ln_Price + Property_Type + ln_Capacity_x_Private_ind +
## Capacity + Amenities_Wifi + Amenities_Shampoo + Amenities_AC +
## no_of_am + Amenities_Kitchen + hv_email, data = training_sin)
##
## Residuals:
## Min 1Q Median 3Q Max
## -410.08 -32.78 -7.09 24.00 1196.07
##
## Coefficients:
## Estimate Std. Error t value
## (Intercept) -424.8837 51.2040 -8.298
## ln_Price 219.6829 5.0341 43.639
## Property_TypeCampsite -595.0186 60.3870 -9.853
## Property_TypeEntire condominium (condo) -372.3346 37.4185 -9.951
## Property_TypeEntire guest suite -338.4095 63.2327 -5.352
## Property_TypeEntire guesthouse -357.4847 81.3368 -4.395
## Property_TypeEntire loft -400.6474 81.1304 -4.938
## Property_TypeEntire place -382.1517 56.0709 -6.816
## Property_TypeEntire rental unit -362.0118 37.5349 -9.645
## Property_TypeEntire residential home -382.4777 41.7566 -9.160
## Property_TypeEntire serviced apartment -345.4811 37.4602 -9.223
## Property_TypeEntire townhouse -411.3871 63.1003 -6.520
## Property_TypePrivate room -258.9714 53.9745 -4.798
## Property_TypePrivate room in bed and breakfast -257.4717 55.3228 -4.654
## Property_TypePrivate room in bungalow -241.7481 45.8062 -5.278
## Property_TypePrivate room in condominium (condo) -205.8855 41.1581 -5.002
## Property_TypePrivate room in guest suite -227.2684 82.9654 -2.739
## Property_TypePrivate room in hostel -232.9576 55.0536 -4.231
## Property_TypePrivate room in loft -208.0485 51.7502 -4.020
## Property_TypePrivate room in rental unit -206.8144 40.4686 -5.110
## Property_TypePrivate room in residential home -199.0148 41.7347 -4.769
## Property_TypePrivate room in serviced apartment -264.9364 45.1590 -5.867
## Property_TypePrivate room in townhouse -218.4113 44.5380 -4.904
## Property_TypePrivate room in villa -234.0597 52.7938 -4.433
## Property_TypeRoom in aparthotel -241.6445 82.4276 -2.932
## Property_TypeRoom in boutique hotel -284.8855 41.1833 -6.918
## Property_TypeRoom in hotel -267.9793 41.7109 -6.425
## Property_TypeShared room -186.7206 49.1121 -3.802
## Property_TypeShared room in bed and breakfast -200.6376 44.9283 -4.466
## Property_TypeShared room in boutique hotel -267.6705 56.5970 -4.729
## Property_TypeShared room in hostel -246.8231 42.8733 -5.757
## Property_TypeShared room in rental unit -176.6594 53.0975 -3.327
## Property_TypeShared room in residential home -173.6442 64.7973 -2.680
## Property_TypeTent -545.9528 82.9690 -6.580
## Property_TypeTiny house -387.0692 81.1098 -4.772
## ln_Capacity_x_Private_ind -77.3574 12.2706 -6.304
## Capacity 6.2504 1.4168 4.412
## Amenities_Wifi -136.0849 22.9387 -5.933
## Amenities_Shampoo -25.2203 5.6615 -4.455
## Amenities_AC -37.5466 17.6964 -2.122
## no_of_am 0.9322 0.2995 3.112
## Amenities_Kitchen -21.4168 7.7589 -2.760
## hv_email 29.3148 9.7303 3.013
## Pr(>|t|)
## (Intercept) 3.21e-16 ***
## ln_Price < 2e-16 ***
## Property_TypeCampsite < 2e-16 ***
## Property_TypeEntire condominium (condo) < 2e-16 ***
## Property_TypeEntire guest suite 1.07e-07 ***
## Property_TypeEntire guesthouse 1.22e-05 ***
## Property_TypeEntire loft 9.16e-07 ***
## Property_TypeEntire place 1.58e-11 ***
## Property_TypeEntire rental unit < 2e-16 ***
## Property_TypeEntire residential home < 2e-16 ***
## Property_TypeEntire serviced apartment < 2e-16 ***
## Property_TypeEntire townhouse 1.09e-10 ***
## Property_TypePrivate room 1.83e-06 ***
## Property_TypePrivate room in bed and breakfast 3.67e-06 ***
## Property_TypePrivate room in bungalow 1.59e-07 ***
## Property_TypePrivate room in condominium (condo) 6.63e-07 ***
## Property_TypePrivate room in guest suite 0.006261 **
## Property_TypePrivate room in hostel 2.52e-05 ***
## Property_TypePrivate room in loft 6.23e-05 ***
## Property_TypePrivate room in rental unit 3.81e-07 ***
## Property_TypePrivate room in residential home 2.12e-06 ***
## Property_TypePrivate room in serviced apartment 5.94e-09 ***
## Property_TypePrivate room in townhouse 1.09e-06 ***
## Property_TypePrivate room in villa 1.02e-05 ***
## Property_TypeRoom in aparthotel 0.003445 **
## Property_TypeRoom in boutique hotel 7.96e-12 ***
## Property_TypeRoom in hotel 2.00e-10 ***
## Property_TypeShared room 0.000152 ***
## Property_TypeShared room in bed and breakfast 8.84e-06 ***
## Property_TypeShared room in boutique hotel 2.56e-06 ***
## Property_TypeShared room in hostel 1.12e-08 ***
## Property_TypeShared room in rental unit 0.000908 ***
## Property_TypeShared room in residential home 0.007481 **
## Property_TypeTent 7.39e-11 ***
## Property_TypeTiny house 2.08e-06 ***
## ln_Capacity_x_Private_ind 4.25e-10 ***
## Capacity 1.13e-05 ***
## Amenities_Wifi 4.04e-09 ***
## Amenities_Shampoo 9.30e-06 ***
## Amenities_AC 0.034095 *
## no_of_am 0.001908 **
## Amenities_Kitchen 0.005875 **
## hv_email 0.002651 **
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Residual standard error: 72.22 on 1055 degrees of freedom
## Multiple R-squared: 0.8031, Adjusted R-squared: 0.7952
## F-statistic: 102.4 on 42 and 1055 DF, p-value: < 2.2e-16
Comments from Kevin: Calculated the MAE value, but this number is probably more useful if its a comparison between models.
predict_sin <- predict(final_model_sin,newdata=testing_sin)
MAE_sin <- mean(abs(predict_sin - testing_sin$Price))
Comments from Kevin: There seems to be out-lying points and issue of multicollinearity - we could either try to resolve or in the interest of time, just state that this is subsequently something we could look into
cook=cooks.distance(final_model_sin)
plot(cook,type='h',lwd=3,ylab="Cook's Distance")
vif(final_model_sin)
## GVIF Df GVIF^(1/(2*Df))
## ln_Price 2.920011 1 1.708804
## Property_Type 125.889002 33 1.076014
## ln_Capacity_x_Private_ind 10.885166 1 3.299268
## Capacity 2.055544 1 1.433717
## Amenities_Wifi 1.492684 1 1.221754
## Amenities_Shampoo 1.489170 1 1.220316
## Amenities_AC 1.294541 1 1.137779
## no_of_am 1.562050 1 1.249820
## Amenities_Kitchen 1.895419 1 1.376742
## hv_email 1.110136 1 1.053630